2020-09-10 15:09:54 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
2020-10-14 17:29:50 +00:00
|
|
|
params.options = [:]
|
|
|
|
def options = initOptions(params.options)
|
|
|
|
|
2020-09-10 15:09:54 +00:00
|
|
|
process STRINGTIE {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2020-10-14 17:29:50 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
|
|
|
|
|
|
|
// Note: 2.7X indices incompatible with AWS iGenomes.
|
|
|
|
conda (params.enable_conda ? "bioconda::stringtie=2.1.4" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/stringtie:2.1.4--h7e0af3c_0"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/stringtie:2.1.4--h7e0af3c_0"
|
|
|
|
}
|
2020-09-10 15:09:54 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam)
|
|
|
|
path gtf
|
2020-10-14 17:29:50 +00:00
|
|
|
|
2020-09-10 15:09:54 +00:00
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.coverage.gtf") , emit: coverage_gtf
|
|
|
|
tuple val(meta), path("*.transcripts.gtf"), emit: transcript_gtf
|
|
|
|
tuple val(meta), path("*.txt") , emit: abundance
|
|
|
|
tuple val(meta), path("*.ballgown") , emit: ballgown
|
|
|
|
path "*.version.txt" , emit: version
|
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
2020-10-14 17:29:50 +00:00
|
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
2020-09-10 15:09:54 +00:00
|
|
|
|
|
|
|
def strandedness = ''
|
|
|
|
if (meta.strandedness == 'forward') {
|
|
|
|
strandedness = '--fr'
|
|
|
|
} else if (meta.strandedness == 'reverse') {
|
|
|
|
strandedness = '--rf'
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
stringtie \\
|
|
|
|
$bam \\
|
|
|
|
$strandedness \\
|
|
|
|
-G $gtf \\
|
|
|
|
-o ${prefix}.transcripts.gtf \\
|
|
|
|
-A ${prefix}.gene_abundance.txt \\
|
|
|
|
-C ${prefix}.coverage.gtf \\
|
|
|
|
-b ${prefix}.ballgown \\
|
2020-10-14 17:29:50 +00:00
|
|
|
$options.args
|
2020-09-10 15:09:54 +00:00
|
|
|
|
|
|
|
stringtie --version > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|