瀏覽代碼

revise-cufflinks

master
stead99 5 年之前
父節點
當前提交
fdde101138
共有 2 個文件被更改,包括 2 次插入4 次删除
  1. +1
    -3
      tasks/cufflinks.wdl
  2. +1
    -1
      workflow.wdl

+ 1
- 3
tasks/cufflinks.wdl 查看文件

@@ -1,14 +1,12 @@
task cufflinks {
File gtf
File bam
File genome_directory
String idx_prefix
String baseout
String docker
String cluster

command {
cufflinks ${gtf} -p 24 -o ${baseout} ${bam}
cufflinks -p 8 -o ${baseout} ${bam}

runtime {
docker: docker

+ 1
- 1
workflow.wdl 查看文件

@@ -25,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, bam = tophat2.accepted_hits, baseout=baseout
}
}


Loading…
取消
儲存