RNA-seq pipeline with tophat2 + cufflinks + trimmomatic + fastqc
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

27 lines
556B

  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. tophat -p 8 -G ${gtf} -o ${baseout} ${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. }