Skip to content
Snippets Groups Projects
Commit ebc94bdb authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

stringtie to 1.0

parent 8bb2dc43
No related branches found
No related tags found
1 merge request!34Move all files to version 1.0
version 1.0
task Stringtie {
String? preCommand
File alignedReads
File? referenceGtf
Int? threads
String assembledTranscriptsFile
Boolean? firstStranded
Boolean? secondStranded
String? geneAbundanceFile
input {
String? preCommand
File alignedReads
File? referenceGtf
Int? threads
String assembledTranscriptsFile
Boolean? firstStranded
Boolean? secondStranded
String? geneAbundanceFile
}
command {
set -e -o pipefail
mkdir -p $(dirname ${assembledTranscriptsFile})
${preCommand}
mkdir -p $(dirname ~{assembledTranscriptsFile})
~{preCommand}
stringtie \
${"-p " + threads} \
${"-G " + referenceGtf} \
${true="--rf" false="" firstStranded} \
${true="fr" false="" secondStranded} \
-o ${assembledTranscriptsFile} \
${"-A " + geneAbundanceFile} \
${alignedReads} \
~{"-p " + threads} \
~{"-G " + referenceGtf} \
~{true="--rf" false="" firstStranded} \
~{true="fr" false="" secondStranded} \
-o ~{assembledTranscriptsFile} \
~{"-A " + geneAbundanceFile} \
~{alignedReads} \
}
......
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