mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
82 lines
2.5 KiB
Text
82 lines
2.5 KiB
Text
process ADAPTERREMOVAL {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
|
|
conda (params.enable_conda ? "bioconda::adapterremoval=2.3.2" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/adapterremoval:2.3.2--hb7ba0dd_0' :
|
|
'quay.io/biocontainers/adapterremoval:2.3.2--hb7ba0dd_0' }"
|
|
|
|
input:
|
|
tuple val(meta), path(reads)
|
|
|
|
output:
|
|
tuple val(meta), path('*.fastq.gz'), emit: reads
|
|
tuple val(meta), path('*.log') , emit: log
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
|
|
if (meta.single_end) {
|
|
"""
|
|
AdapterRemoval \\
|
|
--file1 $reads \\
|
|
$args \\
|
|
--basename $prefix \\
|
|
--threads $task.cpus \\
|
|
--settings ${prefix}.log \\
|
|
--output1 ${prefix}.trimmed.fastq.gz \\
|
|
--seed 42 \\
|
|
--gzip \\
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
adapterremoval: \$(AdapterRemoval --version 2>&1 | sed -e "s/AdapterRemoval ver. //g")
|
|
END_VERSIONS
|
|
"""
|
|
} else if (!meta.single_end && !meta.collapse) {
|
|
"""
|
|
AdapterRemoval \\
|
|
--file1 ${reads[0]} \\
|
|
--file2 ${reads[1]} \\
|
|
$args \\
|
|
--basename $prefix \\
|
|
--threads $task.cpus \\
|
|
--settings ${prefix}.log \\
|
|
--output1 ${prefix}.pair1.trimmed.fastq.gz \\
|
|
--output2 ${prefix}.pair2.trimmed.fastq.gz \\
|
|
--seed 42 \\
|
|
--gzip \\
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
adapterremoval: \$(AdapterRemoval --version 2>&1 | sed -e "s/AdapterRemoval ver. //g")
|
|
END_VERSIONS
|
|
"""
|
|
} else {
|
|
"""
|
|
AdapterRemoval \\
|
|
--file1 ${reads[0]} \\
|
|
--file2 ${reads[1]} \\
|
|
--collapse \\
|
|
$args \\
|
|
--basename $prefix \\
|
|
--threads $task.cpus \\
|
|
--settings ${prefix}.log \\
|
|
--seed 42 \\
|
|
--gzip \\
|
|
|
|
cat *.collapsed.gz *.collapsed.truncated.gz > ${prefix}.merged.fastq.gz
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
adapterremoval: \$(AdapterRemoval --version 2>&1 | sed -e "s/AdapterRemoval ver. //g")
|
|
END_VERSIONS
|
|
"""
|
|
}
|
|
|
|
}
|