diff 0.4.2/modules/mlst/main.nf @ 105:52045ea4679d

"planemo upload"
author kkonganti
date Thu, 27 Jun 2024 14:17:26 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/0.4.2/modules/mlst/main.nf	Thu Jun 27 14:17:26 2024 -0400
@@ -0,0 +1,36 @@
+process MLST {
+    tag "$meta.id"
+    label 'process_low'
+
+    module (params.enable_module ? "${params.swmodulepath}${params.fs}mlst${params.fs}2.19.0" : null)
+    conda (params.enable_conda ? "bioconda::mlst=2.19.0" : null)
+    container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
+        'https://depot.galaxyproject.org/singularity/mlst:2.19.0--hdfd78af_1' :
+        'quay.io/biocontainers/mlst:2.19.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 \\
+        $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