RNA-seq pipeline with tophat2 + cufflinks + trimmomatic + fastqc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tophat2.wdl 530B

5 anni fa
5 anni fa
1234567891011121314151617181920212223
  1. task tophat2 {
  2. File gtf
  3. File genome_directory
  4. String base = sub(basename(read),"\\.\\S+$", "")
  5. String idx_prefix
  6. File read_1P
  7. File read_2P
  8. String baseout
  9. String docker
  10. command {
  11. tophat2 -p 24 -o ${base} -G ${gtf} --library-type fr-unstranded --solexa-quals ${genome_directory}/${idx_prefix} ${read_1P} ${read_2P}
  12. }
  13. runtime {
  14. dockerTag: docker
  15. }
  16. output {
  17. File accepted_hits = "${baseout}/accepted_hits.bam"
  18. File unmapped_bam = "${baseout}/unmapped.bam"
  19. }
  20. }