nf-core_modules/modules/samtools/view/main.nf

42 lines
1.6 KiB
Text
Raw Normal View History

2021-01-29 16:18:45 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2021-01-29 16:18:45 +00:00
params.options = [:]
options = initOptions(params.options)
2021-01-29 16:18:45 +00:00
process SAMTOOLS_VIEW {
tag "$meta.id"
label 'process_medium'
2021-01-29 16:18:45 +00:00
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-01-29 16:18:45 +00:00
conda (params.enable_conda ? 'bioconda::samtools=1.13' : null)
2021-01-29 16:18:45 +00:00
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/samtools:1.13--h8c37831_0"
2021-01-29 16:18:45 +00:00
} else {
container "quay.io/biocontainers/samtools:1.13--h8c37831_0"
2021-01-29 16:18:45 +00:00
}
input:
tuple val(meta), path(input)
path fasta
2021-01-29 16:18:45 +00:00
output:
tuple val(meta), path("*.bam") , optional: true, emit: bam
tuple val(meta), path("*.cram"), optional: true, emit: cram
path "versions.yml" , emit: versions
2021-01-29 16:18:45 +00:00
script:
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
def reference = fasta ? "--reference ${fasta} -C" : ""
def file_type = input.getExtension()
2021-01-29 16:18:45 +00:00
"""
samtools view ${reference} $options.args $input > ${prefix}.${file_type}
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
END_VERSIONS
2021-01-29 16:18:45 +00:00
"""
2021-01-29 17:01:58 +00:00
}