2021-02-12 16:22:07 +00:00
|
|
|
// Import generic module functions
|
2021-02-12 17:02:32 +00:00
|
|
|
include { initOptions; saveFiles } from './functions'
|
2021-02-12 16:22:07 +00:00
|
|
|
|
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
options = initOptions(params.options)
|
2021-02-12 16:22:07 +00:00
|
|
|
|
|
|
|
process CAT_FASTQ {
|
|
|
|
tag "$meta.id"
|
2021-03-16 17:16:47 +00:00
|
|
|
label 'process_low'
|
2021-02-12 16:22:07 +00:00
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-04-10 19:49:09 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:'merged_fastq', meta:meta, publish_by_meta:['id']) }
|
2021-02-12 16:22:07 +00:00
|
|
|
|
2021-02-16 23:58:23 +00:00
|
|
|
conda (params.enable_conda ? "conda-forge::sed=4.7" : null)
|
2021-02-12 16:22:07 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://containers.biocontainers.pro/s3/SingImgsRepo/biocontainers/v1.2.0_cv1/biocontainers_v1.2.0_cv1.img"
|
|
|
|
} else {
|
|
|
|
container "biocontainers/biocontainers:v1.2.0_cv1"
|
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(reads)
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.merged.fastq.gz"), emit: reads
|
|
|
|
|
|
|
|
script:
|
|
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
|
|
def readList = reads.collect{ it.toString() }
|
|
|
|
if (meta.single_end) {
|
|
|
|
if (readList.size > 1) {
|
|
|
|
"""
|
|
|
|
cat ${readList.sort().join(' ')} > ${prefix}.merged.fastq.gz
|
|
|
|
"""
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (readList.size > 2) {
|
|
|
|
def read1 = []
|
|
|
|
def read2 = []
|
|
|
|
readList.eachWithIndex{ v, ix -> ( ix & 1 ? read2 : read1 ) << v }
|
|
|
|
"""
|
|
|
|
cat ${read1.sort().join(' ')} > ${prefix}_1.merged.fastq.gz
|
|
|
|
cat ${read2.sort().join(' ')} > ${prefix}_2.merged.fastq.gz
|
|
|
|
"""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|