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

41 lines
1.1 KiB
Text

process ULTRA_PIPELINE {
tag "$meta.id"
label 'process_high'
conda (params.enable_conda ? "bioconda::ultra_bioinformatics=0.0.4.1" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ultra_bioinformatics:0.0.4.1--pyh5e36f6f_0' :
'quay.io/biocontainers/ultra_bioinformatics:0.0.4.1--pyh5e36f6f_0' }"
input:
tuple val(meta), path(reads)
path genome
path gtf
output:
tuple val(meta), path("*.sam"), emit: sam
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}"
"""
uLTRA \\
pipeline \\
--t $task.cpus \\
--prefix $prefix \\
$args \\
$genome \\
$gtf \\
$reads \\
./
cat <<-END_VERSIONS > versions.yml
"${task.process}":
ultra: \$( uLTRA --version|sed 's/uLTRA //g' )
END_VERSIONS
"""
}