浏览代码

revise-tophat2

master
stead99 5 年前
父节点
当前提交
929d36253e
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. +4
    -3
      tasks/tophat2.wdl

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

String idx_prefix String idx_prefix
File read1 File read1
File read2 File read2
String base = basename(read1, ".fq.gz")
String baseout String baseout
String docker String docker
String cluster String cluster


command { command {
tophat2 -p 8 -G ${gtf} -o baseout ${genome_directory}/${idx_prefix} ${read1} ${read2}
tophat2 -p 8 -G ${gtf} -o {base} ${genome_directory}/${idx_prefix} ${read1} ${read2}
} }
runtime { runtime {
} }


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

正在加载...
取消
保存