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.

27 satır
598B

  1. task tophat2 {
  2. File gtf
  3. File genome_directory
  4. String idx_prefix
  5. File read1
  6. File read2
  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} ${read1} ${read2}
  12. }
  13. runtime {
  14. docker: docker
  15. cluster: cluster
  16. systemDisk: "cloud_ssd 40"
  17. dataDisk: "cloud_ssd 200 /cromwell_root/"
  18. }
  19. output {
  20. File accepted_hits = "${baseout}/${baseout}_accepted_hits.bam"
  21. File unmapped_bam = "${baseout}/${baseout}_unmapped.bam"
  22. }
  23. }