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.
|
- task tophat2 {
- File gtf
- File genome_directory
- String idx_prefix
- File read1
- File read2
- String baseout
- String docker
- String cluster
-
- command {
- tophat2 -p 6 -G ${gtf} --library-type fr-unstranded --solexa-quals -o ${baseout} ${genome_directory}/${idx_prefix} ${read1} ${read2}
- }
-
- runtime {
- docker: docker
- cluster: cluster
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd 200 /cromwell_root/"
- }
-
- output {
- File accepted_hits = "${baseout}/accepted_hits.bam"
- File unmapped_bam = "${baseout}/unmapped.bam"
- }
- }
|