ソースを参照

revised-cufflinks

master
stead99 5年前
コミット
7eea70cce2
2個のファイルの変更2行の追加4行の削除
  1. +1
    -2
      tasks/cufflinks.wdl
  2. +1
    -2
      workflow.wdl

+ 1
- 2
tasks/cufflinks.wdl ファイルの表示

@@ -1,6 +1,5 @@
task cufflinks {
File gtf
File bam
File accepted_hits
File genome_directory
String idx_prefix
@@ -8,7 +7,7 @@ task cufflinks {
String docker

command {
cufflinks ${gtf} -p 24 -o ${baseout} ${bam}
cufflinks ${gtf} -p 24 -o ${baseout} ${baseout}/accepted_hits.bam

runtime {
dockerTag: docker

+ 1
- 2
workflow.wdl ファイルの表示

@@ -8,7 +8,6 @@ workflow {{ project_name }} {
File read2
File adapter
String baseout

File gtf
File genome_directory
String idx_prefix
@@ -26,7 +25,7 @@ workflow {{ project_name }} {
}

call cufflinks.cufflinks as cufflinks {
input: gtf = gtf, bam = tophat2.accepted_hits, genome_directory=genome_directory, idx_prefix=idx_prefix, baseout=baseout
input: gtf = gtf, genome_directory=genome_directory, idx_prefix=idx_prefix, baseout=baseout
}
}


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