RNA-seq pipeline with tophat2 + cufflinks + trimmomatic + fastqc
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

24 rindas
499B

  1. task tophat2 {
  2. File gtf
  3. File genome_directory
  4. String idx_prefix
  5. File read_1P
  6. File read_2P
  7. String baseout
  8. String docker
  9. String cluster
  10. command {
  11. tophat2 -p 24 -o ${baseout} -G ${gtf} --library-type fr-unstranded --solexa-quals ${genome_directory}/${idx_prefix} ${read_1P} ${read_2P}
  12. }
  13. runtime {
  14. dockerTag: docker
  15. }
  16. output {
  17. File accepted_hits = "${baseout}/accepted_hits.bam"
  18. File unmapped_bam = "${baseout}/unmapped.bam"
  19. }
  20. }