Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build!: update cool-seq-tool + ga4gh.vrs versions #528

Merged
merged 2 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ black = "*"
fastapi = "*"
uvicorn = "*"
pydantic = "==2.*"
"ga4gh.vrs" = {version = "~=2.0.0a1", extras = ["extras"]}
"ga4gh.vrs" = {version = "~=2.0.0a2", extras = ["extras"]}
gene-normalizer = "~=0.3.0.dev1"
boto3 = "*"
cool-seq-tool = "~=0.3.0.dev1"
cool-seq-tool = "~=0.4.0.dev1"
bioutils = "*"
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ install_requires =
fastapi
uvicorn
pydantic ==2.*
ga4gh.vrs[extras] ~= 2.0.0a1
ga4gh.vrs[extras] ~= 2.0.0a2
gene-normalizer ~=0.3.0.dev1
boto3
cool-seq-tool ~=0.3.0.dev1
cool-seq-tool ~=0.4.0.dev1
bioutils

tests_require =
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/validators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ genomic_delins:
- query: X-70350063-AG-AGGCAGCGCATAAAGCGCATTCTCCG
- query: 16-2138199-GTGAG-G
- query: 1-55509715-AC-A
- query: chr6-31239170-C-CA
should_not_match:
- query: NC_000023.21:g.32386323delinsGA
- query: NC_000007.13:g.159138664delinsAT
Expand Down Expand Up @@ -197,7 +198,6 @@ genomic_insertion:
- query: NC_000022.10:g.30051593_30051594insT
- query: NC_000017.10:g.37880993_37880994insGCTTACGTGATG
- query: ERBB2 g.37880993_37880994insGCTTACGTGATG
- query: chr6-31239170-C-CA
should_not_match:
- query: NC_000022.10:g.51304566_51304567insT
- query: NC_000022.10:g.51304567_51304568insT
Expand Down
291 changes: 0 additions & 291 deletions tests/test_gnomad_vcf_to_protein.py

This file was deleted.

4 changes: 0 additions & 4 deletions tests/test_normalize.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,10 +573,6 @@ async def test_protein_substitution(test_handler, braf_v600e, dis3_p63a, tp53_g2
resp = await test_handler.normalize("DIS3 P63A")
assertion_checks(resp, dis3_p63a)

# Case where NA priority
resp = await test_handler.normalize("TP53 G262C")
assertion_checks(resp, tp53_g262c)


@pytest.mark.asyncio
async def test_polypeptide_truncation(test_handler, vhl):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_amplification_to_cx_var(
assert resp.copy_number_change is None
assert resp.amplification_label == "BRAF Amplification"
assert resp.warnings == [
"End inter-residue coordinate (9955599320) is out of " "index on NC_000007.13"
"End inter-residue coordinate (9955599321) is out of index on NC_000007.13"
]

# invalid gene
Expand Down
Loading
Loading