prepare junction bed and gtf with novel transcripts for PGA input
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 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"
- }
- }
|