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 { task Stringtie {
String? preCommand input {
File alignedReads String? preCommand
File? referenceGtf File alignedReads
Int? threads File? referenceGtf
String assembledTranscriptsFile Int? threads
Boolean? firstStranded String assembledTranscriptsFile
Boolean? secondStranded Boolean? firstStranded
String? geneAbundanceFile Boolean? secondStranded
String? geneAbundanceFile
}
command { command {
set -e -o pipefail set -e -o pipefail
mkdir -p $(dirname ${assembledTranscriptsFile}) mkdir -p $(dirname ~{assembledTranscriptsFile})
${preCommand} ~{preCommand}
stringtie \ stringtie \
${"-p " + threads} \ ~{"-p " + threads} \
${"-G " + referenceGtf} \ ~{"-G " + referenceGtf} \
${true="--rf" false="" firstStranded} \ ~{true="--rf" false="" firstStranded} \
${true="fr" false="" secondStranded} \ ~{true="fr" false="" secondStranded} \
-o ${assembledTranscriptsFile} \ -o ~{assembledTranscriptsFile} \
${"-A " + geneAbundanceFile} \ ~{"-A " + geneAbundanceFile} \
${alignedReads} \ ~{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