RNA-seq pipeline with tophat2 + cufflinks + trimmomatic + fastqc
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- task trimmomatic {
- File read1
- File read2
- File adapter
- String baseout
- String baseout_gz = baseout + ".fq.gz"
- String docker
-
- command {
- trimmomatic PE -threads 20 -phred33 ${read1} ${read2} -baseout ${baseout_gz} ILLUMINACLIP:${adapter}:2:30:10:1:true HEADCROP:10 LEADING:10 TRAILING:10 SLIDINGWINDOW:4:15 MINLEN:36
- }
-
- runtime {
- dockerTag: docker
- }
-
- output {
- File read_1p = baseout + "_1P.fq.gz"
- File read_2p = baseout + "_2P.fq.gz"
- }
- }
|