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 {
File? referenceGFF
Int? threads
String assembledTranscriptsFile
Boolean? firstStranded
Boolean? secondStranded
command {
set -e -o pipefail
......@@ -11,6 +13,8 @@ task Stringtie {
stringtie \
${"-p " + threads} \
${"-G " + referenceGFF} \
${true="--rf" false="" firstStranded} \
${true="fr" false="" secondStranded} \
${alignedReads} \
> ${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