RNA-seq pipeline with tophat2 + cufflinks + trimmomatic + fastqc
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

cuffdiff2.wdl 711B

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