"""
<description not available>
"""
# this file was auto-generated
from openminds.properties import Property
from openminds.v4.sands import ParcellationEntity as OMParcellationEntity
from fairgraph import KGObject
[docs]
class ParcellationEntity(KGObject, OMParcellationEntity):
"""
<description not available>
"""
type_ = "https://openminds.om-i.org/types/ParcellationEntity"
default_space = "atlas"
# forward properties are defined in the parent class (in openMINDS-Python)
reverse_properties = [
Property(
"has_children",
["openminds.v4.sands.ParcellationEntity", "openminds.v4.sands.ParcellationEntityVersion"],
"hasParent",
reverse="has_parents",
multiple=True,
description="reverse of 'has_parents'",
),
Property(
"is_location_of",
[
"openminds.v4.core.TissueSample",
"openminds.v4.core.TissueSampleCollection",
"openminds.v4.ephys.ElectrodeArrayUsage",
"openminds.v4.ephys.ElectrodeUsage",
"openminds.v4.ephys.PipetteUsage",
],
["anatomicalLocation", "anatomicalLocationOfElectrodes"],
reverse=["anatomical_location", "anatomical_locations", "anatomical_locations_of_electrodes"],
multiple=True,
description="reverse of anatomical_location, anatomical_locations, anatomical_locations_of_electrodes",
),
Property(
"is_target_of",
"openminds.v4.sands.AnatomicalTargetPosition",
"anatomicalTarget",
reverse="anatomical_targets",
multiple=True,
description="reverse of 'anatomical_targets'",
),
Property(
"is_used_to_group",
"openminds.v4.core.FileBundle",
"groupedBy",
reverse="grouped_by",
multiple=True,
description="reverse of 'grouped_by'",
),
Property(
"studied_in",
[
"openminds.v4.computation.DataAnalysis",
"openminds.v4.computation.DataCopy",
"openminds.v4.computation.GenericComputation",
"openminds.v4.computation.ModelValidation",
"openminds.v4.computation.Optimization",
"openminds.v4.computation.Simulation",
"openminds.v4.computation.ValidationTest",
"openminds.v4.computation.Visualization",
"openminds.v4.core.DatasetVersion",
"openminds.v4.core.Model",
"openminds.v4.core.ProtocolExecution",
"openminds.v4.ephys.CellPatching",
"openminds.v4.ephys.ElectrodePlacement",
"openminds.v4.ephys.RecordingActivity",
"openminds.v4.specimen_prep.CranialWindowPreparation",
"openminds.v4.specimen_prep.TissueCulturePreparation",
"openminds.v4.specimen_prep.TissueSampleSlicing",
"openminds.v4.stimulation.StimulationActivity",
],
"studyTarget",
reverse="study_targets",
multiple=True,
description="reverse of 'study_targets'",
),
]
aliases = {"versions": "has_versions"}
existence_query_properties = ("name",)
def __init__(
self,
name=None,
lookup_label=None,
abbreviation=None,
alternate_names=None,
definition=None,
has_children=None,
has_parents=None,
has_versions=None,
is_location_of=None,
is_target_of=None,
is_used_to_group=None,
ontology_identifiers=None,
related_uberon_term=None,
studied_in=None,
versions=None,
id=None,
data=None,
space=None,
release_status=None,
):
return KGObject.__init__(
self,
id=id,
space=space,
release_status=release_status,
data=data,
name=name,
lookup_label=lookup_label,
abbreviation=abbreviation,
alternate_names=alternate_names,
definition=definition,
has_children=has_children,
has_parents=has_parents,
has_versions=has_versions,
is_location_of=is_location_of,
is_target_of=is_target_of,
is_used_to_group=is_used_to_group,
ontology_identifiers=ontology_identifiers,
related_uberon_term=related_uberon_term,
studied_in=studied_in,
versions=versions,
)