nf-core_modules/modules/transdecoder/predict/main.nf
2022-02-04 09:53:32 +01:00

40 lines
1.2 KiB
Text

process TRANSDECODER_PREDICT {
tag "$meta.id"
label 'process_medium'
conda (params.enable_conda ? "bioconda::transdecoder=5.5.0" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/transdecoder:5.5.0--pl5262hdfd78af_4':
'quay.io/comp-bio-aging/transdecoder' }"
input:
tuple val(meta), path(fasta)
path(fold)
output:
tuple val(meta), path("*.transdecoder.pep") , emit: pep
tuple val(meta), path("*.transdecoder.gff3") , emit: gff3
tuple val(meta), path("*.transdecoder.cds") , emit: cds
tuple val(meta), path("*.transdecoder.bed") , emit: bed
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}"
"""
TransDecoder.Predict \\
$args \\
-O ${prefix} \\
-t \\
$fasta
cat <<-END_VERSIONS > versions.yml
"${task.process}":
transdecoder: \$(echo \$(TransDecoder.Predict --version) | sed -e "s/TransDecoder.Predict //g")
END_VERSIONS
"""
}