Source code for fairgraph.openminds.controlled_terms.patch_clamp_variation

"""
<description not available>
"""

# this file was auto-generated

from openminds.properties import Property
from openminds.v4.controlled_terms import PatchClampVariation as OMPatchClampVariation
from fairgraph import KGObject


from openminds import IRI


[docs] class PatchClampVariation(KGObject, OMPatchClampVariation): """ <description not available> """ type_ = "https://openminds.om-i.org/types/PatchClampVariation" default_space = "controlled" # forward properties are defined in the parent class (in openMINDS-Python) reverse_properties = [ Property( "describes", [ "openminds.v4.computation.ValidationTestVersion", "openminds.v4.computation.WorkflowRecipeVersion", "openminds.v4.core.DatasetVersion", "openminds.v4.core.MetaDataModelVersion", "openminds.v4.core.ModelVersion", "openminds.v4.core.SoftwareVersion", "openminds.v4.core.WebServiceVersion", "openminds.v4.publications.Book", "openminds.v4.publications.Chapter", "openminds.v4.publications.LearningResource", "openminds.v4.publications.LivePaperVersion", "openminds.v4.publications.ScholarlyArticle", "openminds.v4.sands.BrainAtlasVersion", "openminds.v4.sands.CommonCoordinateSpaceVersion", ], "keyword", reverse="keywords", multiple=True, description="reverse of 'keywords'", ), Property( "used_in", "openminds.v4.ephys.CellPatching", "variation", reverse="variation", multiple=True, description="reverse of 'variation'", ), ] existence_query_properties = ("name",) def __init__( self, name=None, definition=None, describes=None, description=None, interlex_identifier=None, knowledge_space_link=None, preferred_ontology_identifier=None, synonyms=None, used_in=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, definition=definition, describes=describes, description=description, interlex_identifier=interlex_identifier, knowledge_space_link=knowledge_space_link, preferred_ontology_identifier=preferred_ontology_identifier, synonyms=synonyms, used_in=used_in, )