RNA-seq pipeline with tophat2 + cufflinks + trimmomatic + fastqc
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

tophat2.wdl 530B

hace 5 años
hace 5 años
hace 5 años
hace 5 años
hace 5 años
1234567891011121314151617181920212223
  1. task tophat2 {
  2. File gtf
  3. File genome_directory
  4. String base = sub(basename(read),"\\.\\S+$", "")
  5. String idx_prefix
  6. File read_1P
  7. File read_2P
  8. String baseout
  9. String docker
  10. command {
  11. tophat2 -p 24 -o ${base} -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. }