diff --git a/htseq.wdl b/htseq.wdl index bccbdd2b1a4f75d7c9b046eb46c70161bc3be523..6376e3ebeac324848bc20fe2a73f6be9fa6a13b2 100644 --- a/htseq.wdl +++ b/htseq.wdl @@ -1,7 +1,7 @@ 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} } diff --git a/stringtie.wdl b/stringtie.wdl index 2f201338d5fb7b40fb2be852682df9528fcc4b6e..a938b147acbae2525f28b36a7979fffd254df8eb 100644 --- a/stringtie.wdl +++ b/stringtie.wdl @@ -1,7 +1,7 @@ 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} \