nf-core_modules/modules/gatk4/splitncigarreads/main.nf

45 lines
1.5 KiB
Text
Raw Normal View History

2021-02-19 13:59:29 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2021-02-19 13:59:29 +00:00
params.options = [:]
options = initOptions(params.options)
2021-02-19 13:59:29 +00:00
process GATK4_SPLITNCIGARREADS {
tag "$meta.id"
label 'process_medium'
publishDir "${params.outdir}",
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
2021-02-19 13:59:29 +00:00
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0" : null)
2021-02-19 13:59:29 +00:00
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/gatk4:4.2.0.0--0"
2021-02-19 13:59:29 +00:00
} else {
container "quay.io/biocontainers/gatk4:4.2.0.0--0"
2021-02-19 13:59:29 +00:00
}
input:
tuple val(meta), path(bam)
2021-02-22 12:31:54 +00:00
tuple path(fasta), path(fai), path(dict)
2021-02-19 13:59:29 +00:00
output:
tuple val(meta), path('*.bam'), emit: bam
path "versions.yml" , emit: version
2021-02-19 13:59:29 +00:00
script:
def software = getSoftwareName(task.process)
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
2021-02-19 13:59:29 +00:00
"""
gatk SplitNCigarReads \\
-R $fasta \\
-I $bam \\
-O ${prefix}.bam \\
2021-02-19 13:59:29 +00:00
$options.args
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
END_VERSIONS
2021-02-19 13:59:29 +00:00
"""
}