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.

24 line
499B

  1. task tophat2 {
  2. File gtf
  3. File genome_directory
  4. String idx_prefix
  5. File read_1P
  6. File read_2P
  7. String baseout
  8. String docker
  9. String cluster
  10. command {
  11. tophat2 -p 24 -o ${baseout} -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. }