Skip to content

Commit

Permalink
Handle records with empty EVIDENCE field in MakeCohortVcf (#233)
Browse files Browse the repository at this point in the history
* and add terra pipeline diagram to terra dashboard
  • Loading branch information
epiercehoffman authored Sep 17, 2021
1 parent a1a13e3 commit cd90dc4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ The following are the main pipeline outputs. For more information on the outputs

### Pipeline overview

<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">

The following workflows are included in this workspace, to be executed in this order:

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).
Expand Down
2 changes: 1 addition & 1 deletion input_values/dockers.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"sv_base_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-base:mw-gnomad-0506-pr-087d4df",
"sv_base_mini_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-base-mini:mw-gnomad-0506-pr-087d4df",
"sv_pipeline_base_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-pipeline-base:mw-gnomad-0506-pr-087d4df",
"sv_pipeline_docker" : "us.gcr.io/broad-dsde-methods/eph/sv-pipeline:eph_mediancov_mem_and_names-3f0c76d",
"sv_pipeline_docker" : "us.gcr.io/broad-dsde-methods/eph/sv-pipeline:eph_hotfix_no_evidence-1f461ed",
"sv_pipeline_qc_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-pipeline-qc:mw-gnomad-0506-pr-087d4df",
"sv_pipeline_rdtest_docker" : "us.gcr.io/broad-dsde-methods/markw/sv-pipeline-rdtest:mw-gnomad-0506-pr-087d4df",
"wham_docker" : "us.gcr.io/broad-dsde-methods/wham:8645aa",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ def __init__(self, record):
self.level_of_support = 6
elif 'SR' in ev:
self.level_of_support = 7
elif len(ev) == 0:
self.level_of_support = 8
else:
raise ValueError("Uninterpretable evidence: {}".format(ev))
if record.id in bothside_pass:
Expand Down
Binary file added terra_pipeline_diagram.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cd90dc4

Please sign in to comment.