prepare junction bed and gtf with novel transcripts for PGA input
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 hisat2 {
- File idx
- File read1
- File read2
- String idx_prefix
- String sample_id
- String docker
- String cluster
-
- command {
- nt=$(nproc)
-
- hisat2 -t -p $nt -x ${idx}/${idx_prefix} -1 ${read1} -2 ${read2} -S ${sample_id}.sam --novel-splicesite-outfile ${sample_id}.splicesite.tab --dta
-
- }
-
- runtime {
- docker: docker
- cluster: cluster
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd 200 /cromwell_root/"
- }
-
- output {
- File sam = "${sample_id}.sam"
- File splicesite = "${sample_id}.splicesite.tab"
- }
- }
|