annotate 0.4.0/modules/kraken2/extract_contigs/main.nf @ 101:ce6d9548fe89

"planemo upload"
author kkonganti
date Thu, 04 Aug 2022 10:45:55 -0400
parents
children 17890124001d
rev   line source
kkonganti@101 1 process KRAKEN2_EXTRACT_CONTIGS {
kkonganti@101 2 tag "$meta.id"
kkonganti@101 3 label 'process_nano'
kkonganti@101 4
kkonganti@101 5 module (params.enable_module ? "${params.swmodulepath}${params.fs}python${params.fs}3.8.1" : null)
kkonganti@101 6 conda (params.enable_conda ? "conda-forge::python=3.9 conda-forge::pandas conda-forge::biopython" : null)
kkonganti@101 7 container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
kkonganti@101 8 'mulled-v2-d91be2208450c41a5198d8660b6d9a5b60613b3a:d9847b41af5ef58746c86d7114cd010650f3d9a2-0' :
kkonganti@101 9 'quay.io/biocontainers/mulled-v2-d91be2208450c41a5198d8660b6d9a5b60613b3a:d9847b41af5ef58746c86d7114cd010650f3d9a2-0' }"
kkonganti@101 10
kkonganti@101 11 input:
kkonganti@101 12 tuple val(meta), path(assembly), path(kraken2_output)
kkonganti@101 13 val kraken2_extract_bug
kkonganti@101 14
kkonganti@101 15 output:
kkonganti@101 16 tuple val(meta), path('*assembly_filtered_contigs.fasta'), emit: asm_filtered_contigs
kkonganti@101 17 path "versions.yml" , emit: versions
kkonganti@101 18
kkonganti@101 19 when:
kkonganti@101 20 task.ext.when == null || task.ext.when
kkonganti@101 21
kkonganti@101 22 script:
kkonganti@101 23 def args = task.ext.args ?: ''
kkonganti@101 24 def prefix = task.ext.prefix ?: "${meta.id}"
kkonganti@101 25 """
kkonganti@101 26 extract_assembled_filtered_contigs.py \\
kkonganti@101 27 -i $assembly \\
kkonganti@101 28 -o ${prefix}.assembly_filtered_contigs.fasta \\
kkonganti@101 29 -k $kraken2_output \\
kkonganti@101 30 -b '$kraken2_extract_bug'
kkonganti@101 31
kkonganti@101 32 cat <<-END_VERSIONS > versions.yml
kkonganti@101 33 "${task.process}":
kkonganti@101 34 python: \$( python --version | sed 's/Python //g' )
kkonganti@101 35 biopython: \$( python -c 'import Bio as bio; print(bio.__version__)' )
kkonganti@101 36 numpy: \$( python -c 'import numpy as np; print(np.__version__)' )
kkonganti@101 37 pandas: \$( python -c 'import pandas as pd; print(pd.__version__)' )
kkonganti@101 38 END_VERSIONS
kkonganti@101 39 """
kkonganti@101 40 }