瀏覽代碼

revise-tophat

master
stead99 5 年之前
父節點
當前提交
f7835035a3
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      tasks/tophat2.wdl

+ 3
- 3
tasks/tophat2.wdl 查看文件

@@ -9,7 +9,7 @@ task tophat2 {
String cluster

command <<<
tophat -p 8 -G ${gtf} -o ${baseout} ${genome_directory}/${idx_prefix} ${read1} ${read2}
tophat -p 8 -G ${gtf} -o ${genome_directory}/${idx_prefix} ${read1} ${read2}
>>>
runtime {
@@ -20,7 +20,7 @@ task tophat2 {
}

output {
File accepted_hits = "${baseout}/${baseout}_accepted_hits.bam"
File unmapped_bam = "${baseout}/${baseout}_unmapped.bam"
File accepted_hits = "${baseout}_accepted_hits.bam"
File unmapped_bam = "${baseout}_unmapped.bam"
}
}

Loading…
取消
儲存