ソースを参照

更新 'tasks/hisat2.wdl'

master
lizhihui 5年前
コミット
b397a70cae
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      tasks/hisat2.wdl

+ 3
- 1
tasks/hisat2.wdl ファイルの表示

@@ -9,7 +9,7 @@ task hisat2 {

command {
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 {
@@ -21,5 +21,7 @@ task hisat2 {

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

読み込み中…
キャンセル
保存