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

add -e flag to stringtie

parent 5609afa4
No related branches found
No related tags found
1 merge request!84Allow stringtie to skip novel transcripts
......@@ -7,6 +7,7 @@ task Stringtie {
String? preCommand
IndexedBamFile bamFile
File? referenceGtf
Boolean skipNovelTranscripts = false
Int threads = 1
String assembledTranscriptsFile
Boolean? firstStranded
......@@ -21,6 +22,7 @@ task Stringtie {
stringtie \
~{"-p " + threads} \
~{"-G " + referenceGtf} \
~{true="-e" false="" skipNovelTranscripts} \
~{true="--rf" false="" firstStranded} \
~{true="--fr" false="" secondStranded} \
-o ~{assembledTranscriptsFile} \
......
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