mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
24f0bdd14e
* added module seqkit replace * added when * removed extra line * Update modules/seqkit/replace/main.nf Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com> * Updated meta * updated indents Co-authored-by: Cipriano <rrn8@cdc.gov> Co-authored-by: Sateesh Peri <33637490+sateeshperi@users.noreply.github.com> Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
41 lines
1.2 KiB
Text
41 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
|
|
"""
|
|
}
|