RNA-seq pipeline with tophat2 + cufflinks + trimmomatic + fastqc
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
600B

  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 6 -G ${gtf} --library-type fr-unstranded --solexa-quals -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. }