ソースを参照

revise-tophat

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

+ 3
- 4
tasks/tophat2.wdl ファイルの表示

@@ -4,13 +4,12 @@ task tophat2 {
String idx_prefix
File read1
File read2
String base = basename(read1, ".fq.gz")
String baseout
String docker
String cluster

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

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

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