###### DevelopmentalStage

lamindb provides access to the following public DevelopmentalStage
ontologies through bionty:

1. Human Developmental Stages

2. Mouse Developmental Stages

Here we show how to access and search DevelopmentalStage ontologies to
standardize new data.

 import bionty as bt
 import pandas as pd

##### PublicOntology objects

Let us create a public ontology accessor with ".public" method, which
chooses a default public ontology source from "Source". It's a
PublicOntology object, which you can think about as a public registry:

 developmentalstages = bt.DevelopmentalStage.public(organism="human")
 developmentalstages

As for registries, you can export the ontology as a "DataFrame":

 df = developmentalstages.to_dataframe()
 df.head()

Unlike registries, you can also export it as a Pronto object via
"public.ontology".

##### Look up terms

As for registries, terms can be looked up with auto-complete:

 lookup = developmentalstages.lookup()

The "." accessor provides normalized terms (lower case, only contains
alphanumeric characters and underscores):

 lookup.organogenesis_stage

To look up the exact original strings, convert the lookup object to
dict and use the "[]" accessor:

 lookup_dict = lookup.dict()
 lookup_dict["organogenesis stage"]

By default, the "name" field is used to generate lookup keys. You can
specify another field to look up:

 lookup = developmentalstages.lookup(developmentalstages.ontology_id)

 lookup.hsapdv_0000015

##### Search terms

Search behaves in the same way as it does for registries:

 developmentalstages.search("organogenesis").head(3)

By default, search also covers synonyms and all other fields
containing strings:

 developmentalstages.search("developmental stage").head(3)

Search specific field (by default, search is done on all fields
containing strings):

 developmentalstages.search(
 "Prenatal Stage That Starts With Fertilization",
 field=developmentalstages.definition,
 ).head()

##### Standardize DevelopmentalStage identifiers

Let us generate a "DataFrame" that stores a number of
DevelopmentalStage identifiers, some of which corrupted:

 df_orig = pd.DataFrame(
 index=[
 "blastula stage",
 "Carnegie stage 03",
 "neurula stage",
 "organogenesis stage",
 "This developmentalstage does not exist",
 ]
 )
 df_orig

We can check whether any of our values are validated against the
ontology reference:

 validated = developmentalstages.validate(df_orig.index, developmentalstages.name)
 df_orig.index[~validated]

##### Ontology source versions

For any given entity, we can choose from a number of versions:

 bt.Source.filter(entity="bionty.DevelopmentalStage").to_dataframe()

 # only lists the sources that are currently used
 bt.Source.filter(entity="bionty.DevelopmentalStage", currently_used=True).to_dataframe()

When instantiating a Bionty object, we can choose a source or version:

 source = bt.Source.filter(
 name="hsapdv", organism="human"
 ).first()
 developmentalstages= bt.DevelopmentalStage.public(source=source)
 developmentalstages

The currently used ontologies can be displayed using:

 bt.Source.filter(currently_used=True).to_dataframe()