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.
|
- task tophat2 {
- File gtf
- File genome_directory
- String idx_prefix
- File read_1P
- File read_2P
- String baseout
- String docker
-
- command {
- tophat2 -p 24 -o ${baseout} -G ${gtf} --library-type fr-unstranded --solexa-quals ${genome_directory}/${idx_prefix} ${read_1P} ${read_2P}
- }
-
- runtime {
- dockerTag: docker
- }
-
- output {
- File accepted_hits = "${baseout}/accepted_hits.bam"
- File unmapped_bam = "${baseout}/unmapped.bam"
- }
- }
|