nf-core_modules/modules/emboss/seqret/main.nf
Thomas A. Christensen II f275be88dd
Update modules/emboss/seqret/main.nf
Co-authored-by: Edmund Miller <edmund.a.miller@gmail.com>
2022-09-29 14:25:43 -05:00

37 lines
1.1 KiB
Text

process EMBOSS_SEQRET {
tag "$meta.id"
label 'process_single'
conda (params.enable_conda ? "bioconda::emboss=6.6.0" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/emboss:6.6.0--hf657eab_5':
'quay.io/biocontainers/emboss:6.6.0--h440b012_4' }"
input:
tuple val(meta), path(sequence)
val out_ext
output:
tuple val(meta), path("*.${out_ext}"), emit: outseq
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 osformat = args.contains('-osformat') ? '' : "-osformat ${out_ext}"
"""
seqret \\
${args} \\
-sequence ${sequence} \\
${osformat} \\
-outseq ${prefix}.${out_ext}
cat <<-END_VERSIONS > versions.yml
"${task.process}":
emboss: \$(echo \$(seqret -version 2>&1) | sed 's/EMBOSS://')
END_VERSIONS
"""
}