2022-02-02 08:46:07 +00:00
|
|
|
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
|
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2022-02-02 08:46:07 +00:00
|
|
|
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
|
|
|
|
"""
|
|
|
|
}
|