mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
// Import generic module functions
|
|
include { saveFiles; getSoftwareName } from './functions'
|
|
|
|
params.options = [:]
|
|
|
|
process SAMTOOLS_FLAGSTAT {
|
|
tag "$meta.id"
|
|
publishDir "${params.outdir}",
|
|
mode: params.publish_dir_mode,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
|
|
|
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"
|
|
}
|
|
|
|
input:
|
|
tuple val(meta), path(bam), path(bai)
|
|
|
|
output:
|
|
tuple val(meta), path("*.flagstat"), emit: flagstat
|
|
path "*.version.txt" , emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
"""
|
|
samtools flagstat $bam > ${bam}.flagstat
|
|
echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//' > ${software}.version.txt
|
|
"""
|
|
}
|