Browse Source

更新 'tasks/hisat2.wdl'

master
lizhihui 5 years ago
parent
commit
b397a70cae
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      tasks/hisat2.wdl

+ 3
- 1
tasks/hisat2.wdl View File



command { command {
nt=$(nproc) nt=$(nproc)
hisat2 -t -p $nt -x ${idx}/${idx_prefix} -1 ${read_1P} -2 ${read_2P} -S ${base}.sam
hisat2 -t -p $nt -x ${idx}/${idx_prefix} -1 ${read_1P} -2 ${read_2P} -S ${base}.sam --un-conc-gz ${base}_un.fq.gz
} }
runtime { runtime {


output { output {
File sam = base + ".sam" File sam = base + ".sam"
File unmapread_1p = base + "_un.fq.1.gz"
File unmapread_2p = base + "_un.fq.2.gz"
} }
} }

Loading…
Cancel
Save