Skip to content

Commit

Permalink
remove hardcoded version
Browse files Browse the repository at this point in the history
  • Loading branch information
ahwagner committed Aug 12, 2024
1 parent f136bc4 commit 1c74d40
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 27 deletions.
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[metadata]
name = ga4gh.gks.metaschema
version = 0.3.0b10
author = Alex Wagner, PhD
author_email = [email protected]
description = GA4GH Genomic Knowledge Standards meta-schema tools
Expand Down
52 changes: 26 additions & 26 deletions tests/data/gnomAD/json/GnomadCAF
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,6 @@
"title": "GnomadCAF",
"type": "object",
"$defs": {
"GrpMaxFAF95": {
"description": "The group maximum filtering allele frequency at 95% CI",
"protectedClassOf": "GnomadCAF",
"type": "object",
"maturity": "draft",
"properties": {
"frequency": {
"type": "number"
},
"confidenceInterval": {
"type": "number",
"const": 0.95,
"default": 0.95
},
"groupId": {
"type": "string",
"description": "The genetic ancestry group from which the max frequency was calculated."
}
},
"required": [
"confidenceInterval",
"frequency",
"groupId"
],
"additionalProperties": false
},
"GnomadCafProperties": {
"description": "Additional properties specific to the gnomAD CAF model.",
"protectedClassOf": "GnomadCAF",
Expand Down Expand Up @@ -101,6 +75,32 @@
}
},
"required": []
},
"GrpMaxFAF95": {
"description": "The group maximum filtering allele frequency at 95% CI",
"protectedClassOf": "GnomadCAF",
"type": "object",
"maturity": "draft",
"properties": {
"frequency": {
"type": "number"
},
"confidenceInterval": {
"type": "number",
"const": 0.95,
"default": 0.95
},
"groupId": {
"type": "string",
"description": "The genetic ancestry group from which the max frequency was calculated."
}
},
"required": [
"confidenceInterval",
"frequency",
"groupId"
],
"additionalProperties": false
}
},
"maturity": "draft",
Expand Down

0 comments on commit 1c74d40

Please sign in to comment.