mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
38 lines
1.2 KiB
Text
38 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
|
||
|
|
||
|
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
|
||
|
"""
|
||
|
}
|