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

add strandedness to stringtie

parent 09bf175d
No related branches found
No related tags found
1 merge request!4Add quantification tools
...@@ -4,6 +4,8 @@ task Stringtie { ...@@ -4,6 +4,8 @@ task Stringtie {
File? referenceGFF File? referenceGFF
Int? threads Int? threads
String assembledTranscriptsFile String assembledTranscriptsFile
Boolean? firstStranded
Boolean? secondStranded
command { command {
set -e -o pipefail set -e -o pipefail
...@@ -11,6 +13,8 @@ task Stringtie { ...@@ -11,6 +13,8 @@ task Stringtie {
stringtie \ stringtie \
${"-p " + threads} \ ${"-p " + threads} \
${"-G " + referenceGFF} \ ${"-G " + referenceGFF} \
${true="--rf" false="" firstStranded} \
${true="fr" false="" secondStranded} \
${alignedReads} \ ${alignedReads} \
> ${assembledTranscriptsFile} > ${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