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

rename gff to gtf

parent fec7883a
No related branches found
No related tags found
1 merge request!8Run time settings and additional adjustments
task HTSeqCount {
String? preCommand
Array[File] alignmentFiles
File gffFile
File gtfFile
String outputTable
String? format
String? order
......@@ -17,7 +17,7 @@ task HTSeqCount {
-r ${default="pos" order} \
-s ${default="no" stranded} \
${sep=" " alignmentFiles} \
${gffFile} \
${gtfFile} \
> ${outputTable}
}
......
task Stringtie {
String? preCommand
File alignedReads
File? referenceGFF
File? referenceGtf
Int? threads
String assembledTranscriptsFile
Boolean? firstStranded
......@@ -13,7 +13,7 @@ task Stringtie {
${preCommand}
stringtie \
${"-p " + threads} \
${"-G " + referenceGFF} \
${"-G " + referenceGtf} \
${true="--rf" false="" firstStranded} \
${true="fr" false="" secondStranded} \
-o ${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