Skip to content

Commit

Permalink
updating plotting
Browse files Browse the repository at this point in the history
  • Loading branch information
pnrobinson committed Aug 5, 2024
1 parent 3888eb0 commit 293f8f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyphetools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from . import validation


__version__ = "0.9.96"
__version__ = "0.9.97"


__all__ = [
Expand Down
4 changes: 4 additions & 0 deletions src/pyphetools/visualization/phenopacket_ingestor.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ def get_simple_patient_dictionary(self) -> typing.Dict:
patient = SimplePatient(ga4gh_phenopacket=ppack)
patient_d[patient.get_subject_id()] = patient
return patient_d

def get_simple_patient_list(self) -> typing.List[SimplePatient]:
sp_d = self.get_simple_patient_dictionary()
return list(sp_d.values())


def get_phenopacket_dictionary(self) -> typing.Dict:
Expand Down

0 comments on commit 293f8f7

Please sign in to comment.