Browse Source

revise-cufflinks

master
stead99 5 years ago
parent
commit
5b7322cd8c
3 changed files with 5 additions and 6 deletions
  1. +2
    -3
      tasks/cufflinks.wdl
  2. +2
    -2
      tasks/tophat2.wdl
  3. +1
    -1
      workflow.wdl

+ 2
- 3
tasks/cufflinks.wdl View File

task cufflinks { task cufflinks {
File gtf
File bam File bam
String baseout String baseout
String docker String docker
String cluster String cluster


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


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

+ 2
- 2
tasks/tophat2.wdl View File

String docker String docker
String cluster String cluster


command <<<
command {
tophat2 -p 6 -G ${gtf} --library-type fr-unstranded --solexa-quals -o ${baseout} ${genome_directory}/${idx_prefix} ${read1} ${read2} tophat2 -p 6 -G ${gtf} --library-type fr-unstranded --solexa-quals -o ${baseout} ${genome_directory}/${idx_prefix} ${read1} ${read2}
>>>
}
runtime { runtime {
docker: docker docker: docker

+ 1
- 1
workflow.wdl View File

} }


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



Loading…
Cancel
Save