2021-05-03 13:18:51 +08:00
|
|
|
process STRINGTIE_MERGE {
|
|
|
|
label 'process_medium'
|
|
|
|
|
|
|
|
// Note: 2.7X indices incompatible with AWS iGenomes.
|
2022-04-22 15:13:06 +01:00
|
|
|
conda (params.enable_conda ? "bioconda::stringtie=2.2.1" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-04-22 15:13:06 +01:00
|
|
|
'https://depot.galaxyproject.org/singularity/stringtie:2.2.1--hecb563c_2' :
|
|
|
|
'quay.io/biocontainers/stringtie:2.2.1--hecb563c_2' }"
|
2021-05-03 13:18:51 +08:00
|
|
|
|
|
|
|
input:
|
2021-07-01 16:13:01 +01:00
|
|
|
path stringtie_gtf
|
|
|
|
path annotation_gtf
|
2021-05-03 13:18:51 +08:00
|
|
|
|
|
|
|
output:
|
2021-07-01 16:13:01 +01:00
|
|
|
path "stringtie.merged.gtf", emit: gtf
|
2021-10-01 14:04:56 +01:00
|
|
|
path "versions.yml" , emit: versions
|
2021-05-03 13:18:51 +08:00
|
|
|
|
2022-02-04 09:53:32 +01:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-05-03 13:18:51 +08:00
|
|
|
script:
|
2022-09-26 15:26:53 +02:00
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
def reference = annotation_gtf ? "-G $annotation_gtf" : ""
|
2021-05-03 13:18:51 +08:00
|
|
|
"""
|
|
|
|
stringtie \\
|
|
|
|
--merge $stringtie_gtf \\
|
2022-09-26 15:26:53 +02:00
|
|
|
$reference \\
|
|
|
|
-o stringtie.merged.gtf \\
|
|
|
|
$args
|
2021-07-21 15:38:40 +02:00
|
|
|
|
2021-09-27 10:41:24 +02:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
stringtie: \$(stringtie --version 2>&1)
|
2021-09-27 10:41:24 +02:00
|
|
|
END_VERSIONS
|
2021-05-03 13:18:51 +08:00
|
|
|
"""
|
2022-08-09 10:11:37 +02:00
|
|
|
|
|
|
|
stub:
|
|
|
|
"""
|
|
|
|
touch stringtie.merged.gtf
|
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
stringtie: \$(stringtie --version 2>&1)
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
2021-05-03 13:18:51 +08:00
|
|
|
}
|