Przeglądaj źródła

alter workflow parameters

tags/v0.1.0
YaqingLiu 4 lat temu
rodzic
commit
78ecea16ce
3 zmienionych plików z 12 dodań i 12 usunięć
  1. +3
    -3
      defaults
  2. +3
    -3
      inputs
  3. +6
    -6
      workflow.wdl

+ 3
- 3
defaults Wyświetl plik

"disk_size": "200", "disk_size": "200",
"cluster_config": "OnDemand bcs.a2.3xlarge img-ubuntu-vpc", "cluster_config": "OnDemand bcs.a2.3xlarge img-ubuntu-vpc",
"germline": "false", "germline": "false",
"TNseq": "true",
"TNscope": "true",
"Varscan": "true"
"tnseq": "true",
"tnscope": "true",
"varscan": "true"
} }

+ 3
- 3
inputs Wyświetl plik

"{{ project_name }}.disk_size": "{{ disk_size }}", "{{ project_name }}.disk_size": "{{ disk_size }}",
"{{ project_name }}.cluster_config": "{{ cluster_config }}", "{{ project_name }}.cluster_config": "{{ cluster_config }}",
"{{ project_name }}.germline": {{ germline }}, "{{ project_name }}.germline": {{ germline }},
"{{ project_name }}.TNseq": {{ TNseq }},
"{{ project_name }}.TNscope": {{ TNscope }},
"{{ project_name }}.Varscan": {{ Varscan }}
"{{ project_name }}.tnseq": {{ tnseq }},
"{{ project_name }}.tnscope": {{ tnscope }},
"{{ project_name }}.varscan": {{ varscan }}
} }

+ 6
- 6
workflow.wdl Wyświetl plik

String? cosmic_vcf String? cosmic_vcf


Boolean germline Boolean germline
Boolean TNseq
Boolean TNscope
Boolean Varscan
Boolean tnseq
Boolean tnscope
Boolean varscan




call mapping.mapping as tumor_mapping { call mapping.mapping as tumor_mapping {
cluster_config=cluster_config cluster_config=cluster_config
} }
if (TNseq) {
if (tnseq) {
call TNseq.TNseq as TNseq { call TNseq.TNseq as TNseq {
input: input:
SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR, SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
} }
} }


if (TNscope) {
if (tnscope) {
call TNscope.TNscope as TNscope { call TNscope.TNscope as TNscope {
input: input:
SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR, SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
} }
} }


if (Varscan) {
if (varscan) {
call somatic.somatic as somatic { call somatic.somatic as somatic {
input: input:
sample=sample_id, sample=sample_id,

Ładowanie…
Anuluj
Zapisz