Browse Source

输出目录修正

master
huangyechao 6 years ago
parent
commit
788a82b3e6
3 changed files with 6 additions and 8 deletions
  1. +0
    -1
      inputs
  2. +1
    -2
      tasks/qualimap.wdl
  3. +5
    -5
      workflow.wdl

+ 0
- 1
inputs View File

{ {
"{{ project_name }}.qualimap.out_dir": "String (optional, default = \"./\")",
"{{ project_name }}.cluster_config": "OnDemand ecs.sn1ne.4xlarge img-ubuntu-vpc", "{{ project_name }}.cluster_config": "OnDemand ecs.sn1ne.4xlarge img-ubuntu-vpc",
"{{ project_name }}.bam": "{{ bam }}", "{{ project_name }}.bam": "{{ bam }}",
"{{ project_name }}.bed": "{{ bed }}", "{{ project_name }}.bed": "{{ bed }}",

+ 1
- 2
tasks/qualimap.wdl View File

File bam File bam
File bed File bed
String docker String docker
String out_dir = "./"
String cluster_config String cluster_config
String disk_size String disk_size


set -o pipefail set -o pipefail
set -e set -e
nt=$(nproc) nt=$(nproc)
/opt/qualimap/qualimap bamqc -bam ${bam} -gff ${bed} -nt $nt -outdir ${out_dir} --java-mem-size=16G
/opt/qualimap/qualimap bamqc -bam ${bam} -gff ${bed} -nt $nt -outdir ./ --java-mem-size=16G
>>> >>>


runtime { runtime {

+ 5
- 5
workflow.wdl View File



call qualimap.qualimap as qualimap { call qualimap.qualimap as qualimap {
input: input:
bam=bam,
bed=bed,
docker=docker,
disk_size=disk_size,
cluster_config=cluster_config
bam=bam,
bed=bed,
docker=docker,
disk_size=disk_size,
cluster_config=cluster_config
} }
} }

Loading…
Cancel
Save