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 lines
601B

  1. task cufflinks {
  2. File gtf
  3. File bam
  4. File genome_directory
  5. String idx_prefix
  6. String baseout
  7. String docker
  8. String cluster
  9. command {
  10. cufflinks ${gtf} -p 24 -o ${baseout} ${bam}
  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 isoforms_fpkm = "${baseout}/isoforms.fpkm_tracking"
  19. File genes_fpkm = "${baseout}/genes.fpkm_tracking"
  20. File skipped_gtf = "${baseout}/skipped.gtf"
  21. File transcripts_gtf = "${baseout}/transcripts.gtf"
  22. }
  23. }