Mercurial > repos > galaxytrakr > hfp_bettercallsal_konda
diff 1.0.0/modules/mlst/main.nf @ 0:0a8dda29956e draft default tip
planemo upload
| author | galaxytrakr |
|---|---|
| date | Thu, 28 May 2026 20:41:10 +0000 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/1.0.0/modules/mlst/main.nf Thu May 28 20:41:10 2026 +0000 @@ -0,0 +1,37 @@ +process MLST { + tag "$meta.id" + label 'process_micro' + + module (params.enable_module ? "${params.swmodulepath}${params.fs}mlst${params.fs}2.23.0" : null) + conda (params.enable_conda ? "conda-forge::perl bioconda::mlst=2.23.0" : null) + container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? + 'https://depot.galaxyproject.org/singularity/mlst:2.23.0--hdfd78af_1' : + 'quay.io/biocontainers/mlst:2.23.0--hdfd78af_1' }" + + input: + tuple val(meta), path(fasta) + + output: + tuple val(meta), path("*.tsv"), emit: tsv + path "versions.yml" , emit: versions + + when: + (task.ext.when == null || task.ext.when) && fasta.size() > 0 + + script: + def args = task.ext.args ?: '' + def prefix = task.ext.prefix ?: "${meta.id}" + """ + mlst \\ + --threads $task.cpus \\ + --label $prefix \\ + $args \\ + $fasta > ${prefix}.tsv + + cat <<-END_VERSIONS > versions.yml + "${task.process}": + mlst: \$( echo \$(mlst --version 2>&1) | sed 's/mlst //' ) + END_VERSIONS + """ + +} \ No newline at end of file
