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 {
String assembledTranscriptsFile
Boolean? firstStranded
Boolean? secondStranded
String? geneAbundanceFile
command {
set -e -o pipefail
......@@ -15,12 +16,15 @@ task Stringtie {
${"-G " + referenceGFF} \
${true="--rf" false="" firstStranded} \
${true="fr" false="" secondStranded} \
-o ${assembledTranscriptsFile} \
${"-A " + geneAbundanceFile} \
${alignedReads} \
> ${assembledTranscriptsFile}
}
output {
File assembledTranscripts = assembledTranscriptsFile
File geneAbundance = geneAbundanceFile
}
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