mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-11 03:23:08 +00:00
45 lines
1.6 KiB
Text
45 lines
1.6 KiB
Text
|
process SAMTOOLS_FASTQ {
|
||
|
tag "$meta.id"
|
||
|
label 'process_low'
|
||
|
|
||
|
conda "bioconda::samtools=1.16.1"
|
||
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||
|
'https://depot.galaxyproject.org/singularity/samtools:1.16.1--h6899075_1' :
|
||
|
'quay.io/biocontainers/samtools:1.16.1--h6899075_1' }"
|
||
|
|
||
|
input:
|
||
|
tuple val(meta), path(input)
|
||
|
val(interleave)
|
||
|
|
||
|
output:
|
||
|
tuple val(meta), path("*_{1,2}.fastq.gz") , optional:true, emit: fastq
|
||
|
tuple val(meta), path("*_interleaved.fastq.gz"), optional:true, emit: interleaved
|
||
|
tuple val(meta), path("*_singleton.fastq.gz") , optional:true, emit: singleton
|
||
|
tuple val(meta), path("*_other.fastq.gz") , optional:true, emit: other
|
||
|
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}"
|
||
|
def output = ( interleave && ! meta.single_end ) ? "> ${prefix}_interleaved.fastq.gz" :
|
||
|
meta.single_end ? "-1 ${prefix}_1.fastq.gz -s ${prefix}_singleton.fastq.gz" :
|
||
|
"-1 ${prefix}_1.fastq.gz -2 ${prefix}_2.fastq.gz -s ${prefix}_singleton.fastq.gz"
|
||
|
"""
|
||
|
samtools \\
|
||
|
fastq \\
|
||
|
$args \\
|
||
|
--threads ${task.cpus-1} \\
|
||
|
-0 ${prefix}_other.fastq.gz \\
|
||
|
$input \\
|
||
|
$output
|
||
|
|
||
|
cat <<-END_VERSIONS > versions.yml
|
||
|
"${task.process}":
|
||
|
samtools: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
|
||
|
END_VERSIONS
|
||
|
"""
|
||
|
}
|