// Import generic module functions include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions' params.options = [:] options = initOptions(params.options) process ULTRA_PIPELINE { tag "$meta.id" label 'process_high' publishDir "${params.outdir}", mode: params.publish_dir_mode, saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) } conda (params.enable_conda ? "bioconda::ultra_bioinformatics=0.0.4.1" : null) if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) { container "https://depot.galaxyproject.org/singularity/ultra_bioinformatics:0.0.4.1--pyh5e36f6f_0" } else { container "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 script: def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}" """ uLTRA \\ pipeline \\ --t $task.cpus \\ --prefix $prefix \\ $options.args \\ $genome \\ $gtf \\ $reads \\ ./ cat <<-END_VERSIONS > versions.yml ${getProcessName(task.process)}: ${getSoftwareName(task.process)}: \$( uLTRA --version|sed 's/uLTRA //g' ) END_VERSIONS """ }