nf-core_modules/software/samtools/idxstats/main.nf

33 lines
1.1 KiB
Text
Raw Normal View History

2020-08-05 16:17:47 +00:00
// Import generic module functions
2020-10-14 17:29:50 +00:00
include { saveFiles; getSoftwareName } from './functions'
params.options = [:]
2020-08-05 16:17:47 +00:00
process SAMTOOLS_IDXSTATS {
tag "$meta.id"
publishDir "${params.outdir}",
mode: params.publish_dir_mode,
2020-10-14 17:29:50 +00:00
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
2020-08-05 16:17:47 +00:00
conda (params.enable_conda ? "bioconda::samtools=1.10" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/samtools:1.10--h9402c20_2"
} else {
container "quay.io/biocontainers/samtools:1.10--h9402c20_2"
}
2020-08-05 16:17:47 +00:00
input:
tuple val(meta), path(bam), path(bai)
2020-10-14 17:29:50 +00:00
2020-08-05 16:17:47 +00:00
output:
tuple val(meta), path("*.idxstats"), emit: idxstats
2020-09-10 15:45:11 +00:00
path "*.version.txt" , emit: version
2020-08-05 16:17:47 +00:00
script:
def software = getSoftwareName(task.process)
"""
samtools idxstats $bam > ${bam}.idxstats
echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//' > ${software}.version.txt
"""
}