scout-browser 4.81__py3-none-any.whl → 4.82.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scout/__version__.py +1 -1
- scout/adapter/mongo/disease_terms.py +5 -2
- scout/adapter/mongo/query.py +23 -11
- scout/build/managed_variant.py +12 -1
- scout/build/variant/genotype.py +2 -0
- scout/build/variant/variant.py +5 -0
- scout/constants/clinvar.py +1 -1
- scout/constants/query_terms.py +3 -1
- scout/models/variant/variant.py +1 -0
- scout/parse/variant/frequency.py +56 -54
- scout/parse/variant/genotype.py +89 -15
- scout/parse/variant/transcript.py +17 -9
- scout/parse/variant/variant.py +12 -0
- scout/server/app.py +6 -3
- scout/server/blueprints/alignviewers/templates/alignviewers/utils.html +1 -1
- scout/server/blueprints/cases/controllers.py +2 -57
- scout/server/blueprints/cases/templates/cases/case_bionano.html +3 -24
- scout/server/blueprints/cases/templates/cases/case_report.html +87 -69
- scout/server/blueprints/cases/templates/cases/case_sma.html +2 -13
- scout/server/blueprints/cases/templates/cases/chanjo2_form.html +47 -0
- scout/server/blueprints/cases/templates/cases/collapsible_actionbar.html +4 -4
- scout/server/blueprints/cases/templates/cases/gene_panel.html +4 -11
- scout/server/blueprints/cases/templates/cases/individuals_table.html +2 -12
- scout/server/blueprints/cases/templates/cases/utils.html +20 -1
- scout/server/blueprints/cases/views.py +0 -22
- scout/server/blueprints/clinvar/controllers.py +3 -3
- scout/server/blueprints/clinvar/templates/clinvar/clinvar_submissions.html +29 -2
- scout/server/blueprints/clinvar/templates/clinvar/multistep_add_variant.html +36 -18
- scout/server/blueprints/clinvar/views.py +13 -1
- scout/server/blueprints/diagnoses/controllers.py +2 -0
- scout/server/blueprints/institutes/controllers.py +76 -38
- scout/server/blueprints/institutes/templates/overview/cases.html +54 -42
- scout/server/blueprints/managed_variants/templates/managed_variants/managed_variants.html +1 -1
- scout/server/blueprints/managed_variants/views.py +2 -4
- scout/server/blueprints/panels/templates/panels/panel.html +8 -7
- scout/server/blueprints/panels/views.py +2 -11
- scout/server/blueprints/phenotypes/templates/phenotypes/hpo_terms.html +3 -2
- scout/server/blueprints/variant/controllers.py +3 -2
- scout/server/blueprints/variant/templates/variant/components.html +1 -1
- scout/server/blueprints/variant/templates/variant/utils.html +3 -1
- scout/server/blueprints/variant/templates/variant/variant.html +20 -15
- scout/server/blueprints/variant/templates/variant/variant_details.html +78 -26
- scout/server/blueprints/variant/utils.py +9 -13
- scout/server/blueprints/variants/controllers.py +30 -3
- scout/server/blueprints/variants/forms.py +15 -1
- scout/server/blueprints/variants/templates/variants/components.html +55 -0
- scout/server/blueprints/variants/templates/variants/fusion-variants.html +3 -50
- scout/server/blueprints/variants/templates/variants/str-variants.html +8 -5
- scout/server/blueprints/variants/templates/variants/utils.html +57 -31
- scout/server/blueprints/variants/templates/variants/variants.html +1 -1
- scout/server/blueprints/variants/utils.py +7 -10
- scout/server/extensions/clinvar_extension.py +10 -2
- {scout_browser-4.81.dist-info → scout_browser-4.82.2.dist-info}/METADATA +6 -5
- {scout_browser-4.81.dist-info → scout_browser-4.82.2.dist-info}/RECORD +58 -57
- {scout_browser-4.81.dist-info → scout_browser-4.82.2.dist-info}/LICENSE +0 -0
- {scout_browser-4.81.dist-info → scout_browser-4.82.2.dist-info}/WHEEL +0 -0
- {scout_browser-4.81.dist-info → scout_browser-4.82.2.dist-info}/entry_points.txt +0 -0
- {scout_browser-4.81.dist-info → scout_browser-4.82.2.dist-info}/top_level.txt +0 -0
@@ -55,6 +55,27 @@
|
|
55
55
|
{% endfor %}
|
56
56
|
{% endmacro %}
|
57
57
|
|
58
|
+
{% macro archived_observations_filter(form) %}
|
59
|
+
{% if config.SHOW_OBSERVED_VARIANT_ARCHIVE and config.SHOW_OBSERVED_VARIANT_ARCHIVE is true %}
|
60
|
+
{{ form.local_obs_old.label(class="control-label") }}
|
61
|
+
{{ form.local_obs_old(class="form-control") }}
|
62
|
+
{% endif %}
|
63
|
+
{% endmacro %}
|
64
|
+
|
65
|
+
{% macro archived_observations_cancer_filters(form) %}
|
66
|
+
{% if config.SHOW_OBSERVED_VARIANT_ARCHIVE and config.SHOW_OBSERVED_VARIANT_ARCHIVE is true %}
|
67
|
+
<div class="col">
|
68
|
+
{{ wtf.form_field(form.local_obs_old) }}
|
69
|
+
</div>
|
70
|
+
<div class="col">
|
71
|
+
{{ wtf.form_field(form.local_obs_cancer_somatic_old) }}
|
72
|
+
</div>
|
73
|
+
<div class="col">
|
74
|
+
{{ wtf.form_field(form.local_obs_cancer_germline_old) }}
|
75
|
+
</div>
|
76
|
+
{% endif %}
|
77
|
+
{% endmacro %}
|
78
|
+
|
58
79
|
{% macro filter_form_footer(form, result_size, total_variants, more_variants, page, nvars, institute) %}
|
59
80
|
<div class="card-footer text-center">
|
60
81
|
<div class="row">
|
@@ -110,12 +131,17 @@
|
|
110
131
|
{% endmacro %}
|
111
132
|
|
112
133
|
|
113
|
-
{% macro compounds_table(institute, case, compounds) %}
|
134
|
+
{% macro compounds_table(institute, case, compounds, is_popover) %}
|
135
|
+
{% set is_popover = is_popover|default(false) %}
|
114
136
|
<table class='table table-condensed table-bordered table-sm'>
|
115
137
|
<thead class='thead table-light'>
|
116
138
|
<tr>
|
117
139
|
<th>Variant</th>
|
118
|
-
<th>Combined score
|
140
|
+
<th>Combined score
|
141
|
+
{% if not is_popover %}
|
142
|
+
<span data-bs-toggle='tooltip' data-bs-title='Combined score is the sum of variants´s score and compound variant´s score'>?</span>
|
143
|
+
</th>
|
144
|
+
{% endif %}
|
119
145
|
<th>Rank score</th>
|
120
146
|
<th>Gene annotation</th>
|
121
147
|
<th>Func. annotation</th>
|
@@ -131,6 +157,8 @@
|
|
131
157
|
<td>
|
132
158
|
{% if compound.not_loaded %}
|
133
159
|
{{ compound.display_name }} <small>(not loaded)</small>
|
160
|
+
{% elif is_popover %}
|
161
|
+
{{ compound.display_name }}
|
134
162
|
{% else %}
|
135
163
|
<a href='{{ url_for("variant.variant",
|
136
164
|
institute_id=institute._id,
|
@@ -194,7 +222,8 @@
|
|
194
222
|
{% macro variants_common_filters(form, type) %}
|
195
223
|
<div class="row mb-2">
|
196
224
|
<div class="col-2">
|
197
|
-
{{ form.gene_panels.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="This list can be modified from the institute settings page. Latest panel version is used in variants filtering.") }}
|
225
|
+
<span>{{ form.gene_panels.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="This list can be modified from the institute settings page. Latest panel version is used in variants filtering.") }}</span>
|
226
|
+
<span style="float:right;">{{ form.gene_panels_exclude.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="Check this box to exclude from the search any gene listed in selected 'Gene Panels', 'Symbol file' or provided in the 'HGNC Symbols/Ids' field.") }} {{form.gene_panels_exclude}}</span>
|
198
227
|
{{ form.gene_panels(class="selectpicker", data_style="btn-secondary") }}
|
199
228
|
</div>
|
200
229
|
<div class="col-2">
|
@@ -281,8 +310,7 @@
|
|
281
310
|
{{ form.gnomad_frequency(class="form-control") }}
|
282
311
|
</div>
|
283
312
|
<div class="col-4">
|
284
|
-
{{ form
|
285
|
-
{{ form.local_obs(class="form-control") }}
|
313
|
+
{{ archived_observations_filter(form) }}
|
286
314
|
</div>
|
287
315
|
<div class="col-4">
|
288
316
|
{{ form.chrom.label(class="control-label") }}
|
@@ -382,8 +410,7 @@
|
|
382
410
|
{{ form.swegen_freq(class="form-control") }}
|
383
411
|
</div>
|
384
412
|
<div class="col-4">
|
385
|
-
{{ form
|
386
|
-
{{ form.local_obs(class="form-control") }}
|
413
|
+
{{ archived_observations_filter(form) }}
|
387
414
|
</div>
|
388
415
|
<div class="col-4">
|
389
416
|
{{ form.chrom.label(class="control-label") }}
|
@@ -459,7 +486,8 @@
|
|
459
486
|
<input type="hidden" name="variant_type" value="{{ form.variant_type.data }}">
|
460
487
|
<div class="row">
|
461
488
|
<div class="col-2">
|
462
|
-
{{ form.gene_panels.label(class="control-label",
|
489
|
+
<span>{{ form.gene_panels.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="This list can be modified from the institute settings page. Latest panel version is used in variants filtering.") }}</span>
|
490
|
+
<span style="float:right;">{{ form.gene_panels_exclude.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="Check this box to exclude from the search any gene listed in selected 'Gene Panels', 'Symbol file' or provided in the 'HGNC Symbols/Ids' field.") }} {{form.gene_panels_exclude}}</span>
|
463
491
|
{{ form.gene_panels(class="selectpicker", data_style="btn-secondary") }}
|
464
492
|
</div>
|
465
493
|
<div class="col-3">
|
@@ -560,8 +588,7 @@
|
|
560
588
|
<div class="col-6">
|
561
589
|
<div class="row">
|
562
590
|
<div class="col-3">
|
563
|
-
{{ form
|
564
|
-
{{ form.local_obs(class="form-control") }}
|
591
|
+
{{ archived_observations_filter(form) }}
|
565
592
|
</div>
|
566
593
|
<div class="col-3">
|
567
594
|
{{ form.clingen_ngi.label(class="control-label") }}
|
@@ -632,7 +659,8 @@
|
|
632
659
|
{{ form.variant_type() }}
|
633
660
|
<div class="row">
|
634
661
|
<div class="col-2">
|
635
|
-
{{ form.gene_panels.label(
|
662
|
+
<span>{{ form.gene_panels.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="This list can be modified from the institute settings page. Latest panel version is used in variants filtering.") }}</span>
|
663
|
+
<span style="float:right;">{{ form.gene_panels_exclude.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="Check this box to exclude from the search any gene listed in selected 'Gene Panels', 'Symbol file' or provided in the 'HGNC Symbols/Ids' field.") }} {{form.gene_panels_exclude}}</span>
|
636
664
|
{{ form.gene_panels(class="selectpicker", data_style="btn-secondary") }}
|
637
665
|
</div>
|
638
666
|
<div class="col-2">
|
@@ -698,27 +726,25 @@
|
|
698
726
|
</div>
|
699
727
|
<div class="form" id="chromosome_search">
|
700
728
|
<div class="row" style="margin-top:20px;">
|
701
|
-
<div class="col
|
729
|
+
<div class="col">
|
702
730
|
{{ form.gnomad_frequency.label(class="control-label") }}
|
703
731
|
{{ form.gnomad_frequency(class="form-control") }}
|
704
732
|
</div>
|
705
|
-
|
706
|
-
|
707
|
-
</div>
|
708
|
-
<div class="col-2">
|
733
|
+
{{ archived_observations_cancer_filters(form) }}
|
734
|
+
<div class="col">
|
709
735
|
{{ form.chrom.label(class="control-label") }}
|
710
736
|
{{ form.chrom(class="selectpicker", data_actions_box="true", data_style="btn-secondary") }}
|
711
737
|
</div>
|
712
|
-
<div class="col
|
738
|
+
<div class="col">
|
713
739
|
{{ wtf.form_field(form.start) }}
|
714
740
|
</div>
|
715
|
-
<div class="col
|
741
|
+
<div class="col">
|
716
742
|
{{ wtf.form_field(form.end) }}
|
717
743
|
</div>
|
718
|
-
<div class="col
|
744
|
+
<div class="col">
|
719
745
|
{{ wtf.form_field(form.cytoband_start) }}
|
720
746
|
</div>
|
721
|
-
<div class="col
|
747
|
+
<div class="col">
|
722
748
|
{{ wtf.form_field(form.cytoband_end) }}
|
723
749
|
</div>
|
724
750
|
</div>
|
@@ -767,7 +793,8 @@
|
|
767
793
|
{{ form.variant_type() }}
|
768
794
|
<div class="row mb-3">
|
769
795
|
<div class="col-2">
|
770
|
-
{{ form.gene_panels.label(class="control-label",
|
796
|
+
<span>{{ form.gene_panels.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="This list can be modified from the institute settings page. Latest panel version is used in variants filtering.") }}</span>
|
797
|
+
<span style="float:right;">{{ form.gene_panels_exclude.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="Check this box to exclude from the search any gene listed in selected 'Gene Panels', 'Symbol file' or provided in the 'HGNC Symbols/Ids' field.") }} {{form.gene_panels_exclude}}</span>
|
771
798
|
{{ form.gene_panels(class="selectpicker", data_style="btn-secondary") }}
|
772
799
|
</div>
|
773
800
|
<div class="col-2">
|
@@ -823,27 +850,25 @@
|
|
823
850
|
</div>
|
824
851
|
<div id="chromosome_search">
|
825
852
|
<div class="row" style="margin-top:20px;">
|
826
|
-
<div class="col
|
853
|
+
<div class="col">
|
827
854
|
{{ form.gnomad_frequency.label(class="control-label") }}
|
828
855
|
{{ form.gnomad_frequency(class="form-control") }}
|
829
856
|
</div>
|
830
|
-
|
831
|
-
|
832
|
-
</div>
|
833
|
-
<div class="col-2">
|
857
|
+
{{ archived_observations_cancer_filters(form) }}
|
858
|
+
<div class="col">
|
834
859
|
{{ form.chrom.label(class="control-label") }}
|
835
860
|
{{ form.chrom(class="selectpicker", data_actions_box="true", data_style="btn-secondary") }}
|
836
861
|
</div>
|
837
|
-
<div class="col
|
862
|
+
<div class="col">
|
838
863
|
{{ wtf.form_field(form.start) }}
|
839
864
|
</div>
|
840
|
-
<div class="col
|
865
|
+
<div class="col">
|
841
866
|
{{ wtf.form_field(form.end) }}
|
842
867
|
</div>
|
843
|
-
<div class="col
|
868
|
+
<div class="col">
|
844
869
|
{{ wtf.form_field(form.cytoband_start) }}
|
845
870
|
</div>
|
846
|
-
<div class="col
|
871
|
+
<div class="col">
|
847
872
|
{{ wtf.form_field(form.cytoband_end) }}
|
848
873
|
</div>
|
849
874
|
</div>
|
@@ -892,7 +917,8 @@
|
|
892
917
|
<input type="hidden" name="variant_type" value="{{ form.variant_type.data }}">
|
893
918
|
<div class="row">
|
894
919
|
<div class="col-2">
|
895
|
-
{{ form.gene_panels.label(class="control-label",
|
920
|
+
<span>{{ form.gene_panels.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="This list can be modified from the institute settings page. Latest panel version is used in variants filtering.") }}</span>
|
921
|
+
<span style="float:right;">{{ form.gene_panels_exclude.label(class="control-label", data_bs_toggle="tooltip", data_bs_placement="left", title="Check this box to exclude from the search any gene listed in selected 'Gene Panels', 'Symbol file' or provided in the 'HGNC Symbols/Ids' field.") }} {{form.gene_panels_exclude}}</span>
|
896
922
|
{{ form.gene_panels(class="selectpicker", data_style="btn-secondary") }}
|
897
923
|
</div>
|
898
924
|
<div class="col-3">
|
@@ -164,7 +164,7 @@
|
|
164
164
|
{% if ns.show_compounds %}
|
165
165
|
<a href="#" class="badge bg-primary text-white" data-bs-toggle="popover" data-bs-placement="left"
|
166
166
|
data-bs-html="true" data-bs-trigger="hover click"
|
167
|
-
data-bs-content="{{ compounds_table(institute, case, variant.compounds[:20]) }}">Compounds</a>
|
167
|
+
data-bs-content="{{ compounds_table(institute, case, variant.compounds[:20], is_popover=true) }}">Compounds</a>
|
168
168
|
{% endif %}
|
169
169
|
{% endif %}
|
170
170
|
|
@@ -1,23 +1,20 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
|
+
from scout.adapter import MongoAdapter
|
2
3
|
|
3
4
|
|
4
|
-
def update_case_panels(store, case_obj):
|
5
|
+
def update_case_panels(store: MongoAdapter, case_obj: dict):
|
5
6
|
"""Refresh case gene panels with info on if a panel was removed.
|
7
|
+
Also sets the key "latest_panels" for a case where the value is the latest version of the case panels
|
6
8
|
|
7
|
-
Also return these more populated panels for optional storage on the variant_obj.
|
8
9
|
If you do not use the returned variants, but rely on the update, please remember
|
9
10
|
to call this function before updating the variants.
|
10
|
-
|
11
|
-
store(adapter.MongoAdapter)
|
12
|
-
case_obj(dict)
|
13
|
-
|
14
|
-
Returns:
|
15
|
-
list(panel_info)
|
16
11
|
"""
|
12
|
+
case_obj["latest_panels"] = []
|
17
13
|
|
18
14
|
for panel_info in case_obj.get("panels", []):
|
19
15
|
panel_name = panel_info["panel_name"]
|
20
16
|
latest_panel = store.gene_panel(panel_name)
|
21
17
|
panel_info["removed"] = False if latest_panel is None else latest_panel.get("hidden", False)
|
22
|
-
|
23
|
-
|
18
|
+
if latest_panel:
|
19
|
+
latest_panel["hgnc_ids"] = [gene["hgnc_id"] for gene in latest_panel.get("genes", [])]
|
20
|
+
case_obj["latest_panels"].append(latest_panel)
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import json
|
2
2
|
import logging
|
3
|
-
from tempfile import NamedTemporaryFile
|
4
3
|
|
5
4
|
import requests
|
5
|
+
from flask import flash
|
6
6
|
|
7
7
|
from scout.constants.clinvar import CLINVAR_API_URL, PRECLINVAR_URL
|
8
8
|
|
@@ -19,7 +19,7 @@ class ClinVarApi:
|
|
19
19
|
self.convert_service = "/".join([PRECLINVAR_URL, "csv_2_json"])
|
20
20
|
self.submit_service = CLINVAR_API_URL
|
21
21
|
|
22
|
-
def set_header(self, api_key):
|
22
|
+
def set_header(self, api_key) -> dict:
|
23
23
|
"""Creates a header to be submitted a in a POST rquest to the CLinVar API
|
24
24
|
Args:
|
25
25
|
api_key(str): API key to be used to submit to ClinVar (64 alphanumeric characters)
|
@@ -76,3 +76,11 @@ class ClinVarApi:
|
|
76
76
|
|
77
77
|
except Exception as ex:
|
78
78
|
return None, ex
|
79
|
+
|
80
|
+
def show_submission_status(self, submission_id: str, api_key=None):
|
81
|
+
"""Retrieve the status of a ClinVar submission using the https://submit.ncbi.nlm.nih.gov/api/v1/submissions/SUBnnnnnn/actions/ endpoint."""
|
82
|
+
|
83
|
+
header: dict = self.set_header(api_key)
|
84
|
+
actions_url = f"{CLINVAR_API_URL}{submission_id}/actions/"
|
85
|
+
actions_resp: requests.models.Response = requests.get(actions_url, headers=header)
|
86
|
+
flash(f"Response from ClinVar: {actions_resp.json()}", "primary")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: scout-browser
|
3
|
-
Version: 4.
|
3
|
+
Version: 4.82.2
|
4
4
|
Summary: Clinical DNA variant visualizer and browser.
|
5
5
|
Home-page: https://github.com/Clinical-Genomics/scout
|
6
6
|
Author: Måns Magnusson
|
@@ -16,12 +16,12 @@ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
16
16
|
Classifier: Topic :: Software Development :: Libraries
|
17
17
|
Classifier: Programming Language :: Python :: 3.6
|
18
18
|
Description-Content-Type: text/markdown
|
19
|
-
Requires-Dist: werkzeug <
|
19
|
+
Requires-Dist: werkzeug <3
|
20
20
|
Requires-Dist: Flask >=2.0
|
21
21
|
Requires-Dist: Flask-Bootstrap
|
22
22
|
Requires-Dist: Flask-CORS
|
23
23
|
Requires-Dist: path.py
|
24
|
-
Requires-Dist:
|
24
|
+
Requires-Dist: markdown
|
25
25
|
Requires-Dist: WTForms
|
26
26
|
Requires-Dist: Flask-WTF
|
27
27
|
Requires-Dist: Flask-Mail
|
@@ -171,9 +171,9 @@ scout load panel scout/demo/panel_1.txt
|
|
171
171
|
scout load case scout/demo/643594.config.yaml
|
172
172
|
```
|
173
173
|
|
174
|
-
## Integration with chanjo for coverage report visualization
|
174
|
+
## Integration with chanjo and chanjo2 for coverage report visualization
|
175
175
|
|
176
|
-
Scout may be configured to visualize coverage reports produced by [Chanjo][chanjo]. Instructions on
|
176
|
+
Scout may be configured to visualize coverage reports produced by [Chanjo][chanjo] or [chanjo2][chanjo2]. Instructions on
|
177
177
|
how to enable this feature can be found in the document [chanjo_coverage_integration][chanjo-scout].
|
178
178
|
|
179
179
|
## Integration with loqusdb for integrating local variant frequencies
|
@@ -311,6 +311,7 @@ be found in [CONTRIBUTING](CONTRIBUTING.md).
|
|
311
311
|
|
312
312
|
|
313
313
|
[chanjo]: https://github.com/Clinical-Genomics/chanjo
|
314
|
+
[chanjo2]: https://github.com/Clinical-Genomics/chanjo2
|
314
315
|
[chanjo-scout]: docs/admin-guide/chanjo_coverage_integration.md
|
315
316
|
[loqusdb]: https://github.com/moonso/loqusdb
|
316
317
|
[loqusdb-scout]: docs/admin-guide/loqusdb_integration.md
|
@@ -1,5 +1,5 @@
|
|
1
1
|
scout/__init__.py,sha256=Z4liXvmEcLkC67ElsWvYHfemPKdWgWI5O6MB6XlDM8M,232
|
2
|
-
scout/__version__.py,sha256
|
2
|
+
scout/__version__.py,sha256=-tAuS8cIDLp6AGxFKcTo19IOq_e24ShlFdKfJzggGj0,23
|
3
3
|
scout/adapter/__init__.py,sha256=-iX_hx2NI1EMAqX0pMd5_90Nnd9uvIMxv9EbefYBzsc,86
|
4
4
|
scout/adapter/client.py,sha256=0VR5LRPEqZg_bAxQte1RGMxV8BSiQordbPs57PaZTlI,1512
|
5
5
|
scout/adapter/mongo/__init__.py,sha256=NdHYCUXWUAuX5cUS3-6HCws2hW9uoGep8i0SC-oJd3k,31
|
@@ -10,7 +10,7 @@ scout/adapter/mongo/case_events.py,sha256=jSejlOxU_qx7pphvkfQuVTpz7Zjwx4H41nFhdP
|
|
10
10
|
scout/adapter/mongo/case_group.py,sha256=tG8DuO0rNYepV4k0yCGPqssODErc0HMsAypg3mfhcV0,1575
|
11
11
|
scout/adapter/mongo/clinvar.py,sha256=tczC39O3DFDkYgjt2RDgkkG-x1Mvx_99Hw7dAbIQ5gk,19838
|
12
12
|
scout/adapter/mongo/cytoband.py,sha256=pOWMvOn7lLATk_ShuzRWnGa3xRyILGRJRxh4VONCw7k,2082
|
13
|
-
scout/adapter/mongo/disease_terms.py,sha256=
|
13
|
+
scout/adapter/mongo/disease_terms.py,sha256=4qcQRLuP5xn_RkB2RlNtwCrONmDuWwdlngZrj87BUEo,5637
|
14
14
|
scout/adapter/mongo/event.py,sha256=NnURFhS5odOXk7So_gGMHmALPAJM0PWzESI4FC06azE,19842
|
15
15
|
scout/adapter/mongo/filter.py,sha256=GoPqMDqteE1pDiVfpUP8xxT_1A8s7S4ByITCJGdesok,7570
|
16
16
|
scout/adapter/mongo/hgnc.py,sha256=sQZtHEe8q42HVJ9F7uIwE2oY5dJUS_TWAQ6WUqLCxC0,15980
|
@@ -21,7 +21,7 @@ scout/adapter/mongo/managed_variant.py,sha256=YFdnIhNVIawVhmlOxHOpe6sJyso0FCGdlX
|
|
21
21
|
scout/adapter/mongo/matchmaker.py,sha256=amTvFOlUbrt1RmecY_8hPY6bO3j79lc2UbmzlCQcRuk,6378
|
22
22
|
scout/adapter/mongo/panel.py,sha256=KoSHKbYBPzA_-NugGKwHDzPTHO9RZuj7U4oxKvp6_LU,20916
|
23
23
|
scout/adapter/mongo/phenomodel.py,sha256=cypSS8YRzu98Bf1kC0orfrLNn_ZQSYCK8e4mNR5PaPY,2572
|
24
|
-
scout/adapter/mongo/query.py,sha256=
|
24
|
+
scout/adapter/mongo/query.py,sha256=Mpl8wxfmxFbue5Mixq1jCQcImCPg9D5nf6jCli2WDTM,32653
|
25
25
|
scout/adapter/mongo/rank_model.py,sha256=wvDNI4OLf-f7ZYZ_Q_6qi0myxOJCNNJR_-2-_0u2K2M,5712
|
26
26
|
scout/adapter/mongo/transcript.py,sha256=3U1qtyxZ1DnrzdBJm_emJXISMYFKJuX_zAKynUt8NMY,7417
|
27
27
|
scout/adapter/mongo/user.py,sha256=QoQnRWqi_dV3ZwGzBonEU6Ap9TgMDf2x_C5UIqG0pa0,2569
|
@@ -35,7 +35,7 @@ scout/build/disease.py,sha256=Zew9AF_z1NbbKcO3uJZ2wgni501SkfnYRgnaCZ4m8FY,2020
|
|
35
35
|
scout/build/hpo.py,sha256=LJBCTq-x09D0CSKcUHB8a6ynuUrVh_7Ia0ooA1BxMys,1207
|
36
36
|
scout/build/individual.py,sha256=tWK8iKVujuCoZz-rhBVj-RCnlkU19vCSyJtXhlENwS4,5117
|
37
37
|
scout/build/institute.py,sha256=CZKn-cFbh0cWO2ySoRV_P1nYFizlyvu50LKrtAz-PLo,1330
|
38
|
-
scout/build/managed_variant.py,sha256=
|
38
|
+
scout/build/managed_variant.py,sha256=krcQBc4LLxlnUQwXuV2FxNLiSkMoIkLxQueYFl04Vyo,1666
|
39
39
|
scout/build/panel.py,sha256=IrTPFPgqXnbE92vvHpa8NqnTRO7GqWcpPBCtMcdzV84,5348
|
40
40
|
scout/build/user.py,sha256=Df_k2H4CxR80yqmgVvl3u3YC9ikr33BLH5fGkxZ3Mlw,942
|
41
41
|
scout/build/genes/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
@@ -46,9 +46,9 @@ scout/build/variant/__init__.py,sha256=Y70EK_8TS69seYSyIvL1Mek1FMo3XPeXcOnYVIOWg
|
|
46
46
|
scout/build/variant/clnsig.py,sha256=uAfrf4RSUGliIp13fW9XqJshodNWxjuAwUbBbNHgmCc,719
|
47
47
|
scout/build/variant/compound.py,sha256=tYikQ4PmgAH1_yrE9uYaUX4_EoAs_XEiT8JWAjrZuDg,816
|
48
48
|
scout/build/variant/gene.py,sha256=9mS6sEBksBNKDoyo-yo-_5IdSRwYrpF1jIzfNAg6-Ek,3815
|
49
|
-
scout/build/variant/genotype.py,sha256=
|
49
|
+
scout/build/variant/genotype.py,sha256=QDTZWFB8ix9Zd1m9UPWgT008i6rC7gT-uFzRr9GniDU,1009
|
50
50
|
scout/build/variant/transcript.py,sha256=hf_led1kdT3hVEwtHdORhBSk6a6o_zEDJ0z4ZF8IlFA,1205
|
51
|
-
scout/build/variant/variant.py,sha256=
|
51
|
+
scout/build/variant/variant.py,sha256=GJBRoAb-Ul9_tR1tUmnNpS9lpJOlLV0K4mEid98jS58,18427
|
52
52
|
scout/commands/__init__.py,sha256=VrenBj1daCAnIsBZtvdbv1SuxmODT_TTY8YcxWItrXE,22
|
53
53
|
scout/commands/base.py,sha256=2Hhig-X598AVnxQz9A2UObRQD45jFV0MtdNeUn3B7Hw,4609
|
54
54
|
scout/commands/convert.py,sha256=T5dkFjRKSTf7dBS9uKIW4wEmdL13vKzKTLRy4nvf6Vg,1090
|
@@ -126,7 +126,7 @@ scout/commands/view/users.py,sha256=MKlmhDYRM7Yf-Trmi1ijEuqsDIUn326bdFADyDs7XYg,
|
|
126
126
|
scout/constants/__init__.py,sha256=u-faDDRxNzCeAKryKLdFSuIDSjrg6_BUj-5BYzXzXWs,6827
|
127
127
|
scout/constants/acmg.py,sha256=fjq_UFLkJPh7ZfuW-l4KH_lWKAGhNiKhlaPu1G_WXo4,13091
|
128
128
|
scout/constants/case_tags.py,sha256=Pr9Go_I8udRnrdcRcZdu4swS0Jpdwf8hUdDVGR6d9yY,10937
|
129
|
-
scout/constants/clinvar.py,sha256=
|
129
|
+
scout/constants/clinvar.py,sha256=TzbnbUsSBML3k1SBVIL3kQh5Hwjq5kqKhtQOOEkfHwU,5586
|
130
130
|
scout/constants/clnsig.py,sha256=2u_avIzWO_IPJGcTOoSB7_xqgu5JBl_zZZfT8UVpY90,1359
|
131
131
|
scout/constants/disease_parsing.py,sha256=m10iPVzdTsdx7v9ZWvdLjlBrQKR_uyMeJwPbokO9SHY,688
|
132
132
|
scout/constants/file_types.py,sha256=OQ3g1uo4jvhiLlPV1MBoqctWGc4YrS2wnGS6PoflIAA,1016
|
@@ -135,7 +135,7 @@ scout/constants/gene_tags.py,sha256=tdzDh6ukJRtHiC8X5YkldijZCS0KrEeXj95sLNlqxuc,
|
|
135
135
|
scout/constants/igv_tracks.py,sha256=3-3VzFpCTfuhbEBAitbpY2lQRYXYf-poya3DXs0g9yE,4500
|
136
136
|
scout/constants/indexes.py,sha256=6hX64eouUQx6kdPd1rTGEQAM9htDaEPwjy35USVbkJ4,4842
|
137
137
|
scout/constants/phenotype.py,sha256=MrbXirisR_7GPnxV3NOj3-BoM9CvtGgFZj7PfJu85RM,2331
|
138
|
-
scout/constants/query_terms.py,sha256=
|
138
|
+
scout/constants/query_terms.py,sha256=RrHSBde-UNfdD2D5r1ViHcLfDD-q_sEkLZsPKOE91x4,1556
|
139
139
|
scout/constants/so_terms.py,sha256=aJcQv3wgpZylVhqSJH854WS8xSARDxWGnW6I5mG1egE,4321
|
140
140
|
scout/constants/variant_tags.py,sha256=HZo_9adwSaoQTTmro6PdXNdiPYF4dNAhK19674wGC8k,16131
|
141
141
|
scout/constants/variants_export.py,sha256=ee3dyM6CifvPUU4zsVwYzG9Dptn3qBBhP72olHHJ6i4,1942
|
@@ -393,7 +393,7 @@ scout/models/case/case_loading_models.py,sha256=D1WYdkezb71MV-f0UM9OVjiS53zHQuS0
|
|
393
393
|
scout/models/variant/__init__.py,sha256=H-IZ2hSTSVS28S8FZzA8j2Cyu1PHQFXyMWJFtCucPAk,40
|
394
394
|
scout/models/variant/gene.py,sha256=98CG_JcAklGGFIrUulf1_olQalV65kXQO-gOf7VQZ0A,1095
|
395
395
|
scout/models/variant/transcript.py,sha256=rfflEbTs7Bn4HDENqrxtGopQ_0HKnrVLLyBcrj4NpwM,1720
|
396
|
-
scout/models/variant/variant.py,sha256=
|
396
|
+
scout/models/variant/variant.py,sha256=zdSOqI8GYJWlQdbucC68M_5iWS79ar29twGvBunCuOQ,4424
|
397
397
|
scout/parse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
398
398
|
scout/parse/case.py,sha256=-swb-XBe6AOAzRBXob0VBQhotInZ9cg9L4sspIwS5zc,11653
|
399
399
|
scout/parse/cytoband.py,sha256=7flY3b_wegupHHBLRcs4KyM1ns-uzuTfVHm4CycnupE,1055
|
@@ -417,21 +417,21 @@ scout/parse/variant/compound.py,sha256=zeRHBwobusCW-ylgurHrnPsc-edeJHeXj6xjXkrbF
|
|
417
417
|
scout/parse/variant/conservation.py,sha256=nNG0o7i1AkxZ9lZPodC292CEQ-JAyYEB-qoBr2PoOwk,2948
|
418
418
|
scout/parse/variant/coordinates.py,sha256=CU-EyD8NVgTbyIdmYDO3k-zVaMN1EDONjorDwyUSnXU,4742
|
419
419
|
scout/parse/variant/deleteriousness.py,sha256=zeFzx218GL-5pKniyci7MVHj3a1cep4nmvoSg7u0ogA,541
|
420
|
-
scout/parse/variant/frequency.py,sha256=
|
420
|
+
scout/parse/variant/frequency.py,sha256=dKWvuXtG5Ow3QyDMBYdDBgJQGhqZmQWlcEG0YosA87M,7624
|
421
421
|
scout/parse/variant/gene.py,sha256=30SR2ck12HQW87LlRfchdgPVzOxb74aIXC2WzPL2BPk,4688
|
422
|
-
scout/parse/variant/genotype.py,sha256=
|
422
|
+
scout/parse/variant/genotype.py,sha256=QDSn9dRpbyNQgbu5rQtRAp3k1XQkiem_3B9H6ttMaKA,16495
|
423
423
|
scout/parse/variant/headers.py,sha256=se3H4r22q30MIvtOyc5jWNXZLVnDx58X4h-eED7hkl4,2947
|
424
424
|
scout/parse/variant/ids.py,sha256=N_2m7Hgdh7asHdWU4k2dMySsutxp16ODRE_OHy_Niwg,2628
|
425
425
|
scout/parse/variant/managed_variant.py,sha256=qwmi2sPLwGZM5izSsMpvhQ9vfMHREiwiIzjDCuOdqQo,2288
|
426
426
|
scout/parse/variant/models.py,sha256=NrqLXu7PxpIQ0NmjGRIEk4vS_y972VPiexLsZCZpOn0,507
|
427
427
|
scout/parse/variant/rank_score.py,sha256=ipFxCTsQHMqObUbzLJlDAKUb3_lk_sqEYzH52myZVVk,486
|
428
|
-
scout/parse/variant/transcript.py,sha256=
|
429
|
-
scout/parse/variant/variant.py,sha256=
|
428
|
+
scout/parse/variant/transcript.py,sha256=h0-IPDj4Th5aNijyhR1jrwnPe_YZx5QVajqn9ttxE98,13340
|
429
|
+
scout/parse/variant/variant.py,sha256=hKsE2b97hRuUpE948VHL5WOL81n-_RKpZBdRGOHaV1A,23759
|
430
430
|
scout/resources/__init__.py,sha256=MNY3UdgbvOGoVnwGQly2HyOtMfkdPXqnN-sbe_XrOJ8,337
|
431
431
|
scout/resources/cytoBand_hg19.txt.gz,sha256=pheUD5b9NlVuvwwnbKwDc2FG80Yg70gvPxVXP-Sqd3k,6147
|
432
432
|
scout/resources/cytoBand_hg38.txt.gz,sha256=sqSVmvPlktQ-0hTiTapJM-5UgyV6xDoYZuTF0kPuETs,6105
|
433
433
|
scout/server/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
|
434
|
-
scout/server/app.py,sha256=
|
434
|
+
scout/server/app.py,sha256=oM1rdghv5fQ5Wy46SRjeN9fLl2vk9ad6C3LtF58q_DA,11995
|
435
435
|
scout/server/auto.py,sha256=8B6GwfOaUChkTLuLgYQDFMWlxGuHkEegF1argH2G2Ik,401
|
436
436
|
scout/server/config.py,sha256=Ld9Vznr9cyss-PS8Av1OH4H96sDpzf8ZU3aWTNjTeqo,5228
|
437
437
|
scout/server/links.py,sha256=TVAyn4_vvKpiZjIEIMdbNZReNrCRgOfvV8ZHCqlgWy0,26996
|
@@ -443,38 +443,39 @@ scout/server/blueprints/alignviewers/partial.py,sha256=9hpI00yhvZZCcPVUHlVDp488r
|
|
443
443
|
scout/server/blueprints/alignviewers/views.py,sha256=cnCg3fLGMWnOt5VZuQX82s7oBDbERe2MT0ip99jG7_s,5085
|
444
444
|
scout/server/blueprints/alignviewers/templates/alignviewers/igv_sashimi_viewer.html,sha256=2SCRN7lNAjdQWx3hB6avDPZ4lwfE4tgM4ksUS_SZQok,5219
|
445
445
|
scout/server/blueprints/alignviewers/templates/alignviewers/igv_viewer.html,sha256=PTj6pn_f3sCdfhyJlKlrGS6Qe0UnEVj__Q31WZPsEhQ,6426
|
446
|
-
scout/server/blueprints/alignviewers/templates/alignviewers/utils.html,sha256=
|
446
|
+
scout/server/blueprints/alignviewers/templates/alignviewers/utils.html,sha256=ni4V7PqM0KQbDv1jwE9dBCc1oqyP3frGqv_uTn33FPg,206
|
447
447
|
scout/server/blueprints/api/__init__.py,sha256=HR6HjS7ot1K_8Lt5eQdNT154z_FCdHGSigy8r2LpNCI,26
|
448
448
|
scout/server/blueprints/api/views.py,sha256=pbl78wfhrm1T8JmiJDYF3BbTbfFrlF-hQRbuv2GWI0s,3729
|
449
449
|
scout/server/blueprints/cases/__init__.py,sha256=_c17kPFITFYcIVphF4V9bf0PZBer8bU3rtVWQnljKDU,52
|
450
|
-
scout/server/blueprints/cases/controllers.py,sha256=
|
451
|
-
scout/server/blueprints/cases/views.py,sha256=
|
450
|
+
scout/server/blueprints/cases/controllers.py,sha256=om7TPqsb2ZUGTAmuicp_peplZ1ujBPMUhwu_NYL7nuQ,54180
|
451
|
+
scout/server/blueprints/cases/views.py,sha256=0MikCLSJUkQBbT3vNIAWefD57_6lZ4302Zx52LMygB8,42685
|
452
452
|
scout/server/blueprints/cases/static/case_images.js,sha256=pb_gG7DNQc-1lADqSII8YvjBwmHyeQWYVtuu2jyrTlU,14997
|
453
453
|
scout/server/blueprints/cases/static/case_styles.css,sha256=2Pgc8pFf9DR5HM1sTdAjaRWhjL-bK5bsQnLpH54HZak,541
|
454
454
|
scout/server/blueprints/cases/static/edit_pedigree.js,sha256=ntC5fie7SsOYJau8qkke1UHxjiYWY_gBzWcIkGpdJUA,2978
|
455
455
|
scout/server/blueprints/cases/static/madeline.js,sha256=KHxKMBVlYVJODNu5QkY9hhsGkDJNoaCoCZZ0DRu0YN0,1175
|
456
456
|
scout/server/blueprints/cases/templates/cases/case.html,sha256=4u3XfrgcV1cZFWxQ5vmKJdWV-gEmnCr9SdP_rrUNt6o,35110
|
457
|
-
scout/server/blueprints/cases/templates/cases/case_bionano.html,sha256=
|
458
|
-
scout/server/blueprints/cases/templates/cases/case_report.html,sha256=
|
459
|
-
scout/server/blueprints/cases/templates/cases/case_sma.html,sha256=
|
457
|
+
scout/server/blueprints/cases/templates/cases/case_bionano.html,sha256=PLoRv7hDJcHwxhi-0hC9fQSZc7V_aUYHBhhQqcn_2G8,5946
|
458
|
+
scout/server/blueprints/cases/templates/cases/case_report.html,sha256=1tosH5xEl6CCZ1P6qlR5OKvWbAC5z3ewKL_JGdgPMBM,63635
|
459
|
+
scout/server/blueprints/cases/templates/cases/case_sma.html,sha256=SAcElb4kH05mkPdEdaEbed-vbgQQGfxioCoNZsHljDc,4962
|
460
460
|
scout/server/blueprints/cases/templates/cases/case_tabular_view.html,sha256=ko-LDUKmIoTazMZ2nFWvPEZsgObU07RwqIkDYFjokoY,4317
|
461
|
-
scout/server/blueprints/cases/templates/cases/
|
461
|
+
scout/server/blueprints/cases/templates/cases/chanjo2_form.html,sha256=5Wmk7DM8LI3MynqzxeTzAr_EoEBwVVo31djcI5ZlTdo,2164
|
462
|
+
scout/server/blueprints/cases/templates/cases/collapsible_actionbar.html,sha256=5CEHrjCXLS4VVqZSGOob0SNKxjyhg2f0oy7r2f64TK0,29252
|
462
463
|
scout/server/blueprints/cases/templates/cases/diseases.html,sha256=ETTQI0Nrl_v86NoX9mFZcvWD-qM1IJoqPmHPWn__Grw,1677
|
463
|
-
scout/server/blueprints/cases/templates/cases/gene_panel.html,sha256=
|
464
|
+
scout/server/blueprints/cases/templates/cases/gene_panel.html,sha256=fR2fCb5A_dBUTTyI4GfwARtOC6k9LeFunx8flbb6qko,12309
|
464
465
|
scout/server/blueprints/cases/templates/cases/index.html,sha256=oUmjFyUvwP4yo21CxcWy-6eepMFI65hpznMEpSEqKfM,1207
|
465
|
-
scout/server/blueprints/cases/templates/cases/individuals_table.html,sha256=
|
466
|
+
scout/server/blueprints/cases/templates/cases/individuals_table.html,sha256=DXE7gE0f81B5CxCV1e5bqWv27_HS-9-8nc0pcFkMoOg,11497
|
466
467
|
scout/server/blueprints/cases/templates/cases/institutes_sidebar.html,sha256=u0oPGHJ0ipZ1LkjHkbwlWfkUWc1h6XH1nh3tkbX17z0,4546
|
467
468
|
scout/server/blueprints/cases/templates/cases/matchmaker.html,sha256=1vwGBhM4HgvRMlO1foKBAwV-Wfvfs1MRvzteOETCZeM,13142
|
468
469
|
scout/server/blueprints/cases/templates/cases/phenotype.html,sha256=38BIwPzTgv5_9BLaTi8beafU2fOrVIfnlV-s88WAx3k,15982
|
469
|
-
scout/server/blueprints/cases/templates/cases/utils.html,sha256=
|
470
|
+
scout/server/blueprints/cases/templates/cases/utils.html,sha256=kYctb7PKlKKjYHHJ0LpdqYsBpJf2tq_yzrwsRQ8td_w,34803
|
470
471
|
scout/server/blueprints/clinvar/__init__.py,sha256=BV3aH2AbiA2WWrUEMbGd0H9MefFd2eTsRE9ShywbzpI,30
|
471
|
-
scout/server/blueprints/clinvar/controllers.py,sha256=
|
472
|
+
scout/server/blueprints/clinvar/controllers.py,sha256=TEOdUTVYI-I_lzts0F3M_TFPMkeeweWIUxWug5HUhDw,24059
|
472
473
|
scout/server/blueprints/clinvar/form.py,sha256=d0EBJouYsk-kIpGtAr_SfNCyLoBNchfLt25uFR9HxO0,5155
|
473
|
-
scout/server/blueprints/clinvar/views.py,sha256=
|
474
|
+
scout/server/blueprints/clinvar/views.py,sha256=hPyTJA7Qy6QOL-ENSG1N0atnQXuYCb-iiO8fuNDjJns,6036
|
474
475
|
scout/server/blueprints/clinvar/static/form_style.css,sha256=Tro2w0Su9st2ZRpt8PjF7qXYet-0n6Eyol4oh94JafU,4073
|
475
476
|
scout/server/blueprints/clinvar/templates/clinvar/clinvar_howto.html,sha256=phFsRl6Hv94sy4GueBN0MXYbQsW6qmR1NoH-3Iwt2zs,4852
|
476
|
-
scout/server/blueprints/clinvar/templates/clinvar/clinvar_submissions.html,sha256=
|
477
|
-
scout/server/blueprints/clinvar/templates/clinvar/multistep_add_variant.html,sha256=
|
477
|
+
scout/server/blueprints/clinvar/templates/clinvar/clinvar_submissions.html,sha256=4PPiOSXszJy-yqjhideoWhQ2SwRZ9o66yL7slUHqeeM,18241
|
478
|
+
scout/server/blueprints/clinvar/templates/clinvar/multistep_add_variant.html,sha256=z6OQ3uEOtkFQAltPYg3Vn8E7__WvK-vc4LOFLYZ7YUM,31623
|
478
479
|
scout/server/blueprints/dashboard/__init__.py,sha256=9YTjGeFexyEbl4P-gs7j8VEjyhnVwHZFfz57eTtod1M,69
|
479
480
|
scout/server/blueprints/dashboard/controllers.py,sha256=n85n1lm1MJulPBhKk3VrUH8EXaVqt9TrP0Dolb0U7F0,9582
|
480
481
|
scout/server/blueprints/dashboard/forms.py,sha256=CgwCHGZcxi08-04hwlw-rXZau_C9X2Qoq1ayTd533qY,826
|
@@ -482,7 +483,7 @@ scout/server/blueprints/dashboard/views.py,sha256=VjJI44FBfjQMR21AKminmQWmM3QT9V
|
|
482
483
|
scout/server/blueprints/dashboard/static/charts.js,sha256=_OSNlhWM8Tys2kReCWAR8RgPlgYNDXJmrZNJs6yXruk,4228
|
483
484
|
scout/server/blueprints/dashboard/templates/dashboard/dashboard_general.html,sha256=OypTHBlXrGvl9Rn0Vs82hkN8JE7oBl2nBmOoXJDwjUI,6507
|
484
485
|
scout/server/blueprints/diagnoses/__init__.py,sha256=sORNuH8TXn63RI7KVRSVrMrPwTzZs9gNMfPxtzUZW-U,27
|
485
|
-
scout/server/blueprints/diagnoses/controllers.py,sha256=
|
486
|
+
scout/server/blueprints/diagnoses/controllers.py,sha256=h-enZ2T8lwPDFl9pVKRZ7Mr41xMyMLtmT4j4CBG6joQ,1654
|
486
487
|
scout/server/blueprints/diagnoses/views.py,sha256=zGfYxrrzE1qNn4wyoBdgKpfozJb6XpVEcC0sBwmPDXA,1252
|
487
488
|
scout/server/blueprints/diagnoses/static/diagnoses.js,sha256=NnPqqDCYsSjVGtRUCfxVWX35B3SqBSGbSH8zx8UVc7o,5341
|
488
489
|
scout/server/blueprints/diagnoses/templates/diagnoses/diagnoses.html,sha256=XlkzjQLGkNm9R2Ls7eqMhJE5BEXcUxI0AR-DrMFbIoY,4448
|
@@ -494,14 +495,14 @@ scout/server/blueprints/genes/templates/genes/gene.html,sha256=X1WR-sHYGnWyhQfgN
|
|
494
495
|
scout/server/blueprints/genes/templates/genes/genes.html,sha256=x6jXKijvuEX9GvIedHW4O_BerYXiWEmAdYT0HTiGnhI,1130
|
495
496
|
scout/server/blueprints/genes/templates/genes/layout.html,sha256=cZMLe2cInq24z0sZpPxDm_kEiAe5VQbOR-8XWn6wlvI,1601
|
496
497
|
scout/server/blueprints/institutes/__init__.py,sha256=kGSyYrBC1QaEQBDdoMkMLfaowV7roaV5DowICi_0RSQ,65
|
497
|
-
scout/server/blueprints/institutes/controllers.py,sha256=
|
498
|
+
scout/server/blueprints/institutes/controllers.py,sha256=vVzqjsa6DT_FJgqwRujdZVTe0tclWXNhe5xXjX5zvnE,32444
|
498
499
|
scout/server/blueprints/institutes/forms.py,sha256=c76D9mPQNmUc9PN43_2w3tHRXxHO9Drg1J8BkG-2v4g,5658
|
499
500
|
scout/server/blueprints/institutes/views.py,sha256=nzpslF6WeKJL_DClu2njJRXupBzoPD6C2j6GI8NWQ-E,8614
|
500
501
|
scout/server/blueprints/institutes/static/form_scripts.js,sha256=8Sn7omeXeeUbiXJPfT0Qb4CaBJ_KtZZWw7N2he7EDx0,747
|
501
502
|
scout/server/blueprints/institutes/static/select2_darktheme.css,sha256=Nq_va597W_e5y-52B4ClwSJzACq0WFbPU8SIp3DtKIo,1818
|
502
503
|
scout/server/blueprints/institutes/static/timeline_styles.css,sha256=Vq48ffIidpQmDQhAzfW47O9mGQZEWdlbMtOE8AK-ZEU,2122
|
503
504
|
scout/server/blueprints/institutes/static/variants_list_scripts.js,sha256=gO_ZuJC2jj7Y9x6CEVEVhN1oIE4bIWrTY0_zVcsbRbY,236
|
504
|
-
scout/server/blueprints/institutes/templates/overview/cases.html,sha256=
|
505
|
+
scout/server/blueprints/institutes/templates/overview/cases.html,sha256=flMDRMOT6HFkKjszJ9eM0WYoLEp7DkPnqPh_YuJ8D2k,14372
|
505
506
|
scout/server/blueprints/institutes/templates/overview/causatives.html,sha256=KHCPIshkenOjIVWkG9usfLqkORChonGdOiIRw0h1oj0,1593
|
506
507
|
scout/server/blueprints/institutes/templates/overview/filters.html,sha256=Dzu5YicmdjW_zGqbCUrb8TMbSUuRaG47itTMwwX7Bm8,3102
|
507
508
|
scout/server/blueprints/institutes/templates/overview/gene_variants.html,sha256=Gux54z0-Lov8UwnNabfoWPZ4eRmU5jQ7zIhZRB2o3Mg,7756
|
@@ -527,14 +528,14 @@ scout/server/blueprints/login/templates/login/users.html,sha256=ClMOKE7jlSAWHa5d
|
|
527
528
|
scout/server/blueprints/managed_variants/__init__.py,sha256=wpDezF_TYKSRkrUGX_aWxdpITMvKvnNqWQtuy6YV1bI,63
|
528
529
|
scout/server/blueprints/managed_variants/controllers.py,sha256=HQ9jkTMzVEBLEmswXE7lg8Zj05ENshZeirzIpxm52lk,7281
|
529
530
|
scout/server/blueprints/managed_variants/forms.py,sha256=cxpr4Xunvay7_bBy85FjURo869hWGlW1SbsIUTWhPeU,2208
|
530
|
-
scout/server/blueprints/managed_variants/views.py,sha256=
|
531
|
-
scout/server/blueprints/managed_variants/templates/managed_variants/managed_variants.html,sha256=
|
531
|
+
scout/server/blueprints/managed_variants/views.py,sha256=wHOClPy2ZCIQvandia90kG6I6IPhxKVOiAnG4esXh-0,2473
|
532
|
+
scout/server/blueprints/managed_variants/templates/managed_variants/managed_variants.html,sha256=gE1eP1E1A20z7UUuf36onLU75537rrNlR-P9pbwwtnI,17295
|
532
533
|
scout/server/blueprints/panels/__init__.py,sha256=usxBF0O7zNX1d9jt-8DRoFZwcfHHS96Gv87LDr1AgG4,53
|
533
534
|
scout/server/blueprints/panels/controllers.py,sha256=jpWSxSdu_U6mxBjxQlnIEBNv0nsJ0aHUecWA3gFhcJw,12898
|
534
535
|
scout/server/blueprints/panels/forms.py,sha256=rkuYgrbGYZ2luVgnZyclX92ijVjvQU7S6RGSUi0YFEA,695
|
535
|
-
scout/server/blueprints/panels/views.py,sha256=
|
536
|
+
scout/server/blueprints/panels/views.py,sha256=mJ9WlkmK-ZIysYrMAEDkQ5Y35b76LsrYE9sdP_BvN2Y,15746
|
536
537
|
scout/server/blueprints/panels/templates/panels/gene-edit.html,sha256=ZuXxdvjioxHlC0mz54t4q2KBFvP2qXb5VpNIcMVayVM,3649
|
537
|
-
scout/server/blueprints/panels/templates/panels/panel.html,sha256=
|
538
|
+
scout/server/blueprints/panels/templates/panels/panel.html,sha256=TxFAMRWQfveftJ4wxXJ_swxzq3GeIzwWegnoICQvJTk,15468
|
538
539
|
scout/server/blueprints/panels/templates/panels/panel_pdf_case_hits.html,sha256=uzfZJiMNQiTa_6u4uMuIbK3VXIs-8Rw-MjKujFttZG8,3438
|
539
540
|
scout/server/blueprints/panels/templates/panels/panel_pdf_simple.html,sha256=6fcuiYcm_Gjh0klgQ9AfbpYUJAQrXm0YPAjFwrtmLHs,2677
|
540
541
|
scout/server/blueprints/panels/templates/panels/panels.html,sha256=eR-f_Rh3ril-zVA4uBpOOblXm8LMEs3eirwpDQ-Ozrs,13422
|
@@ -547,7 +548,7 @@ scout/server/blueprints/phenomodels/templates/phenomodels.html,sha256=nUgJIM-HCO
|
|
547
548
|
scout/server/blueprints/phenotypes/__init__.py,sha256=U62KsB1aI_b98M9-Ahy1HfxtPNFYOLUS29c5OVqhRN8,50
|
548
549
|
scout/server/blueprints/phenotypes/controllers.py,sha256=Wkg7k96Pw8dkBGdG62qljkgOqy3almGEJdNrnxjeqKc,995
|
549
550
|
scout/server/blueprints/phenotypes/views.py,sha256=mote8mMsOHSkrXTt5r7rw0DH-RLW2HBt252o8AG8MxI,1853
|
550
|
-
scout/server/blueprints/phenotypes/templates/phenotypes/hpo_terms.html,sha256=
|
551
|
+
scout/server/blueprints/phenotypes/templates/phenotypes/hpo_terms.html,sha256=2qeLQpcujCicZiNr4AS3cvyLEOVF0uh0o5OJWFGRBk8,2161
|
551
552
|
scout/server/blueprints/public/__init__.py,sha256=M26IYmBXK-dnMmd3Uc2ZuVpjD_xdKKyYNzz0IXFueKo,53
|
552
553
|
scout/server/blueprints/public/views.py,sha256=HSwatmBQB6fA90Mt6Lpv9NNVLSQpPz4NxWyjx4IpyqM,973
|
553
554
|
scout/server/blueprints/public/static/GMS-logo-dark.png,sha256=NC5uv6QeLaEKCrXHmGywukREM_GsO6jb4aEIN77UYEc,76765
|
@@ -586,43 +587,43 @@ scout/server/blueprints/public/static/ideograms/chromosome-X.png,sha256=Dj7npcW_
|
|
586
587
|
scout/server/blueprints/public/static/ideograms/chromosome-Y.png,sha256=KlOsBLZYFVHRvXvTioT-XE57zSWoYeIwIEXo_rzLBR0,1524
|
587
588
|
scout/server/blueprints/public/templates/public/index.html,sha256=kl_-1s4HXRGw_PWacRFHG3cHALBBMN54GJVBnAAZ7LE,3626
|
588
589
|
scout/server/blueprints/variant/__init__.py,sha256=SlD8-Aoj9Jq9aVTJjtFfsu-0sUVfkzpiEXcH8z9q6dI,54
|
589
|
-
scout/server/blueprints/variant/controllers.py,sha256=
|
590
|
-
scout/server/blueprints/variant/utils.py,sha256=
|
590
|
+
scout/server/blueprints/variant/controllers.py,sha256=FmpFXkc1AB7DdfH9SaYpZidZYsb_9b7hG44guUARNkw,25482
|
591
|
+
scout/server/blueprints/variant/utils.py,sha256=3Tj2N6VCPMBcIk6gjDw8l6j2VYfoGugEW09hgxoFNY4,24042
|
591
592
|
scout/server/blueprints/variant/verification_controllers.py,sha256=eKzP222e7xuFOaQaI9MLOrD9RWtI8uGB1cJYbcXLzF0,10972
|
592
593
|
scout/server/blueprints/variant/views.py,sha256=YQ6BXshrJDbPkPXPIwt_JtEqrbgfpzZPXqR4dsSRBt4,14610
|
593
594
|
scout/server/blueprints/variant/templates/variant/acmg.html,sha256=i_4LFecWHZSdStw9VWDFjgNcGuDm-XX4VLCyZEYBopY,7315
|
594
595
|
scout/server/blueprints/variant/templates/variant/buttons.html,sha256=Sbw4jA6xvsx9yRr9b-5ZF6bce4tqNLFQff5FuWuz9mo,6797
|
595
596
|
scout/server/blueprints/variant/templates/variant/cancer-variant.html,sha256=1D9uLIgb06qfhcbl0wB5mRrgARVgfCJfRZhf4wEA2tc,13971
|
596
|
-
scout/server/blueprints/variant/templates/variant/components.html,sha256=
|
597
|
+
scout/server/blueprints/variant/templates/variant/components.html,sha256=vFMncA2ths7ggwIWkQLfyHAp-yIK4-0L5LcLMnnYRBc,20520
|
597
598
|
scout/server/blueprints/variant/templates/variant/gene_disease_relations.html,sha256=mvw7773Gww3AAOtASL61W5e5cYTc4uB8gJ2zr19NIXw,7283
|
598
599
|
scout/server/blueprints/variant/templates/variant/rank_score_results.html,sha256=32RfBrpZ_J-1WYE01Bdd5IC9i1MAzXT7GF27OlElk94,2040
|
599
600
|
scout/server/blueprints/variant/templates/variant/sanger.html,sha256=0kVnscTw3KUwjR4QOEuNJMOK9eADGEn9qGNtGx2ST7Y,4507
|
600
601
|
scout/server/blueprints/variant/templates/variant/str-variant-reviewer.html,sha256=gusmku-14Zw44Zet7PiFWR4n0M4hdD4Qa6w_HbxWQ5A,2231
|
601
602
|
scout/server/blueprints/variant/templates/variant/sv-variant.html,sha256=Rn6lAteE2SR8omRRXWVrajcppghoF-tSR23mY4_6Sto,17184
|
602
603
|
scout/server/blueprints/variant/templates/variant/tx_overview.html,sha256=turyCoOCCd_N80FakxXfIl7q_WViysz1fwx3j312_Lg,6737
|
603
|
-
scout/server/blueprints/variant/templates/variant/utils.html,sha256=
|
604
|
-
scout/server/blueprints/variant/templates/variant/variant.html,sha256=
|
605
|
-
scout/server/blueprints/variant/templates/variant/variant_details.html,sha256=
|
604
|
+
scout/server/blueprints/variant/templates/variant/utils.html,sha256=EPwtCxHKhtMD5DiBKTnuW0VjJa-b1j7ixPZ54eEW9Kc,21583
|
605
|
+
scout/server/blueprints/variant/templates/variant/variant.html,sha256=bgO3kb4u45IrgCPUJrHT4paNDOQzcKx5dw0ZYbBmCsc,18914
|
606
|
+
scout/server/blueprints/variant/templates/variant/variant_details.html,sha256=J-pF8LRXFnCxIbNfL7klTLj172rlpWF8PznO4ie9Igc,19921
|
606
607
|
scout/server/blueprints/variants/__init__.py,sha256=W1KCz9kEbVlNO0o3NvLitYLQoP_3JSJ5KSjhpcjlUBQ,55
|
607
|
-
scout/server/blueprints/variants/controllers.py,sha256=
|
608
|
-
scout/server/blueprints/variants/forms.py,sha256=
|
609
|
-
scout/server/blueprints/variants/utils.py,sha256=
|
608
|
+
scout/server/blueprints/variants/controllers.py,sha256=Kg88oWq86nSJfJG8YqO4J2QxpbsLiGR_VwPW0BFMGRo,73074
|
609
|
+
scout/server/blueprints/variants/forms.py,sha256=5BRl2mhiqjuOhsjWXDJjfX95im-NIMxKS-oSbeHiYuM,8944
|
610
|
+
scout/server/blueprints/variants/utils.py,sha256=ifFBoyigx0A5KPE4iz9NSpyuUeF1bElrb4ohQLD2GlU,919
|
610
611
|
scout/server/blueprints/variants/views.py,sha256=h2z5x7_eA0niXlhOAkYI4eduz3je5XGw_EUnbMenuNA,28136
|
611
612
|
scout/server/blueprints/variants/static/form_scripts.js,sha256=o3GCboaesA9Sm1HgejS_yQwt0I-NTkvcl56jiBdLqZs,8319
|
612
613
|
scout/server/blueprints/variants/templates/variants/cancer-sv-variants.html,sha256=Y7XQZjjrU_cJGU8EEGEF3QzTVvDfEVudFdygYExVxwI,7429
|
613
614
|
scout/server/blueprints/variants/templates/variants/cancer-variants.html,sha256=bX9FLoufo72PBDoWp95DVLltxUrbLeuFmZQObP1oAlw,10132
|
614
|
-
scout/server/blueprints/variants/templates/variants/components.html,sha256=
|
615
|
-
scout/server/blueprints/variants/templates/variants/fusion-variants.html,sha256=
|
615
|
+
scout/server/blueprints/variants/templates/variants/components.html,sha256=oNeLagTLdOy1SRoDCY2tc7mCK26SD9BlLO8vbSpNEvY,16690
|
616
|
+
scout/server/blueprints/variants/templates/variants/fusion-variants.html,sha256=XGaLgWobzeFHwyQLXr_Yq9THssf8tGU91VbFKdGOFBg,4801
|
616
617
|
scout/server/blueprints/variants/templates/variants/indicators.html,sha256=BX6Wg8OpsALCGGozR1eXT57D0Ixrf-OFXVg6G20Wjr0,4400
|
617
618
|
scout/server/blueprints/variants/templates/variants/mei-variants.html,sha256=0-wYjaiUByDduWMgmRS4AMg3IppPNtjZL1vvAdFuIPI,5994
|
618
|
-
scout/server/blueprints/variants/templates/variants/str-variants.html,sha256=
|
619
|
+
scout/server/blueprints/variants/templates/variants/str-variants.html,sha256=sMM6GiuOU8anACtxrSF6YETsuwWUbEQZyyWhl06ev20,10186
|
619
620
|
scout/server/blueprints/variants/templates/variants/sv-variants.html,sha256=SgAdgIPdr7pd2TDB2PJlXOmSAjX4WUslfm4eu0cjIBI,6310
|
620
|
-
scout/server/blueprints/variants/templates/variants/utils.html,sha256=
|
621
|
-
scout/server/blueprints/variants/templates/variants/variants.html,sha256=
|
621
|
+
scout/server/blueprints/variants/templates/variants/utils.html,sha256=2WriO5n0IGzVw4kvt1D_hz47TAkdxhHsgAfFnfO_sww,49231
|
622
|
+
scout/server/blueprints/variants/templates/variants/variants.html,sha256=nfSZXVGmsjjUuRC-54G9UsNBMhlNjnvBafN34uL73tY,9333
|
622
623
|
scout/server/extensions/__init__.py,sha256=xeiVMoky1aB89VXz14pVDF78B9Q2r4g8iFMlYSVuIGo,1141
|
623
624
|
scout/server/extensions/beacon_extension.py,sha256=sy8YPnGcYBFoasJdBBMt92gXCUidtTNT3_9S1_F7Bwg,9903
|
624
625
|
scout/server/extensions/bionano_extension.py,sha256=XoKnAmNauatyJWUr63_gPlWyX1JGZfEXV6ge_bZ7VTk,7128
|
625
|
-
scout/server/extensions/clinvar_extension.py,sha256=
|
626
|
+
scout/server/extensions/clinvar_extension.py,sha256=e6rrpOnUs-rn3gGfiOQT4UlBRRXRLgot51G3WB44wrU,3746
|
626
627
|
scout/server/extensions/gens_extension.py,sha256=zqfzI7vOvPqNIkIl-uULJp-bS634p-4C6T7JsMI3tQw,1002
|
627
628
|
scout/server/extensions/ldap_extension.py,sha256=zJLWLfumJoU8w19767g014H2eqv5VJrn-VWPEVeWCj4,2706
|
628
629
|
scout/server/extensions/loqus_extension.py,sha256=EqRUfI8QV8OIeAEFGEvVkF4N6XTqPw8N8yXRfiSh5x0,12452
|
@@ -659,9 +660,9 @@ scout/utils/hgvs.py,sha256=P5i3fIK8WZZlUnjZ8XpMDUG5KDXRCDSOs55DfK5acsc,898
|
|
659
660
|
scout/utils/link.py,sha256=RuCUwnOtGDf9ACaC64_1FqWyWDaBv7dqNEGjmCq59kk,9001
|
660
661
|
scout/utils/md5.py,sha256=KkgdxOf7xbF9AF40ZjQKCgWaxFWJ9tp9RKjd8SU6IoA,649
|
661
662
|
scout/utils/scout_requests.py,sha256=owL_XvsrQJG4e0EUuUiY6y_hqKKep2Qljg1nMukzp8Y,12855
|
662
|
-
scout_browser-4.
|
663
|
-
scout_browser-4.
|
664
|
-
scout_browser-4.
|
665
|
-
scout_browser-4.
|
666
|
-
scout_browser-4.
|
667
|
-
scout_browser-4.
|
663
|
+
scout_browser-4.82.2.dist-info/LICENSE,sha256=TM1Y9Cqbwk55JVfxD-_bpGLtZQAeN9RovQlqHK6eOTY,1485
|
664
|
+
scout_browser-4.82.2.dist-info/METADATA,sha256=QYoeVAZXLiAZ03LhP9VPsklCcz0fasyK60PvsFE8HGs,14280
|
665
|
+
scout_browser-4.82.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
666
|
+
scout_browser-4.82.2.dist-info/entry_points.txt,sha256=E6vGg1OwvvKYIsXdHxmlIj7RmcTF0K77Q_PU8laImGg,46
|
667
|
+
scout_browser-4.82.2.dist-info/top_level.txt,sha256=qM75h71bztMaLYsxn1up4c_n2rjc_ZnyaW6Q0K5uOXc,6
|
668
|
+
scout_browser-4.82.2.dist-info/RECORD,,
|
File without changes
|