annotate 0.2.1/modules/kraken2/extract_contigs/main.nf @ 75:eeddd4dfd7f5

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