2021-03-23 11:13:07 +00:00
|
|
|
// Import generic module functions
|
2021-09-27 08:41:24 +00:00
|
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
2021-03-23 11:13:07 +00:00
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
options = initOptions(params.options)
|
|
|
|
|
|
|
|
process SAMTOOLS_FASTQ {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_low'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-04-09 16:23:56 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
2021-03-23 11:13:07 +00:00
|
|
|
|
2021-07-28 08:10:44 +00:00
|
|
|
conda (params.enable_conda ? 'bioconda::samtools=1.13' : null)
|
2021-03-23 11:13:07 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
2021-07-28 08:10:44 +00:00
|
|
|
container "https://depot.galaxyproject.org/singularity/samtools:1.13--h8c37831_0"
|
2021-03-23 11:13:07 +00:00
|
|
|
} else {
|
2021-07-28 08:10:44 +00:00
|
|
|
container "quay.io/biocontainers/samtools:1.13--h8c37831_0"
|
2021-03-23 11:13:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam)
|
|
|
|
|
|
|
|
output:
|
2021-03-23 17:43:52 +00:00
|
|
|
tuple val(meta), path("*.fastq.gz"), emit: fastq
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-03-23 11:13:07 +00:00
|
|
|
|
|
|
|
script:
|
2021-03-23 17:43:52 +00:00
|
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
|
|
def endedness = meta.single_end ? "-0 ${prefix}.fastq.gz" : "-1 ${prefix}_1.fastq.gz -2 ${prefix}_2.fastq.gz"
|
|
|
|
|
2021-03-23 11:13:07 +00:00
|
|
|
"""
|
2021-03-23 17:43:52 +00:00
|
|
|
samtools fastq \\
|
2021-03-23 11:13:07 +00:00
|
|
|
$options.args \\
|
|
|
|
-@ $task.cpus \\
|
2021-03-23 17:43:52 +00:00
|
|
|
$endedness \\
|
|
|
|
$bam
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
${getProcessName(task.process)}:
|
2021-09-27 21:10:37 +00:00
|
|
|
${getSoftwareName(task.process)}: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-03-23 11:13:07 +00:00
|
|
|
"""
|
|
|
|
}
|