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.

25 lines
692B

  1. task cuffdiff2 {
  2. File gtf
  3. File genome_directory
  4. String idx_prefix
  5. String baseout
  6. String docker
  7. command {
  8. cuffdiff ${gtf} -p 24 -o ${baseout} --no-diff -u -L ${base},${base}_rep -b ${genome_directory}/${idx_prefix}.fa ${bam} ${bam}
  9. }
  10. runtime {
  11. dockerTag: docker
  12. }
  13. output {
  14. File isoforms_count = "${baseout}/isoforms.count_tracking"
  15. File genes_count = "${baseout}/genes.count_tracking"
  16. File cds_count = "${baseout}/cds.count_tracking"
  17. File isoforms_fpkm = "${baseout}/isoforms.fpkm_tracking"
  18. File genes_fpkm = "${baseout}/genes.fpkm_tracking"
  19. File cds_fpkm = "${baseout}/cds.fpkm_tracking"
  20. }
  21. }