mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
38 lines
1.1 KiB
Text
38 lines
1.1 KiB
Text
process METABAT2_JGISUMMARIZEBAMCONTIGDEPTHS {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
|
|
conda (params.enable_conda ? "bioconda::metabat2=2.15" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/metabat2:2.15--h986a166_1' :
|
|
'quay.io/biocontainers/metabat2:2.15--h986a166_1' }"
|
|
|
|
input:
|
|
tuple val(meta), path(bam), path(bai)
|
|
|
|
output:
|
|
tuple val(meta), path("*.txt.gz"), emit: depth
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
"""
|
|
export OMP_NUM_THREADS=$task.cpus
|
|
|
|
jgi_summarize_bam_contig_depths \\
|
|
--outputDepth ${prefix}.txt \\
|
|
$args \\
|
|
$bam
|
|
|
|
bgzip --threads $task.cpus ${prefix}.txt
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
metabat2: \$( metabat2 --help 2>&1 | head -n 2 | tail -n 1| sed 's/.*\\:\\([0-9]*\\.[0-9]*\\).*/\\1/' )
|
|
END_VERSIONS
|
|
"""
|
|
}
|