"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" | |||||
} | } |
"{{ 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 }} | |||||
} | } |
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, |