fairgraph 0.13.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fairgraph/__init__.py +61 -0
- fairgraph/base.py +104 -0
- fairgraph/caching.py +52 -0
- fairgraph/client.py +867 -0
- fairgraph/collection.py +104 -0
- fairgraph/embedded.py +122 -0
- fairgraph/errors.py +47 -0
- fairgraph/fields.py +11 -0
- fairgraph/kgobject.py +1087 -0
- fairgraph/kgproxy.py +178 -0
- fairgraph/kgquery.py +151 -0
- fairgraph/node.py +488 -0
- fairgraph/openminds/__init__.py +1 -0
- fairgraph/openminds/chemicals/__init__.py +40 -0
- fairgraph/openminds/chemicals/amount_of_chemical.py +23 -0
- fairgraph/openminds/chemicals/chemical_mixture.py +72 -0
- fairgraph/openminds/chemicals/chemical_substance.py +67 -0
- fairgraph/openminds/chemicals/product_source.py +57 -0
- fairgraph/openminds/computation/__init__.py +53 -0
- fairgraph/openminds/computation/data_analysis.py +104 -0
- fairgraph/openminds/computation/data_copy.py +104 -0
- fairgraph/openminds/computation/environment.py +66 -0
- fairgraph/openminds/computation/generic_computation.py +104 -0
- fairgraph/openminds/computation/hardware_system.py +53 -0
- fairgraph/openminds/computation/launch_configuration.py +68 -0
- fairgraph/openminds/computation/local_file.py +83 -0
- fairgraph/openminds/computation/model_validation.py +107 -0
- fairgraph/openminds/computation/optimization.py +104 -0
- fairgraph/openminds/computation/simulation.py +104 -0
- fairgraph/openminds/computation/software_agent.py +81 -0
- fairgraph/openminds/computation/validation_test.py +105 -0
- fairgraph/openminds/computation/validation_test_version.py +180 -0
- fairgraph/openminds/computation/visualization.py +104 -0
- fairgraph/openminds/computation/workflow_execution.py +44 -0
- fairgraph/openminds/computation/workflow_recipe.py +95 -0
- fairgraph/openminds/computation/workflow_recipe_version.py +185 -0
- fairgraph/openminds/controlled_terms/__init__.py +116 -0
- fairgraph/openminds/controlled_terms/action_status_type.py +97 -0
- fairgraph/openminds/controlled_terms/age_category.py +89 -0
- fairgraph/openminds/controlled_terms/analysis_technique.py +108 -0
- fairgraph/openminds/controlled_terms/anatomical_axes_orientation.py +89 -0
- fairgraph/openminds/controlled_terms/anatomical_identification_type.py +89 -0
- fairgraph/openminds/controlled_terms/anatomical_plane.py +89 -0
- fairgraph/openminds/controlled_terms/annotation_criteria_type.py +89 -0
- fairgraph/openminds/controlled_terms/annotation_type.py +89 -0
- fairgraph/openminds/controlled_terms/atlas_type.py +88 -0
- fairgraph/openminds/controlled_terms/auditory_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/biological_order.py +117 -0
- fairgraph/openminds/controlled_terms/biological_process.py +79 -0
- fairgraph/openminds/controlled_terms/biological_sex.py +132 -0
- fairgraph/openminds/controlled_terms/breeding_type.py +127 -0
- fairgraph/openminds/controlled_terms/cell_culture_type.py +117 -0
- fairgraph/openminds/controlled_terms/cell_type.py +151 -0
- fairgraph/openminds/controlled_terms/chemical_mixture_type.py +89 -0
- fairgraph/openminds/controlled_terms/colormap.py +79 -0
- fairgraph/openminds/controlled_terms/contribution_type.py +79 -0
- fairgraph/openminds/controlled_terms/cranial_window_construction_type.py +89 -0
- fairgraph/openminds/controlled_terms/cranial_window_reinforcement_type.py +89 -0
- fairgraph/openminds/controlled_terms/criteria_quality_type.py +89 -0
- fairgraph/openminds/controlled_terms/data_type.py +89 -0
- fairgraph/openminds/controlled_terms/device_type.py +94 -0
- fairgraph/openminds/controlled_terms/difference_measure.py +89 -0
- fairgraph/openminds/controlled_terms/disease.py +142 -0
- fairgraph/openminds/controlled_terms/disease_model.py +142 -0
- fairgraph/openminds/controlled_terms/educational_level.py +79 -0
- fairgraph/openminds/controlled_terms/electrical_stimulus_type.py +137 -0
- fairgraph/openminds/controlled_terms/ethics_assessment.py +79 -0
- fairgraph/openminds/controlled_terms/experimental_approach.py +79 -0
- fairgraph/openminds/controlled_terms/file_bundle_grouping.py +99 -0
- fairgraph/openminds/controlled_terms/file_repository_type.py +89 -0
- fairgraph/openminds/controlled_terms/file_usage_role.py +89 -0
- fairgraph/openminds/controlled_terms/genetic_strain_type.py +127 -0
- fairgraph/openminds/controlled_terms/gustatory_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/handedness.py +127 -0
- fairgraph/openminds/controlled_terms/language.py +88 -0
- fairgraph/openminds/controlled_terms/laterality.py +94 -0
- fairgraph/openminds/controlled_terms/learning_resource_type.py +88 -0
- fairgraph/openminds/controlled_terms/measured_quantity.py +89 -0
- fairgraph/openminds/controlled_terms/measured_signal_type.py +79 -0
- fairgraph/openminds/controlled_terms/meta_data_model_type.py +88 -0
- fairgraph/openminds/controlled_terms/model_abstraction_level.py +89 -0
- fairgraph/openminds/controlled_terms/model_scope.py +89 -0
- fairgraph/openminds/controlled_terms/molecular_entity.py +142 -0
- fairgraph/openminds/controlled_terms/mri_pulse_sequence.py +98 -0
- fairgraph/openminds/controlled_terms/mri_weighting.py +98 -0
- fairgraph/openminds/controlled_terms/olfactory_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/operating_device.py +79 -0
- fairgraph/openminds/controlled_terms/operating_system.py +88 -0
- fairgraph/openminds/controlled_terms/optical_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/organ.py +161 -0
- fairgraph/openminds/controlled_terms/organism_substance.py +151 -0
- fairgraph/openminds/controlled_terms/organism_system.py +117 -0
- fairgraph/openminds/controlled_terms/patch_clamp_variation.py +89 -0
- fairgraph/openminds/controlled_terms/preparation_type.py +98 -0
- fairgraph/openminds/controlled_terms/product_accessibility.py +79 -0
- fairgraph/openminds/controlled_terms/programming_language.py +88 -0
- fairgraph/openminds/controlled_terms/qualitative_overlap.py +79 -0
- fairgraph/openminds/controlled_terms/semantic_data_type.py +79 -0
- fairgraph/openminds/controlled_terms/service.py +89 -0
- fairgraph/openminds/controlled_terms/setup_type.py +89 -0
- fairgraph/openminds/controlled_terms/software_application_category.py +79 -0
- fairgraph/openminds/controlled_terms/software_feature.py +79 -0
- fairgraph/openminds/controlled_terms/species.py +143 -0
- fairgraph/openminds/controlled_terms/stimulation_approach.py +98 -0
- fairgraph/openminds/controlled_terms/stimulation_technique.py +98 -0
- fairgraph/openminds/controlled_terms/subcellular_entity.py +143 -0
- fairgraph/openminds/controlled_terms/subject_attribute.py +89 -0
- fairgraph/openminds/controlled_terms/tactile_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/technique.py +108 -0
- fairgraph/openminds/controlled_terms/term_suggestion.py +121 -0
- fairgraph/openminds/controlled_terms/terminology.py +89 -0
- fairgraph/openminds/controlled_terms/tissue_sample_attribute.py +89 -0
- fairgraph/openminds/controlled_terms/tissue_sample_type.py +127 -0
- fairgraph/openminds/controlled_terms/type_of_uncertainty.py +89 -0
- fairgraph/openminds/controlled_terms/uberon_parcellation.py +153 -0
- fairgraph/openminds/controlled_terms/unit_of_measurement.py +108 -0
- fairgraph/openminds/controlled_terms/visual_stimulus_type.py +127 -0
- fairgraph/openminds/controlledterms.py +6 -0
- fairgraph/openminds/core/__init__.py +107 -0
- fairgraph/openminds/core/actors/__init__.py +7 -0
- fairgraph/openminds/core/actors/account_information.py +44 -0
- fairgraph/openminds/core/actors/affiliation.py +30 -0
- fairgraph/openminds/core/actors/consortium.py +175 -0
- fairgraph/openminds/core/actors/contact_information.py +43 -0
- fairgraph/openminds/core/actors/contribution.py +23 -0
- fairgraph/openminds/core/actors/organization.py +199 -0
- fairgraph/openminds/core/actors/person.py +236 -0
- fairgraph/openminds/core/data/__init__.py +13 -0
- fairgraph/openminds/core/data/content_type.py +107 -0
- fairgraph/openminds/core/data/content_type_pattern.py +53 -0
- fairgraph/openminds/core/data/copyright.py +23 -0
- fairgraph/openminds/core/data/file.py +275 -0
- fairgraph/openminds/core/data/file_archive.py +71 -0
- fairgraph/openminds/core/data/file_bundle.py +150 -0
- fairgraph/openminds/core/data/file_path_pattern.py +23 -0
- fairgraph/openminds/core/data/file_repository.py +99 -0
- fairgraph/openminds/core/data/file_repository_structure.py +51 -0
- fairgraph/openminds/core/data/hash.py +23 -0
- fairgraph/openminds/core/data/license.py +77 -0
- fairgraph/openminds/core/data/measurement.py +45 -0
- fairgraph/openminds/core/data/service_link.py +49 -0
- fairgraph/openminds/core/digital_identifier/__init__.py +11 -0
- fairgraph/openminds/core/digital_identifier/doi.py +98 -0
- fairgraph/openminds/core/digital_identifier/gridid.py +41 -0
- fairgraph/openminds/core/digital_identifier/handle.py +52 -0
- fairgraph/openminds/core/digital_identifier/identifiers_dot_org_id.py +41 -0
- fairgraph/openminds/core/digital_identifier/isbn.py +88 -0
- fairgraph/openminds/core/digital_identifier/issn.py +63 -0
- fairgraph/openminds/core/digital_identifier/orcid.py +41 -0
- fairgraph/openminds/core/digital_identifier/rorid.py +41 -0
- fairgraph/openminds/core/digital_identifier/rrid.py +55 -0
- fairgraph/openminds/core/digital_identifier/stock_number.py +23 -0
- fairgraph/openminds/core/digital_identifier/swhid.py +48 -0
- fairgraph/openminds/core/miscellaneous/__init__.py +7 -0
- fairgraph/openminds/core/miscellaneous/comment.py +47 -0
- fairgraph/openminds/core/miscellaneous/funding.py +70 -0
- fairgraph/openminds/core/miscellaneous/quantitative_value.py +43 -0
- fairgraph/openminds/core/miscellaneous/quantitative_value_array.py +49 -0
- fairgraph/openminds/core/miscellaneous/quantitative_value_range.py +43 -0
- fairgraph/openminds/core/miscellaneous/research_product_group.py +26 -0
- fairgraph/openminds/core/miscellaneous/web_resource.py +104 -0
- fairgraph/openminds/core/products/__init__.py +12 -0
- fairgraph/openminds/core/products/dataset.py +95 -0
- fairgraph/openminds/core/products/dataset_version.py +240 -0
- fairgraph/openminds/core/products/meta_data_model.py +95 -0
- fairgraph/openminds/core/products/meta_data_model_version.py +168 -0
- fairgraph/openminds/core/products/model.py +103 -0
- fairgraph/openminds/core/products/model_version.py +235 -0
- fairgraph/openminds/core/products/project.py +56 -0
- fairgraph/openminds/core/products/setup.py +69 -0
- fairgraph/openminds/core/products/software.py +95 -0
- fairgraph/openminds/core/products/software_version.py +226 -0
- fairgraph/openminds/core/products/web_service.py +103 -0
- fairgraph/openminds/core/products/web_service_version.py +182 -0
- fairgraph/openminds/core/research/__init__.py +17 -0
- fairgraph/openminds/core/research/behavioral_protocol.py +69 -0
- fairgraph/openminds/core/research/configuration.py +67 -0
- fairgraph/openminds/core/research/custom_property_set.py +27 -0
- fairgraph/openminds/core/research/numerical_property.py +23 -0
- fairgraph/openminds/core/research/property_value_list.py +71 -0
- fairgraph/openminds/core/research/protocol.py +67 -0
- fairgraph/openminds/core/research/protocol_execution.py +76 -0
- fairgraph/openminds/core/research/strain.py +90 -0
- fairgraph/openminds/core/research/string_property.py +23 -0
- fairgraph/openminds/core/research/subject.py +79 -0
- fairgraph/openminds/core/research/subject_group.py +91 -0
- fairgraph/openminds/core/research/subject_group_state.py +113 -0
- fairgraph/openminds/core/research/subject_state.py +138 -0
- fairgraph/openminds/core/research/tissue_sample.py +87 -0
- fairgraph/openminds/core/research/tissue_sample_collection.py +99 -0
- fairgraph/openminds/core/research/tissue_sample_collection_state.py +109 -0
- fairgraph/openminds/core/research/tissue_sample_state.py +127 -0
- fairgraph/openminds/ephys/__init__.py +39 -0
- fairgraph/openminds/ephys/activity/__init__.py +3 -0
- fairgraph/openminds/ephys/activity/cell_patching.py +73 -0
- fairgraph/openminds/ephys/activity/electrode_placement.py +67 -0
- fairgraph/openminds/ephys/activity/recording_activity.py +67 -0
- fairgraph/openminds/ephys/device/__init__.py +6 -0
- fairgraph/openminds/ephys/device/electrode.py +81 -0
- fairgraph/openminds/ephys/device/electrode_array.py +85 -0
- fairgraph/openminds/ephys/device/electrode_array_usage.py +105 -0
- fairgraph/openminds/ephys/device/electrode_usage.py +101 -0
- fairgraph/openminds/ephys/device/pipette.py +81 -0
- fairgraph/openminds/ephys/device/pipette_usage.py +123 -0
- fairgraph/openminds/ephys/entity/__init__.py +2 -0
- fairgraph/openminds/ephys/entity/channel.py +23 -0
- fairgraph/openminds/ephys/entity/recording.py +63 -0
- fairgraph/openminds/publications/__init__.py +47 -0
- fairgraph/openminds/publications/book.py +106 -0
- fairgraph/openminds/publications/chapter.py +100 -0
- fairgraph/openminds/publications/learning_resource.py +90 -0
- fairgraph/openminds/publications/live_paper.py +95 -0
- fairgraph/openminds/publications/live_paper_resource_item.py +58 -0
- fairgraph/openminds/publications/live_paper_section.py +57 -0
- fairgraph/openminds/publications/live_paper_version.py +177 -0
- fairgraph/openminds/publications/periodical.py +53 -0
- fairgraph/openminds/publications/publication_issue.py +44 -0
- fairgraph/openminds/publications/publication_volume.py +44 -0
- fairgraph/openminds/publications/scholarly_article.py +146 -0
- fairgraph/openminds/sands/__init__.py +57 -0
- fairgraph/openminds/sands/atlas/__init__.py +9 -0
- fairgraph/openminds/sands/atlas/atlas_annotation.py +52 -0
- fairgraph/openminds/sands/atlas/brain_atlas.py +113 -0
- fairgraph/openminds/sands/atlas/brain_atlas_version.py +213 -0
- fairgraph/openminds/sands/atlas/common_coordinate_space.py +121 -0
- fairgraph/openminds/sands/atlas/common_coordinate_space_version.py +243 -0
- fairgraph/openminds/sands/atlas/parcellation_entity.py +133 -0
- fairgraph/openminds/sands/atlas/parcellation_entity_version.py +162 -0
- fairgraph/openminds/sands/atlas/parcellation_terminology.py +38 -0
- fairgraph/openminds/sands/atlas/parcellation_terminology_version.py +38 -0
- fairgraph/openminds/sands/mathematical_shapes/__init__.py +3 -0
- fairgraph/openminds/sands/mathematical_shapes/circle.py +23 -0
- fairgraph/openminds/sands/mathematical_shapes/ellipse.py +27 -0
- fairgraph/openminds/sands/mathematical_shapes/rectangle.py +23 -0
- fairgraph/openminds/sands/miscellaneous/__init__.py +6 -0
- fairgraph/openminds/sands/miscellaneous/anatomical_target_position.py +40 -0
- fairgraph/openminds/sands/miscellaneous/coordinate_point.py +23 -0
- fairgraph/openminds/sands/miscellaneous/qualitative_relation_assessment.py +34 -0
- fairgraph/openminds/sands/miscellaneous/quantitative_relation_assessment.py +38 -0
- fairgraph/openminds/sands/miscellaneous/single_color.py +24 -0
- fairgraph/openminds/sands/miscellaneous/viewer_specification.py +40 -0
- fairgraph/openminds/sands/non_atlas/__init__.py +3 -0
- fairgraph/openminds/sands/non_atlas/custom_anatomical_entity.py +110 -0
- fairgraph/openminds/sands/non_atlas/custom_annotation.py +54 -0
- fairgraph/openminds/sands/non_atlas/custom_coordinate_space.py +67 -0
- fairgraph/openminds/specimen_prep/__init__.py +38 -0
- fairgraph/openminds/specimen_prep/activity/__init__.py +3 -0
- fairgraph/openminds/specimen_prep/activity/cranial_window_preparation.py +69 -0
- fairgraph/openminds/specimen_prep/activity/tissue_culture_preparation.py +67 -0
- fairgraph/openminds/specimen_prep/activity/tissue_sample_slicing.py +69 -0
- fairgraph/openminds/specimen_prep/device/__init__.py +2 -0
- fairgraph/openminds/specimen_prep/device/slicing_device.py +73 -0
- fairgraph/openminds/specimen_prep/device/slicing_device_usage.py +117 -0
- fairgraph/openminds/specimenprep.py +4 -0
- fairgraph/openminds/stimulation/__init__.py +38 -0
- fairgraph/openminds/stimulation/activity/__init__.py +1 -0
- fairgraph/openminds/stimulation/activity/stimulation_activity.py +67 -0
- fairgraph/openminds/stimulation/stimulus/__init__.py +1 -0
- fairgraph/openminds/stimulation/stimulus/ephys_stimulus.py +63 -0
- fairgraph/queries.py +499 -0
- fairgraph/registry.py +123 -0
- fairgraph/utility.py +607 -0
- fairgraph-0.13.0.dist-info/METADATA +222 -0
- fairgraph-0.13.0.dist-info/RECORD +267 -0
- fairgraph-0.13.0.dist-info/WHEEL +5 -0
- fairgraph-0.13.0.dist-info/licenses/LICENSE.txt +177 -0
- fairgraph-0.13.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import ParcellationEntity as OMParcellationEntity
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ParcellationEntity(KGObject, OMParcellationEntity):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/ParcellationEntity"
|
|
18
|
+
default_space = "atlas"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"has_children",
|
|
23
|
+
["openminds.v4.sands.ParcellationEntity", "openminds.v4.sands.ParcellationEntityVersion"],
|
|
24
|
+
"hasParent",
|
|
25
|
+
reverse="has_parents",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'has_parents'",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"is_location_of",
|
|
31
|
+
[
|
|
32
|
+
"openminds.v4.core.TissueSample",
|
|
33
|
+
"openminds.v4.core.TissueSampleCollection",
|
|
34
|
+
"openminds.v4.ephys.ElectrodeArrayUsage",
|
|
35
|
+
"openminds.v4.ephys.ElectrodeUsage",
|
|
36
|
+
"openminds.v4.ephys.PipetteUsage",
|
|
37
|
+
],
|
|
38
|
+
["anatomicalLocation", "anatomicalLocationOfElectrodes"],
|
|
39
|
+
reverse=["anatomical_location", "anatomical_locations", "anatomical_locations_of_electrodes"],
|
|
40
|
+
multiple=True,
|
|
41
|
+
description="reverse of anatomical_location, anatomical_locations, anatomical_locations_of_electrodes",
|
|
42
|
+
),
|
|
43
|
+
Property(
|
|
44
|
+
"is_target_of",
|
|
45
|
+
"openminds.v4.sands.AnatomicalTargetPosition",
|
|
46
|
+
"anatomicalTarget",
|
|
47
|
+
reverse="anatomical_targets",
|
|
48
|
+
multiple=True,
|
|
49
|
+
description="reverse of 'anatomical_targets'",
|
|
50
|
+
),
|
|
51
|
+
Property(
|
|
52
|
+
"is_used_to_group",
|
|
53
|
+
"openminds.v4.core.FileBundle",
|
|
54
|
+
"groupedBy",
|
|
55
|
+
reverse="grouped_by",
|
|
56
|
+
multiple=True,
|
|
57
|
+
description="reverse of 'grouped_by'",
|
|
58
|
+
),
|
|
59
|
+
Property(
|
|
60
|
+
"studied_in",
|
|
61
|
+
[
|
|
62
|
+
"openminds.v4.computation.DataAnalysis",
|
|
63
|
+
"openminds.v4.computation.DataCopy",
|
|
64
|
+
"openminds.v4.computation.GenericComputation",
|
|
65
|
+
"openminds.v4.computation.ModelValidation",
|
|
66
|
+
"openminds.v4.computation.Optimization",
|
|
67
|
+
"openminds.v4.computation.Simulation",
|
|
68
|
+
"openminds.v4.computation.ValidationTest",
|
|
69
|
+
"openminds.v4.computation.Visualization",
|
|
70
|
+
"openminds.v4.core.DatasetVersion",
|
|
71
|
+
"openminds.v4.core.Model",
|
|
72
|
+
"openminds.v4.core.ProtocolExecution",
|
|
73
|
+
"openminds.v4.ephys.CellPatching",
|
|
74
|
+
"openminds.v4.ephys.ElectrodePlacement",
|
|
75
|
+
"openminds.v4.ephys.RecordingActivity",
|
|
76
|
+
"openminds.v4.specimen_prep.CranialWindowPreparation",
|
|
77
|
+
"openminds.v4.specimen_prep.TissueCulturePreparation",
|
|
78
|
+
"openminds.v4.specimen_prep.TissueSampleSlicing",
|
|
79
|
+
"openminds.v4.stimulation.StimulationActivity",
|
|
80
|
+
],
|
|
81
|
+
"studyTarget",
|
|
82
|
+
reverse="study_targets",
|
|
83
|
+
multiple=True,
|
|
84
|
+
description="reverse of 'study_targets'",
|
|
85
|
+
),
|
|
86
|
+
]
|
|
87
|
+
aliases = {"versions": "has_versions"}
|
|
88
|
+
existence_query_properties = ("name",)
|
|
89
|
+
|
|
90
|
+
def __init__(
|
|
91
|
+
self,
|
|
92
|
+
name=None,
|
|
93
|
+
lookup_label=None,
|
|
94
|
+
abbreviation=None,
|
|
95
|
+
alternate_names=None,
|
|
96
|
+
definition=None,
|
|
97
|
+
has_children=None,
|
|
98
|
+
has_parents=None,
|
|
99
|
+
has_versions=None,
|
|
100
|
+
is_location_of=None,
|
|
101
|
+
is_target_of=None,
|
|
102
|
+
is_used_to_group=None,
|
|
103
|
+
ontology_identifiers=None,
|
|
104
|
+
related_uberon_term=None,
|
|
105
|
+
studied_in=None,
|
|
106
|
+
versions=None,
|
|
107
|
+
id=None,
|
|
108
|
+
data=None,
|
|
109
|
+
space=None,
|
|
110
|
+
release_status=None,
|
|
111
|
+
):
|
|
112
|
+
return KGObject.__init__(
|
|
113
|
+
self,
|
|
114
|
+
id=id,
|
|
115
|
+
space=space,
|
|
116
|
+
release_status=release_status,
|
|
117
|
+
data=data,
|
|
118
|
+
name=name,
|
|
119
|
+
lookup_label=lookup_label,
|
|
120
|
+
abbreviation=abbreviation,
|
|
121
|
+
alternate_names=alternate_names,
|
|
122
|
+
definition=definition,
|
|
123
|
+
has_children=has_children,
|
|
124
|
+
has_parents=has_parents,
|
|
125
|
+
has_versions=has_versions,
|
|
126
|
+
is_location_of=is_location_of,
|
|
127
|
+
is_target_of=is_target_of,
|
|
128
|
+
is_used_to_group=is_used_to_group,
|
|
129
|
+
ontology_identifiers=ontology_identifiers,
|
|
130
|
+
related_uberon_term=related_uberon_term,
|
|
131
|
+
studied_in=studied_in,
|
|
132
|
+
versions=versions,
|
|
133
|
+
)
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import ParcellationEntityVersion as OMParcellationEntityVersion
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ParcellationEntityVersion(KGObject, OMParcellationEntityVersion):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/ParcellationEntityVersion"
|
|
18
|
+
default_space = "atlas"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"has_children",
|
|
23
|
+
"openminds.v4.sands.ParcellationEntityVersion",
|
|
24
|
+
"hasParent",
|
|
25
|
+
reverse="has_parents",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'has_parents'",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"is_location_of",
|
|
31
|
+
[
|
|
32
|
+
"openminds.v4.core.ServiceLink",
|
|
33
|
+
"openminds.v4.core.TissueSample",
|
|
34
|
+
"openminds.v4.core.TissueSampleCollection",
|
|
35
|
+
"openminds.v4.ephys.ElectrodeArrayUsage",
|
|
36
|
+
"openminds.v4.ephys.ElectrodeUsage",
|
|
37
|
+
"openminds.v4.ephys.PipetteUsage",
|
|
38
|
+
],
|
|
39
|
+
["anatomicalLocation", "anatomicalLocationOfElectrodes", "dataLocation"],
|
|
40
|
+
reverse=[
|
|
41
|
+
"anatomical_location",
|
|
42
|
+
"anatomical_locations",
|
|
43
|
+
"anatomical_locations_of_electrodes",
|
|
44
|
+
"data_location",
|
|
45
|
+
],
|
|
46
|
+
multiple=True,
|
|
47
|
+
description="reverse of anatomical_location, anatomical_locations, anatomical_locations_of_electrodes, data_location",
|
|
48
|
+
),
|
|
49
|
+
Property(
|
|
50
|
+
"is_part_of",
|
|
51
|
+
"openminds.v4.sands.ParcellationTerminologyVersion",
|
|
52
|
+
"hasEntity",
|
|
53
|
+
reverse="has_entities",
|
|
54
|
+
multiple=True,
|
|
55
|
+
description="reverse of 'has_entities'",
|
|
56
|
+
),
|
|
57
|
+
Property(
|
|
58
|
+
"is_target_of",
|
|
59
|
+
"openminds.v4.sands.AnatomicalTargetPosition",
|
|
60
|
+
"anatomicalTarget",
|
|
61
|
+
reverse="anatomical_targets",
|
|
62
|
+
multiple=True,
|
|
63
|
+
description="reverse of 'anatomical_targets'",
|
|
64
|
+
),
|
|
65
|
+
Property(
|
|
66
|
+
"is_used_to_group",
|
|
67
|
+
"openminds.v4.core.FileBundle",
|
|
68
|
+
"groupedBy",
|
|
69
|
+
reverse="grouped_by",
|
|
70
|
+
multiple=True,
|
|
71
|
+
description="reverse of 'grouped_by'",
|
|
72
|
+
),
|
|
73
|
+
Property(
|
|
74
|
+
"is_version_of",
|
|
75
|
+
"openminds.v4.sands.ParcellationEntity",
|
|
76
|
+
"hasVersion",
|
|
77
|
+
reverse="has_versions",
|
|
78
|
+
multiple=True,
|
|
79
|
+
description="reverse of 'has_versions'",
|
|
80
|
+
),
|
|
81
|
+
Property(
|
|
82
|
+
"studied_in",
|
|
83
|
+
[
|
|
84
|
+
"openminds.v4.computation.DataAnalysis",
|
|
85
|
+
"openminds.v4.computation.DataCopy",
|
|
86
|
+
"openminds.v4.computation.GenericComputation",
|
|
87
|
+
"openminds.v4.computation.ModelValidation",
|
|
88
|
+
"openminds.v4.computation.Optimization",
|
|
89
|
+
"openminds.v4.computation.Simulation",
|
|
90
|
+
"openminds.v4.computation.ValidationTest",
|
|
91
|
+
"openminds.v4.computation.Visualization",
|
|
92
|
+
"openminds.v4.core.DatasetVersion",
|
|
93
|
+
"openminds.v4.core.Model",
|
|
94
|
+
"openminds.v4.core.ProtocolExecution",
|
|
95
|
+
"openminds.v4.ephys.CellPatching",
|
|
96
|
+
"openminds.v4.ephys.ElectrodePlacement",
|
|
97
|
+
"openminds.v4.ephys.RecordingActivity",
|
|
98
|
+
"openminds.v4.specimen_prep.CranialWindowPreparation",
|
|
99
|
+
"openminds.v4.specimen_prep.TissueCulturePreparation",
|
|
100
|
+
"openminds.v4.specimen_prep.TissueSampleSlicing",
|
|
101
|
+
"openminds.v4.stimulation.StimulationActivity",
|
|
102
|
+
],
|
|
103
|
+
"studyTarget",
|
|
104
|
+
reverse="study_targets",
|
|
105
|
+
multiple=True,
|
|
106
|
+
description="reverse of 'study_targets'",
|
|
107
|
+
),
|
|
108
|
+
]
|
|
109
|
+
existence_query_properties = ("name", "version_identifier")
|
|
110
|
+
|
|
111
|
+
def __init__(
|
|
112
|
+
self,
|
|
113
|
+
name=None,
|
|
114
|
+
lookup_label=None,
|
|
115
|
+
abbreviation=None,
|
|
116
|
+
additional_remarks=None,
|
|
117
|
+
alternate_names=None,
|
|
118
|
+
corrected_name=None,
|
|
119
|
+
has_annotations=None,
|
|
120
|
+
has_children=None,
|
|
121
|
+
has_parents=None,
|
|
122
|
+
is_location_of=None,
|
|
123
|
+
is_part_of=None,
|
|
124
|
+
is_target_of=None,
|
|
125
|
+
is_used_to_group=None,
|
|
126
|
+
is_version_of=None,
|
|
127
|
+
ontology_identifiers=None,
|
|
128
|
+
relation_assessments=None,
|
|
129
|
+
studied_in=None,
|
|
130
|
+
version_identifier=None,
|
|
131
|
+
version_innovation=None,
|
|
132
|
+
id=None,
|
|
133
|
+
data=None,
|
|
134
|
+
space=None,
|
|
135
|
+
release_status=None,
|
|
136
|
+
):
|
|
137
|
+
return KGObject.__init__(
|
|
138
|
+
self,
|
|
139
|
+
id=id,
|
|
140
|
+
space=space,
|
|
141
|
+
release_status=release_status,
|
|
142
|
+
data=data,
|
|
143
|
+
name=name,
|
|
144
|
+
lookup_label=lookup_label,
|
|
145
|
+
abbreviation=abbreviation,
|
|
146
|
+
additional_remarks=additional_remarks,
|
|
147
|
+
alternate_names=alternate_names,
|
|
148
|
+
corrected_name=corrected_name,
|
|
149
|
+
has_annotations=has_annotations,
|
|
150
|
+
has_children=has_children,
|
|
151
|
+
has_parents=has_parents,
|
|
152
|
+
is_location_of=is_location_of,
|
|
153
|
+
is_part_of=is_part_of,
|
|
154
|
+
is_target_of=is_target_of,
|
|
155
|
+
is_used_to_group=is_used_to_group,
|
|
156
|
+
is_version_of=is_version_of,
|
|
157
|
+
ontology_identifiers=ontology_identifiers,
|
|
158
|
+
relation_assessments=relation_assessments,
|
|
159
|
+
studied_in=studied_in,
|
|
160
|
+
version_identifier=version_identifier,
|
|
161
|
+
version_innovation=version_innovation,
|
|
162
|
+
)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import ParcellationTerminology as OMParcellationTerminology
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ParcellationTerminology(EmbeddedMetadata, OMParcellationTerminology):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/ParcellationTerminology"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("has_entities",)
|
|
21
|
+
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
data_locations=None,
|
|
25
|
+
has_entities=None,
|
|
26
|
+
ontology_identifiers=None,
|
|
27
|
+
id=None,
|
|
28
|
+
data=None,
|
|
29
|
+
space=None,
|
|
30
|
+
release_status=None,
|
|
31
|
+
):
|
|
32
|
+
return EmbeddedMetadata.__init__(
|
|
33
|
+
self,
|
|
34
|
+
data=data,
|
|
35
|
+
data_locations=data_locations,
|
|
36
|
+
has_entities=has_entities,
|
|
37
|
+
ontology_identifiers=ontology_identifiers,
|
|
38
|
+
)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import ParcellationTerminologyVersion as OMParcellationTerminologyVersion
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ParcellationTerminologyVersion(EmbeddedMetadata, OMParcellationTerminologyVersion):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/ParcellationTerminologyVersion"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("short_name", "version_identifier")
|
|
21
|
+
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
data_locations=None,
|
|
25
|
+
has_entities=None,
|
|
26
|
+
ontology_identifiers=None,
|
|
27
|
+
id=None,
|
|
28
|
+
data=None,
|
|
29
|
+
space=None,
|
|
30
|
+
release_status=None,
|
|
31
|
+
):
|
|
32
|
+
return EmbeddedMetadata.__init__(
|
|
33
|
+
self,
|
|
34
|
+
data=data,
|
|
35
|
+
data_locations=data_locations,
|
|
36
|
+
has_entities=has_entities,
|
|
37
|
+
ontology_identifiers=ontology_identifiers,
|
|
38
|
+
)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import Circle as OMCircle
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Circle(EmbeddedMetadata, OMCircle):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/Circle"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("radius",)
|
|
21
|
+
|
|
22
|
+
def __init__(self, radius=None, id=None, data=None, space=None, release_status=None):
|
|
23
|
+
return EmbeddedMetadata.__init__(self, data=data, radius=radius)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import Ellipse as OMEllipse
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Ellipse(EmbeddedMetadata, OMEllipse):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/Ellipse"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("semi_major_axis", "semi_minor_axis")
|
|
21
|
+
|
|
22
|
+
def __init__(
|
|
23
|
+
self, semi_major_axis=None, semi_minor_axis=None, id=None, data=None, space=None, release_status=None
|
|
24
|
+
):
|
|
25
|
+
return EmbeddedMetadata.__init__(
|
|
26
|
+
self, data=data, semi_major_axis=semi_major_axis, semi_minor_axis=semi_minor_axis
|
|
27
|
+
)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import Rectangle as OMRectangle
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Rectangle(EmbeddedMetadata, OMRectangle):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/Rectangle"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("length", "width")
|
|
21
|
+
|
|
22
|
+
def __init__(self, length=None, width=None, id=None, data=None, space=None, release_status=None):
|
|
23
|
+
return EmbeddedMetadata.__init__(self, data=data, length=length, width=width)
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
from .anatomical_target_position import AnatomicalTargetPosition
|
|
2
|
+
from .coordinate_point import CoordinatePoint
|
|
3
|
+
from .qualitative_relation_assessment import QualitativeRelationAssessment
|
|
4
|
+
from .quantitative_relation_assessment import QuantitativeRelationAssessment
|
|
5
|
+
from .single_color import SingleColor
|
|
6
|
+
from .viewer_specification import ViewerSpecification
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import AnatomicalTargetPosition as OMAnatomicalTargetPosition
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class AnatomicalTargetPosition(EmbeddedMetadata, OMAnatomicalTargetPosition):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/AnatomicalTargetPosition"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("anatomical_targets", "target_identification_type")
|
|
21
|
+
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
additional_remarks=None,
|
|
25
|
+
anatomical_targets=None,
|
|
26
|
+
spatial_locations=None,
|
|
27
|
+
target_identification_type=None,
|
|
28
|
+
id=None,
|
|
29
|
+
data=None,
|
|
30
|
+
space=None,
|
|
31
|
+
release_status=None,
|
|
32
|
+
):
|
|
33
|
+
return EmbeddedMetadata.__init__(
|
|
34
|
+
self,
|
|
35
|
+
data=data,
|
|
36
|
+
additional_remarks=additional_remarks,
|
|
37
|
+
anatomical_targets=anatomical_targets,
|
|
38
|
+
spatial_locations=spatial_locations,
|
|
39
|
+
target_identification_type=target_identification_type,
|
|
40
|
+
)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import CoordinatePoint as OMCoordinatePoint
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class CoordinatePoint(EmbeddedMetadata, OMCoordinatePoint):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/CoordinatePoint"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("coordinate_space", "coordinates")
|
|
21
|
+
|
|
22
|
+
def __init__(self, coordinate_space=None, coordinates=None, id=None, data=None, space=None, release_status=None):
|
|
23
|
+
return EmbeddedMetadata.__init__(self, data=data, coordinate_space=coordinate_space, coordinates=coordinates)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import QualitativeRelationAssessment as OMQualitativeRelationAssessment
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class QualitativeRelationAssessment(EmbeddedMetadata, OMQualitativeRelationAssessment):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/QualitativeRelationAssessment"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("in_relation_to", "qualitative_overlap")
|
|
21
|
+
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
criteria=None,
|
|
25
|
+
in_relation_to=None,
|
|
26
|
+
qualitative_overlap=None,
|
|
27
|
+
id=None,
|
|
28
|
+
data=None,
|
|
29
|
+
space=None,
|
|
30
|
+
release_status=None,
|
|
31
|
+
):
|
|
32
|
+
return EmbeddedMetadata.__init__(
|
|
33
|
+
self, data=data, criteria=criteria, in_relation_to=in_relation_to, qualitative_overlap=qualitative_overlap
|
|
34
|
+
)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import QuantitativeRelationAssessment as OMQuantitativeRelationAssessment
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class QuantitativeRelationAssessment(EmbeddedMetadata, OMQuantitativeRelationAssessment):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/QuantitativeRelationAssessment"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("in_relation_to", "quantitative_overlap")
|
|
21
|
+
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
criteria=None,
|
|
25
|
+
in_relation_to=None,
|
|
26
|
+
quantitative_overlap=None,
|
|
27
|
+
id=None,
|
|
28
|
+
data=None,
|
|
29
|
+
space=None,
|
|
30
|
+
release_status=None,
|
|
31
|
+
):
|
|
32
|
+
return EmbeddedMetadata.__init__(
|
|
33
|
+
self,
|
|
34
|
+
data=data,
|
|
35
|
+
criteria=criteria,
|
|
36
|
+
in_relation_to=in_relation_to,
|
|
37
|
+
quantitative_overlap=quantitative_overlap,
|
|
38
|
+
)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import SingleColor as OMSingleColor
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class SingleColor(KGObject, OMSingleColor):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/SingleColor"
|
|
18
|
+
default_space = "atlas"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = []
|
|
21
|
+
existence_query_properties = ("value",)
|
|
22
|
+
|
|
23
|
+
def __init__(self, value=None, id=None, data=None, space=None, release_status=None):
|
|
24
|
+
return KGObject.__init__(self, id=id, space=space, release_status=release_status, data=data, value=value)
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.sands import ViewerSpecification as OMViewerSpecification
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ViewerSpecification(EmbeddedMetadata, OMViewerSpecification):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/ViewerSpecification"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("anchor_points",)
|
|
21
|
+
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
additional_remarks=None,
|
|
25
|
+
anchor_points=None,
|
|
26
|
+
camera_position=None,
|
|
27
|
+
preferred_display_color=None,
|
|
28
|
+
id=None,
|
|
29
|
+
data=None,
|
|
30
|
+
space=None,
|
|
31
|
+
release_status=None,
|
|
32
|
+
):
|
|
33
|
+
return EmbeddedMetadata.__init__(
|
|
34
|
+
self,
|
|
35
|
+
data=data,
|
|
36
|
+
additional_remarks=additional_remarks,
|
|
37
|
+
anchor_points=anchor_points,
|
|
38
|
+
camera_position=camera_position,
|
|
39
|
+
preferred_display_color=preferred_display_color,
|
|
40
|
+
)
|