Skip to content

Commit cd90dc4

Browse files
Handle records with empty EVIDENCE field in MakeCohortVcf (#233)
* and add terra pipeline diagram to terra dashboard
1 parent a1a13e3 commit cd90dc4

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

input_templates/terra_workspaces/cohort_mode/cohort_mode_workspace_dashboard.md.tmpl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ The following are the main pipeline outputs. For more information on the outputs
4747

4848
### Pipeline overview
4949

50+
<img alt="pipeline_diagram" title="Pipeline diagram" src="https://github.com/broadinstitute/gatk-sv/blob/v0.18.1-beta/terra_pipeline_diagram.jpg?raw=true" width="1000">
51+
5052
The following workflows are included in this workspace, to be executed in this order:
5153

5254
1. `01-GatherSampleEvidence`: Per-sample SV evidence collection, including calls from a configurable set of algorithms (Delly, Manta, MELT, and Wham), read depth (RD), split read positions (SR), and discordant pair positions (PE).

input_values/dockers.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"sv_base_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-base:mw-gnomad-0506-pr-087d4df",
1414
"sv_base_mini_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-base-mini:mw-gnomad-0506-pr-087d4df",
1515
"sv_pipeline_base_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-pipeline-base:mw-gnomad-0506-pr-087d4df",
16-
"sv_pipeline_docker" : "us.gcr.io/broad-dsde-methods/eph/sv-pipeline:eph_mediancov_mem_and_names-3f0c76d",
16+
"sv_pipeline_docker" : "us.gcr.io/broad-dsde-methods/eph/sv-pipeline:eph_hotfix_no_evidence-1f461ed",
1717
"sv_pipeline_qc_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-pipeline-qc:mw-gnomad-0506-pr-087d4df",
1818
"sv_pipeline_rdtest_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-pipeline-rdtest:mw-gnomad-0506-pr-087d4df",
1919
"wham_docker" : "us.gcr.io/broad-dsde-methods/wham:8645aa",

src/sv-pipeline/04_variant_resolution/scripts/overlap_breakpoint_filter.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ def __init__(self, record):
4040
self.level_of_support = 6
4141
elif 'SR' in ev:
4242
self.level_of_support = 7
43+
elif len(ev) == 0:
44+
self.level_of_support = 8
4345
else:
4446
raise ValueError("Uninterpretable evidence: {}".format(ev))
4547
if record.id in bothside_pass:

terra_pipeline_diagram.jpg

262 KB
Loading

0 commit comments

Comments
 (0)