mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
4c59984d7b
* add seqkit pair module * local tests * local tests * fix workflow name * fix workflow name * fix version indentation * fix version indentation * fix version indentation * fix review comments * fix review comments * fix github usernames * minor fix * add meta unpaired output Co-authored-by: Peri <rrx8@cdc.gov>
40 lines
1.2 KiB
Text
40 lines
1.2 KiB
Text
process SEQKIT_PAIR {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
|
|
conda (params.enable_conda ? "bioconda::seqkit=2.1.0" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/seqkit:2.1.0--h9ee0642_0':
|
|
'quay.io/biocontainers/seqkit:2.1.0--h9ee0642_0' }"
|
|
|
|
input:
|
|
tuple val(meta), path(reads)
|
|
|
|
output:
|
|
tuple val(meta), path("*.paired.fastq.gz") , emit: reads
|
|
tuple val(meta), path("*.unpaired.fastq.gz"), optional: true, emit: unpaired_reads
|
|
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}"
|
|
"""
|
|
seqkit \\
|
|
pair \\
|
|
-1 ${reads[0]} \\
|
|
-2 ${reads[1]} \\
|
|
$args \\
|
|
--threads $task.cpus
|
|
|
|
# gzip fastq
|
|
find . -maxdepth 1 -name "*.fastq" -exec gzip {} \;
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
seqkit: \$( seqkit | sed '3!d; s/Version: //' )
|
|
END_VERSIONS
|
|
"""
|
|
}
|