Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
28a663f
add check for fiedds not in requirements
klaricch Mar 3, 2026
db03f85
add vep 115 to requirements md
klaricch Mar 3, 2026
cd8af11
add to logtest
klaricch Mar 4, 2026
cdbbaa0
add array to check_fields_not_in_requirements
klaricch Mar 5, 2026
c9e9b96
Apply suggestions from code review
klaricch Mar 12, 2026
0b08139
add data type and move missignness
klaricch Mar 13, 2026
40c10a7
add load_gnomad_data
klaricch Mar 13, 2026
76b8ac1
edit output_base
klaricch Mar 13, 2026
808a3fd
make pipe compatible both md and html
klaricch Mar 16, 2026
4db09be
nest faf_index_dict check
klaricch Mar 16, 2026
ee3db47
isort
klaricch Mar 16, 2026
9bddcc0
update config and schema
klaricch Mar 16, 2026
5f90965
small edit
klaricch Mar 16, 2026
3167dc4
Apply suggestions from code review
klaricch Mar 17, 2026
5d23469
fix help text
klaricch Mar 30, 2026
83e0d8a
PR suggestions
klaricch Mar 30, 2026
1cd91cf
copilot PR suggestions
klaricch Mar 30, 2026
1d5c5c0
Apply suggestions from code review
klaricch Apr 3, 2026
95d9ce1
Update gnomad_qc/v5/data_ingestion/federated_validity_checks.py
klaricch Apr 3, 2026
9a1c925
PR suggestions
klaricch Apr 3, 2026
e910866
isort
klaricch Apr 3, 2026
eeedb0b
small edit
klaricch Apr 3, 2026
c3e8a1d
update args
klaricch Apr 8, 2026
8f711f6
update args
klaricch Apr 8, 2026
d7bba40
rewrite check_missingness
klaricch Apr 9, 2026
8166274
edits to check missingness
klaricch Apr 9, 2026
5945669
edit missingness
klaricch Apr 9, 2026
c29266a
add describe and global eval
klaricch Apr 15, 2026
28b168b
Update gnomad_qc/v5/data_ingestion/federated_validity_checks.py
klaricch Apr 21, 2026
4869089
Update gnomad_qc/v5/data_ingestion/federated_validity_checks.py
klaricch Apr 21, 2026
7e8a323
Update gnomad_qc/v5/data_ingestion/federated_validity_checks.py
klaricch Apr 21, 2026
6c4bb99
PR suggestions
klaricch Apr 21, 2026
05fa16d
PR suggestions
klaricch Apr 21, 2026
e798383
change file structure
klaricch Apr 21, 2026
55561c9
move configs
klaricch Apr 21, 2026
c0741a0
add moved files
klaricch Apr 21, 2026
bbb3170
fix import
klaricch Apr 21, 2026
ed4c062
remove info line
klaricch Apr 21, 2026
9d3b53b
add init
klaricch Apr 21, 2026
e20cb03
Update gnomad_qc/federated/federated_validity_checks.py
klaricch Apr 23, 2026
5ee37b8
PR suggestions
klaricch Apr 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gnomad_qc/federated/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# noqa: D104X
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"missingness_threshold": 0.5,
"struct_annotations_for_missingness": [],
"struct_annotations_to_skip_missingness": ["vep"],
"freq_fields": {"freq": "freq", "freq_meta": "freq_meta", "freq_meta_sample_count": "freq_meta_sample_count"},
"faf_fields": {},
"freq_annotations_to_sum": ["AC", "AN", "homozygote_count"],
"sort_order": ["subset", "gen_anc", "sex", "group"],
"nhomalt_metric": "homozygote_count",
"subsets": [""],
"variant_filter_field": "",
"check_mono_and_only_het" : true
"data_type": "genomes",
"check_mono_and_only_het": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
schema = {
"type": "object",
"properties": {
"missingness_threshold": {"type": "number"},
"struct_annotations_to_skip_missingness": {
"type": "array",
"items": {"type": "string"},
},
"struct_annotations_for_missingness": {
"type": "array",
"items": {"type": "string"},
Expand Down Expand Up @@ -46,17 +49,18 @@
"items": {"type": "string"},
},
"variant_filter_field": {"type": "string"},
"data_type": {"type": "string", "enum": ["exomes", "genomes"]},
"check_mono_and_only_het": {"type": "boolean"},
},
"required": [
"missingness_threshold",
"freq_fields",
"freq_annotations_to_sum",
"sort_order",
"nhomalt_metric",
"subsets",
"variant_filter_field",
"check_mono_and_only_het",
"data_type",
],
"additionalProperties": False,
}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading
Loading