Skip to content

Commit

Permalink
Merge pull request #674 from alliance-genome/add_xenbase_phenotype
Browse files Browse the repository at this point in the history
Add XBXL and XBXT to PHENOTYPE data class.
  • Loading branch information
christabone authored Dec 2, 2024
2 parents 8dbf7ec + 420d105 commit 570816b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ BGI: [FB, SGD, WB, ZFIN, RGD, MGI, HUMAN, XBXL, XBXT, SARS-CoV-2]
CONSTRUCT: [ZFIN, WB, FB, MGI]
ALLELE: [FB, WB, ZFIN, RGD, MGI, SGD]
EXPRESSION: [FB, SGD, WB, ZFIN, RGD, MGI, XBXL, XBXT]
PHENOTYPE: [FB, SGD, WB, ZFIN, RGD, MGI, HUMAN]
PHENOTYPE: [FB, SGD, WB, ZFIN, RGD, MGI, HUMAN, XBXL, XBXT]
DAF: [FB, SGD, WB, ZFIN, RGD, MGI, HUMAN]
GAF: [FB, SGD, WB, ZFIN, RGD, MGI, XB, HUMAN]
GEOXREF: [FB, SGD, WB, ZFIN, RGD, MGI, HUMAN]
Expand Down
2 changes: 1 addition & 1 deletion src/config/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ DAF:
allowed: [FB, SGD, WB, ZFIN, RGD, MGI, HUMAN]
PHENOTYPE:
type: list
allowed: [FB, SGD, WB, ZFIN, RGD, MGI, HUMAN]
allowed: [FB, SGD, WB, ZFIN, RGD, MGI, HUMAN, XBXL, XBXT]
EXPRESSION:
type: list
allowed: [FB, SGD, WB, ZFIN, RGD, MGI, XBXL, XBXT]
Expand Down
2 changes: 1 addition & 1 deletion src/test/specific_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def test_phenotype_for_all_species_exists():
RETURN count(distinct s) AS counter"""
with Neo4jHelper.run_single_query(query) as result:
for record in result:
assert record["counter"] == 7
assert record["counter"] == 8


def test_variant_for_expected_species_exists():
Expand Down

0 comments on commit 570816b

Please sign in to comment.