mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
|
process SEQKIT_REPLACE {
|
||
|
tag "$meta.id"
|
||
|
label 'process_low'
|
||
|
|
||
|
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(fastx)
|
||
|
|
||
|
output:
|
||
|
tuple val(meta), path("*.fast*"), emit: fastx
|
||
|
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 extension = "fastq"
|
||
|
if ("$fastx" ==~ /.+\.fasta|.+\.fasta.gz|.+\.fa|.+\.fa.gz|.+\.fas|.+\.fas.gz|.+\.fna|.+\.fna.gz/) {
|
||
|
extension = "fasta"
|
||
|
}
|
||
|
def endswith = task.ext.suffix ?: "${extension}.gz"
|
||
|
"""
|
||
|
seqkit \\
|
||
|
replace \\
|
||
|
${args} \\
|
||
|
--threads ${task.cpus} \\
|
||
|
-i ${fastx} \\
|
||
|
-o ${prefix}.${endswith}
|
||
|
|
||
|
cat <<-END_VERSIONS > versions.yml
|
||
|
"${task.process}":
|
||
|
seqkit: \$( seqkit | sed '3!d; s/Version: //' )
|
||
|
END_VERSIONS
|
||
|
"""
|
||
|
}
|