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

25 行
541B

  1. task trimmomatic {
  2. File read1
  3. File read2
  4. File adapter
  5. String baseout
  6. String docker
  7. String cluster
  8. command {
  9. trimmomatic PE -threads 20 -phred33 ${read1} ${read2} -baseout ${baseout} ILLUMINACLIP:${adapter}:2:30:10:1:true HEADCROP:10 LEADING:10 TRAILING:10 SLIDINGWINDOW:4:15 MINLEN:36
  10. }
  11. runtime {
  12. docker: docker
  13. cluster: cluster
  14. systemDisk: "cloud_ssd 40"
  15. dataDisk: "cloud_ssd 200 /cromwell_root/"
  16. }
  17. output {
  18. File read_1p = "${baseout}/${baseout}_1P.fq.gz"
  19. File read_2p = "${baseout}/${baseout}_2P.fq.gz"
  20. }
  21. }