nf-core_modules/modules/iqtree/main.nf
2022-02-04 09:53:32 +01:00

39 lines
1.1 KiB
Text

process IQTREE {
tag "$alignment"
label 'process_medium'
conda (params.enable_conda ? 'bioconda::iqtree=2.1.4_beta' : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/iqtree:2.1.4_beta--hdcc8f71_0' :
'quay.io/biocontainers/iqtree:2.1.4_beta--hdcc8f71_0' }"
input:
path alignment
val constant_sites
output:
path "*.treefile", emit: phylogeny
path "versions.yml" , emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
def fconst_args = constant_sites ? "-fconst $constant_sites" : ''
def memory = task.memory.toString().replaceAll(' ', '')
"""
iqtree \\
$fconst_args \\
$args \\
-s $alignment \\
-nt AUTO \\
-ntmax $task.cpus \\
-mem $memory \\
cat <<-END_VERSIONS > versions.yml
"${task.process}":
iqtree: \$(echo \$(iqtree -version 2>&1) | sed 's/^IQ-TREE multicore version //;s/ .*//')
END_VERSIONS
"""
}