Skip to content
Snippets Groups Projects
Commit 366f8ef1 authored by Cats's avatar Cats
Browse files

add abundance file option to stringtie

parent e5a86409
No related branches found
No related tags found
1 merge request!4Add quantification tools
...@@ -6,6 +6,7 @@ task Stringtie { ...@@ -6,6 +6,7 @@ task Stringtie {
String assembledTranscriptsFile String assembledTranscriptsFile
Boolean? firstStranded Boolean? firstStranded
Boolean? secondStranded Boolean? secondStranded
String? geneAbundanceFile
command { command {
set -e -o pipefail set -e -o pipefail
...@@ -15,12 +16,15 @@ task Stringtie { ...@@ -15,12 +16,15 @@ task Stringtie {
${"-G " + referenceGFF} \ ${"-G " + referenceGFF} \
${true="--rf" false="" firstStranded} \ ${true="--rf" false="" firstStranded} \
${true="fr" false="" secondStranded} \ ${true="fr" false="" secondStranded} \
-o ${assembledTranscriptsFile} \
${"-A " + geneAbundanceFile} \
${alignedReads} \ ${alignedReads} \
> ${assembledTranscriptsFile}
} }
output { output {
File assembledTranscripts = assembledTranscriptsFile File assembledTranscripts = assembledTranscriptsFile
File geneAbundance = geneAbundanceFile
} }
runtime { runtime {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment