瀏覽代碼

revise-cufflinks

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

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

@@ -1,16 +1,15 @@
task cufflinks {
File gtf
File bam
String baseout
String docker
String cluster

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

runtime {
docker: docker
docker: docker
cluster: cluster
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd 200 /cromwell_root/"

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

@@ -8,9 +8,9 @@ task tophat2 {
String docker
String cluster

command <<<
command {
tophat2 -p 6 -G ${gtf} --library-type fr-unstranded --solexa-quals -o ${baseout} ${genome_directory}/${idx_prefix} ${read1} ${read2}
>>>
}
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, baseout=baseout
input: baseout=baseout, bam=tophat2.accepted_hits
}
}


Loading…
取消
儲存