Skip to content

Commit

Permalink
Fix import error.
Browse files Browse the repository at this point in the history
  • Loading branch information
ielis committed Sep 9, 2024
1 parent 30f0b1c commit 9e75d23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/view/test_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from gpsea.analysis.pcats import HpoTermAnalysisResult
from gpsea.analysis.predicate import PatientCategories
from gpsea.analysis.predicate.genotype import GenotypePolyPredicate
from gpsea.analysis.predicate.phenotype import PropagatingPhenotypePredicate
from gpsea.analysis.predicate.phenotype import HpoPredicate
from gpsea.analysis.mtc_filter import PhenotypeMtcResult
from gpsea.view import MtcStatsViewer

Expand All @@ -22,11 +22,11 @@ def hpo_term_analysis_result(
) -> HpoTermAnalysisResult:
return HpoTermAnalysisResult(
pheno_predicates=(
PropagatingPhenotypePredicate(
HpoPredicate(
hpo=hpo,
query=hpotk.TermId.from_curie('HP:0001166'), # Arachnodactyly
),
PropagatingPhenotypePredicate(
HpoPredicate(
hpo=hpo,
query=hpotk.TermId.from_curie('HP:0001250'), # Seizure
),
Expand Down

0 comments on commit 9e75d23

Please sign in to comment.