mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 22:23:09 +00:00
a0443e2c54
* Update main.nf * Update meta.yml * Re-add logos as not staged in a way that works with MultiQC config files * Update main.nf * Remove now unnecessary input channel * Remove unused channel from tests * Update hAMRonization to 1.1.1 and add hAMRonization farGene * Fix hamronizatio ntests * Prettier * Fix fargene linting * Correct file * Fix fargene output * Apply suggestions from code review Co-authored-by: Jasmin F <73216762+jasmezz@users.noreply.github.com> * Fix summarise tests * Prettier * Fix incorrect quotes in tags Co-authored-by: Jasmin F <73216762+jasmezz@users.noreply.github.com>
41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
process SEQTK_SUBSEQ {
|
|
tag "$sequences"
|
|
label 'process_single'
|
|
|
|
conda (params.enable_conda ? "bioconda::seqtk=1.3" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/seqtk:1.3--h5bf99c6_3' :
|
|
'quay.io/biocontainers/seqtk:1.3--h5bf99c6_3' }"
|
|
|
|
input:
|
|
path sequences
|
|
path filter_list
|
|
|
|
output:
|
|
path "*.gz" , emit: sequences
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
def prefix = task.ext.prefix ?: ''
|
|
def ext = "fa"
|
|
if ("$sequences" ==~ /.+\.fq|.+\.fq.gz|.+\.fastq|.+\.fastq.gz/) {
|
|
ext = "fq"
|
|
}
|
|
"""
|
|
seqtk \\
|
|
subseq \\
|
|
$args \\
|
|
$sequences \\
|
|
$filter_list | \\
|
|
gzip --no-name > ${sequences}${prefix}.${ext}.gz
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
seqtk: \$(echo \$(seqtk 2>&1) | sed 's/^.*Version: //; s/ .*\$//')
|
|
END_VERSIONS
|
|
"""
|
|
}
|