Skip to content

Sentieon

GENI also provisions the Sentieon license server. It is enabled per environment through the Sentieon plugin, and is AWS-only.

Set SENTIEON_LICENSE to the license server’s hostname and port:

Terminal window
export SENTIEON_LICENSE=licsrvr.sentieon.prod.domain.com.br:8990

In a Nextflow process:

process SENTIEON_BWA {
container "${params.sentieon_image}"
script:
"""
export SENTIEON_LICENSE=${params.sentieon_license}
sentieon bwa mem -R '@RG\\tID:${sample}\\tSM:${sample}' \\
${reference} ${reads} | sentieon util sort -o ${sample}.bam -
"""
}

The image needs nothing but the Sentieon program at the version you want.