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,76 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on a protocol execution.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import ProtocolExecution as OMProtocolExecution
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from datetime import datetime, time
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class ProtocolExecution(KGObject, OMProtocolExecution):
|
|
16
|
+
"""
|
|
17
|
+
Structured information on a protocol execution.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/ProtocolExecution"
|
|
21
|
+
default_space = "dataset"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = [
|
|
24
|
+
Property(
|
|
25
|
+
"based_on_protocol_execution",
|
|
26
|
+
["openminds.v4.sands.AtlasAnnotation", "openminds.v4.sands.CustomAnnotation"],
|
|
27
|
+
"criteria",
|
|
28
|
+
reverse="criteria",
|
|
29
|
+
multiple=True,
|
|
30
|
+
description="reverse of 'criteria'",
|
|
31
|
+
),
|
|
32
|
+
]
|
|
33
|
+
existence_query_properties = ("lookup_label",)
|
|
34
|
+
|
|
35
|
+
def __init__(
|
|
36
|
+
self,
|
|
37
|
+
lookup_label=None,
|
|
38
|
+
based_on_protocol_execution=None,
|
|
39
|
+
behavioral_protocols=None,
|
|
40
|
+
custom_property_sets=None,
|
|
41
|
+
description=None,
|
|
42
|
+
end_time=None,
|
|
43
|
+
inputs=None,
|
|
44
|
+
is_part_of=None,
|
|
45
|
+
outputs=None,
|
|
46
|
+
performed_by=None,
|
|
47
|
+
preparation_design=None,
|
|
48
|
+
protocols=None,
|
|
49
|
+
start_time=None,
|
|
50
|
+
study_targets=None,
|
|
51
|
+
id=None,
|
|
52
|
+
data=None,
|
|
53
|
+
space=None,
|
|
54
|
+
release_status=None,
|
|
55
|
+
):
|
|
56
|
+
return KGObject.__init__(
|
|
57
|
+
self,
|
|
58
|
+
id=id,
|
|
59
|
+
space=space,
|
|
60
|
+
release_status=release_status,
|
|
61
|
+
data=data,
|
|
62
|
+
lookup_label=lookup_label,
|
|
63
|
+
based_on_protocol_execution=based_on_protocol_execution,
|
|
64
|
+
behavioral_protocols=behavioral_protocols,
|
|
65
|
+
custom_property_sets=custom_property_sets,
|
|
66
|
+
description=description,
|
|
67
|
+
end_time=end_time,
|
|
68
|
+
inputs=inputs,
|
|
69
|
+
is_part_of=is_part_of,
|
|
70
|
+
outputs=outputs,
|
|
71
|
+
performed_by=performed_by,
|
|
72
|
+
preparation_design=preparation_design,
|
|
73
|
+
protocols=protocols,
|
|
74
|
+
start_time=start_time,
|
|
75
|
+
study_targets=study_targets,
|
|
76
|
+
)
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import Strain as OMStrain
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Strain(KGObject, OMStrain):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/Strain"
|
|
18
|
+
default_space = "dataset"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"is_background_strain_of",
|
|
23
|
+
"openminds.v4.core.Strain",
|
|
24
|
+
"backgroundStrain",
|
|
25
|
+
reverse="background_strains",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'background_strains'",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"is_species_of",
|
|
31
|
+
[
|
|
32
|
+
"openminds.v4.core.Subject",
|
|
33
|
+
"openminds.v4.core.SubjectGroup",
|
|
34
|
+
"openminds.v4.core.TissueSample",
|
|
35
|
+
"openminds.v4.core.TissueSampleCollection",
|
|
36
|
+
],
|
|
37
|
+
"species",
|
|
38
|
+
reverse="species",
|
|
39
|
+
multiple=True,
|
|
40
|
+
description="reverse of 'species'",
|
|
41
|
+
),
|
|
42
|
+
]
|
|
43
|
+
existence_query_properties = ("genetic_strain_type", "name", "species")
|
|
44
|
+
|
|
45
|
+
def __init__(
|
|
46
|
+
self,
|
|
47
|
+
name=None,
|
|
48
|
+
alternate_identifiers=None,
|
|
49
|
+
background_strains=None,
|
|
50
|
+
breeding_type=None,
|
|
51
|
+
description=None,
|
|
52
|
+
digital_identifier=None,
|
|
53
|
+
disease_models=None,
|
|
54
|
+
genetic_strain_type=None,
|
|
55
|
+
is_background_strain_of=None,
|
|
56
|
+
is_species_of=None,
|
|
57
|
+
laboratory_code=None,
|
|
58
|
+
ontology_identifiers=None,
|
|
59
|
+
phenotype=None,
|
|
60
|
+
species=None,
|
|
61
|
+
stock_number=None,
|
|
62
|
+
synonyms=None,
|
|
63
|
+
id=None,
|
|
64
|
+
data=None,
|
|
65
|
+
space=None,
|
|
66
|
+
release_status=None,
|
|
67
|
+
):
|
|
68
|
+
return KGObject.__init__(
|
|
69
|
+
self,
|
|
70
|
+
id=id,
|
|
71
|
+
space=space,
|
|
72
|
+
release_status=release_status,
|
|
73
|
+
data=data,
|
|
74
|
+
name=name,
|
|
75
|
+
alternate_identifiers=alternate_identifiers,
|
|
76
|
+
background_strains=background_strains,
|
|
77
|
+
breeding_type=breeding_type,
|
|
78
|
+
description=description,
|
|
79
|
+
digital_identifier=digital_identifier,
|
|
80
|
+
disease_models=disease_models,
|
|
81
|
+
genetic_strain_type=genetic_strain_type,
|
|
82
|
+
is_background_strain_of=is_background_strain_of,
|
|
83
|
+
is_species_of=is_species_of,
|
|
84
|
+
laboratory_code=laboratory_code,
|
|
85
|
+
ontology_identifiers=ontology_identifiers,
|
|
86
|
+
phenotype=phenotype,
|
|
87
|
+
species=species,
|
|
88
|
+
stock_number=stock_number,
|
|
89
|
+
synonyms=synonyms,
|
|
90
|
+
)
|
|
@@ -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.core import StringProperty as OMStringProperty
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class StringProperty(EmbeddedMetadata, OMStringProperty):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/StringProperty"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("name", "value")
|
|
21
|
+
|
|
22
|
+
def __init__(self, name=None, value=None, id=None, data=None, space=None, release_status=None):
|
|
23
|
+
return EmbeddedMetadata.__init__(self, data=data, name=name, value=value)
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on a subject.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import Subject as OMSubject
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Subject(KGObject, OMSubject):
|
|
13
|
+
"""
|
|
14
|
+
Structured information on a subject.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/Subject"
|
|
18
|
+
default_space = "dataset"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"has_study_results_in",
|
|
23
|
+
"openminds.v4.core.DatasetVersion",
|
|
24
|
+
"studiedSpecimen",
|
|
25
|
+
reverse="studied_specimens",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'studied_specimens'",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"is_used_to_group",
|
|
31
|
+
"openminds.v4.core.FileBundle",
|
|
32
|
+
"groupedBy",
|
|
33
|
+
reverse="grouped_by",
|
|
34
|
+
multiple=True,
|
|
35
|
+
description="reverse of 'grouped_by'",
|
|
36
|
+
),
|
|
37
|
+
Property(
|
|
38
|
+
"used_in",
|
|
39
|
+
["openminds.v4.sands.BrainAtlasVersion", "openminds.v4.sands.CommonCoordinateSpaceVersion"],
|
|
40
|
+
"usedSpecimen",
|
|
41
|
+
reverse="used_specimens",
|
|
42
|
+
multiple=True,
|
|
43
|
+
description="reverse of 'used_specimens'",
|
|
44
|
+
),
|
|
45
|
+
]
|
|
46
|
+
existence_query_properties = ("lookup_label",)
|
|
47
|
+
|
|
48
|
+
def __init__(
|
|
49
|
+
self,
|
|
50
|
+
lookup_label=None,
|
|
51
|
+
biological_sex=None,
|
|
52
|
+
has_study_results_in=None,
|
|
53
|
+
internal_identifier=None,
|
|
54
|
+
is_part_of=None,
|
|
55
|
+
is_used_to_group=None,
|
|
56
|
+
species=None,
|
|
57
|
+
studied_states=None,
|
|
58
|
+
used_in=None,
|
|
59
|
+
id=None,
|
|
60
|
+
data=None,
|
|
61
|
+
space=None,
|
|
62
|
+
release_status=None,
|
|
63
|
+
):
|
|
64
|
+
return KGObject.__init__(
|
|
65
|
+
self,
|
|
66
|
+
id=id,
|
|
67
|
+
space=space,
|
|
68
|
+
release_status=release_status,
|
|
69
|
+
data=data,
|
|
70
|
+
lookup_label=lookup_label,
|
|
71
|
+
biological_sex=biological_sex,
|
|
72
|
+
has_study_results_in=has_study_results_in,
|
|
73
|
+
internal_identifier=internal_identifier,
|
|
74
|
+
is_part_of=is_part_of,
|
|
75
|
+
is_used_to_group=is_used_to_group,
|
|
76
|
+
species=species,
|
|
77
|
+
studied_states=studied_states,
|
|
78
|
+
used_in=used_in,
|
|
79
|
+
)
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import SubjectGroup as OMSubjectGroup
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class SubjectGroup(KGObject, OMSubjectGroup):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/SubjectGroup"
|
|
18
|
+
default_space = "dataset"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"has_parts",
|
|
23
|
+
"openminds.v4.core.Subject",
|
|
24
|
+
"isPartOf",
|
|
25
|
+
reverse="is_part_of",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'is_part_of'",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"has_study_results_in",
|
|
31
|
+
"openminds.v4.core.DatasetVersion",
|
|
32
|
+
"studiedSpecimen",
|
|
33
|
+
reverse="studied_specimens",
|
|
34
|
+
multiple=True,
|
|
35
|
+
description="reverse of 'studied_specimens'",
|
|
36
|
+
),
|
|
37
|
+
Property(
|
|
38
|
+
"is_used_to_group",
|
|
39
|
+
"openminds.v4.core.FileBundle",
|
|
40
|
+
"groupedBy",
|
|
41
|
+
reverse="grouped_by",
|
|
42
|
+
multiple=True,
|
|
43
|
+
description="reverse of 'grouped_by'",
|
|
44
|
+
),
|
|
45
|
+
Property(
|
|
46
|
+
"used_in",
|
|
47
|
+
["openminds.v4.sands.BrainAtlasVersion", "openminds.v4.sands.CommonCoordinateSpaceVersion"],
|
|
48
|
+
"usedSpecimen",
|
|
49
|
+
reverse="used_specimens",
|
|
50
|
+
multiple=True,
|
|
51
|
+
description="reverse of 'used_specimens'",
|
|
52
|
+
),
|
|
53
|
+
]
|
|
54
|
+
existence_query_properties = ("lookup_label",)
|
|
55
|
+
|
|
56
|
+
def __init__(
|
|
57
|
+
self,
|
|
58
|
+
lookup_label=None,
|
|
59
|
+
additional_remarks=None,
|
|
60
|
+
biological_sexes=None,
|
|
61
|
+
has_parts=None,
|
|
62
|
+
has_study_results_in=None,
|
|
63
|
+
internal_identifier=None,
|
|
64
|
+
is_used_to_group=None,
|
|
65
|
+
number_of_subjects=None,
|
|
66
|
+
species=None,
|
|
67
|
+
studied_states=None,
|
|
68
|
+
used_in=None,
|
|
69
|
+
id=None,
|
|
70
|
+
data=None,
|
|
71
|
+
space=None,
|
|
72
|
+
release_status=None,
|
|
73
|
+
):
|
|
74
|
+
return KGObject.__init__(
|
|
75
|
+
self,
|
|
76
|
+
id=id,
|
|
77
|
+
space=space,
|
|
78
|
+
release_status=release_status,
|
|
79
|
+
data=data,
|
|
80
|
+
lookup_label=lookup_label,
|
|
81
|
+
additional_remarks=additional_remarks,
|
|
82
|
+
biological_sexes=biological_sexes,
|
|
83
|
+
has_parts=has_parts,
|
|
84
|
+
has_study_results_in=has_study_results_in,
|
|
85
|
+
internal_identifier=internal_identifier,
|
|
86
|
+
is_used_to_group=is_used_to_group,
|
|
87
|
+
number_of_subjects=number_of_subjects,
|
|
88
|
+
species=species,
|
|
89
|
+
studied_states=studied_states,
|
|
90
|
+
used_in=used_in,
|
|
91
|
+
)
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import SubjectGroupState as OMSubjectGroupState
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class SubjectGroupState(KGObject, OMSubjectGroupState):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/SubjectGroupState"
|
|
18
|
+
default_space = "dataset"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"has_children",
|
|
23
|
+
[
|
|
24
|
+
"openminds.v4.core.SubjectGroupState",
|
|
25
|
+
"openminds.v4.core.TissueSampleCollectionState",
|
|
26
|
+
"openminds.v4.core.TissueSampleState",
|
|
27
|
+
],
|
|
28
|
+
"descendedFrom",
|
|
29
|
+
reverse="descended_from",
|
|
30
|
+
multiple=True,
|
|
31
|
+
description="reverse of 'descended_from'",
|
|
32
|
+
),
|
|
33
|
+
Property(
|
|
34
|
+
"is_input_to",
|
|
35
|
+
["openminds.v4.ephys.RecordingActivity", "openminds.v4.specimen_prep.TissueCulturePreparation"],
|
|
36
|
+
"input",
|
|
37
|
+
reverse="inputs",
|
|
38
|
+
multiple=True,
|
|
39
|
+
description="reverse of 'inputs'",
|
|
40
|
+
),
|
|
41
|
+
Property(
|
|
42
|
+
"is_output_of",
|
|
43
|
+
["openminds.v4.core.ProtocolExecution", "openminds.v4.stimulation.StimulationActivity"],
|
|
44
|
+
"output",
|
|
45
|
+
reverse="outputs",
|
|
46
|
+
multiple=True,
|
|
47
|
+
description="reverse of 'outputs'",
|
|
48
|
+
),
|
|
49
|
+
Property(
|
|
50
|
+
"is_state_of",
|
|
51
|
+
"openminds.v4.core.SubjectGroup",
|
|
52
|
+
"studiedState",
|
|
53
|
+
reverse="studied_states",
|
|
54
|
+
multiple=True,
|
|
55
|
+
description="reverse of 'studied_states'",
|
|
56
|
+
),
|
|
57
|
+
Property(
|
|
58
|
+
"is_used_to_group",
|
|
59
|
+
"openminds.v4.core.FileBundle",
|
|
60
|
+
"groupedBy",
|
|
61
|
+
reverse="grouped_by",
|
|
62
|
+
multiple=True,
|
|
63
|
+
description="reverse of 'grouped_by'",
|
|
64
|
+
),
|
|
65
|
+
]
|
|
66
|
+
existence_query_properties = ("lookup_label",)
|
|
67
|
+
|
|
68
|
+
def __init__(
|
|
69
|
+
self,
|
|
70
|
+
lookup_label=None,
|
|
71
|
+
additional_remarks=None,
|
|
72
|
+
age=None,
|
|
73
|
+
age_categories=None,
|
|
74
|
+
attributes=None,
|
|
75
|
+
descended_from=None,
|
|
76
|
+
handedness=None,
|
|
77
|
+
has_children=None,
|
|
78
|
+
internal_identifier=None,
|
|
79
|
+
is_input_to=None,
|
|
80
|
+
is_output_of=None,
|
|
81
|
+
is_state_of=None,
|
|
82
|
+
is_used_to_group=None,
|
|
83
|
+
pathologies=None,
|
|
84
|
+
relative_time_indication=None,
|
|
85
|
+
weight=None,
|
|
86
|
+
id=None,
|
|
87
|
+
data=None,
|
|
88
|
+
space=None,
|
|
89
|
+
release_status=None,
|
|
90
|
+
):
|
|
91
|
+
return KGObject.__init__(
|
|
92
|
+
self,
|
|
93
|
+
id=id,
|
|
94
|
+
space=space,
|
|
95
|
+
release_status=release_status,
|
|
96
|
+
data=data,
|
|
97
|
+
lookup_label=lookup_label,
|
|
98
|
+
additional_remarks=additional_remarks,
|
|
99
|
+
age=age,
|
|
100
|
+
age_categories=age_categories,
|
|
101
|
+
attributes=attributes,
|
|
102
|
+
descended_from=descended_from,
|
|
103
|
+
handedness=handedness,
|
|
104
|
+
has_children=has_children,
|
|
105
|
+
internal_identifier=internal_identifier,
|
|
106
|
+
is_input_to=is_input_to,
|
|
107
|
+
is_output_of=is_output_of,
|
|
108
|
+
is_state_of=is_state_of,
|
|
109
|
+
is_used_to_group=is_used_to_group,
|
|
110
|
+
pathologies=pathologies,
|
|
111
|
+
relative_time_indication=relative_time_indication,
|
|
112
|
+
weight=weight,
|
|
113
|
+
)
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on a temporary state of a subject.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import SubjectState as OMSubjectState
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class SubjectState(KGObject, OMSubjectState):
|
|
13
|
+
"""
|
|
14
|
+
Structured information on a temporary state of a subject.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/SubjectState"
|
|
18
|
+
default_space = "dataset"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"has_children",
|
|
23
|
+
[
|
|
24
|
+
"openminds.v4.core.SubjectState",
|
|
25
|
+
"openminds.v4.core.TissueSampleCollectionState",
|
|
26
|
+
"openminds.v4.core.TissueSampleState",
|
|
27
|
+
],
|
|
28
|
+
"descendedFrom",
|
|
29
|
+
reverse="descended_from",
|
|
30
|
+
multiple=True,
|
|
31
|
+
description="reverse of 'descended_from'",
|
|
32
|
+
),
|
|
33
|
+
Property(
|
|
34
|
+
"is_input_to",
|
|
35
|
+
[
|
|
36
|
+
"openminds.v4.ephys.RecordingActivity",
|
|
37
|
+
"openminds.v4.specimen_prep.TissueCulturePreparation",
|
|
38
|
+
"openminds.v4.specimen_prep.TissueSampleSlicing",
|
|
39
|
+
],
|
|
40
|
+
"input",
|
|
41
|
+
reverse="inputs",
|
|
42
|
+
multiple=True,
|
|
43
|
+
description="reverse of 'inputs'",
|
|
44
|
+
),
|
|
45
|
+
Property(
|
|
46
|
+
"is_output_of",
|
|
47
|
+
[
|
|
48
|
+
"openminds.v4.core.ProtocolExecution",
|
|
49
|
+
"openminds.v4.ephys.CellPatching",
|
|
50
|
+
"openminds.v4.ephys.ElectrodePlacement",
|
|
51
|
+
"openminds.v4.specimen_prep.CranialWindowPreparation",
|
|
52
|
+
"openminds.v4.stimulation.StimulationActivity",
|
|
53
|
+
],
|
|
54
|
+
"output",
|
|
55
|
+
reverse="outputs",
|
|
56
|
+
multiple=True,
|
|
57
|
+
description="reverse of 'outputs'",
|
|
58
|
+
),
|
|
59
|
+
Property(
|
|
60
|
+
"is_state_of",
|
|
61
|
+
"openminds.v4.core.Subject",
|
|
62
|
+
"studiedState",
|
|
63
|
+
reverse="studied_states",
|
|
64
|
+
multiple=True,
|
|
65
|
+
description="reverse of 'studied_states'",
|
|
66
|
+
),
|
|
67
|
+
Property(
|
|
68
|
+
"is_used_to_group",
|
|
69
|
+
"openminds.v4.core.FileBundle",
|
|
70
|
+
"groupedBy",
|
|
71
|
+
reverse="grouped_by",
|
|
72
|
+
multiple=True,
|
|
73
|
+
description="reverse of 'grouped_by'",
|
|
74
|
+
),
|
|
75
|
+
Property(
|
|
76
|
+
"used_in",
|
|
77
|
+
[
|
|
78
|
+
"openminds.v4.ephys.ElectrodeArrayUsage",
|
|
79
|
+
"openminds.v4.ephys.ElectrodeUsage",
|
|
80
|
+
"openminds.v4.ephys.PipetteUsage",
|
|
81
|
+
"openminds.v4.specimen_prep.SlicingDeviceUsage",
|
|
82
|
+
],
|
|
83
|
+
"usedSpecimen",
|
|
84
|
+
reverse="used_specimen",
|
|
85
|
+
multiple=True,
|
|
86
|
+
description="reverse of 'used_specimen'",
|
|
87
|
+
),
|
|
88
|
+
]
|
|
89
|
+
existence_query_properties = ("lookup_label",)
|
|
90
|
+
|
|
91
|
+
def __init__(
|
|
92
|
+
self,
|
|
93
|
+
lookup_label=None,
|
|
94
|
+
additional_remarks=None,
|
|
95
|
+
age=None,
|
|
96
|
+
age_category=None,
|
|
97
|
+
attributes=None,
|
|
98
|
+
descended_from=None,
|
|
99
|
+
handedness=None,
|
|
100
|
+
has_children=None,
|
|
101
|
+
internal_identifier=None,
|
|
102
|
+
is_input_to=None,
|
|
103
|
+
is_output_of=None,
|
|
104
|
+
is_state_of=None,
|
|
105
|
+
is_used_to_group=None,
|
|
106
|
+
pathologies=None,
|
|
107
|
+
relative_time_indication=None,
|
|
108
|
+
used_in=None,
|
|
109
|
+
weight=None,
|
|
110
|
+
id=None,
|
|
111
|
+
data=None,
|
|
112
|
+
space=None,
|
|
113
|
+
release_status=None,
|
|
114
|
+
):
|
|
115
|
+
return KGObject.__init__(
|
|
116
|
+
self,
|
|
117
|
+
id=id,
|
|
118
|
+
space=space,
|
|
119
|
+
release_status=release_status,
|
|
120
|
+
data=data,
|
|
121
|
+
lookup_label=lookup_label,
|
|
122
|
+
additional_remarks=additional_remarks,
|
|
123
|
+
age=age,
|
|
124
|
+
age_category=age_category,
|
|
125
|
+
attributes=attributes,
|
|
126
|
+
descended_from=descended_from,
|
|
127
|
+
handedness=handedness,
|
|
128
|
+
has_children=has_children,
|
|
129
|
+
internal_identifier=internal_identifier,
|
|
130
|
+
is_input_to=is_input_to,
|
|
131
|
+
is_output_of=is_output_of,
|
|
132
|
+
is_state_of=is_state_of,
|
|
133
|
+
is_used_to_group=is_used_to_group,
|
|
134
|
+
pathologies=pathologies,
|
|
135
|
+
relative_time_indication=relative_time_indication,
|
|
136
|
+
used_in=used_in,
|
|
137
|
+
weight=weight,
|
|
138
|
+
)
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on a tissue sample.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import TissueSample as OMTissueSample
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class TissueSample(KGObject, OMTissueSample):
|
|
13
|
+
"""
|
|
14
|
+
Structured information on a tissue sample.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/TissueSample"
|
|
18
|
+
default_space = "dataset"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"has_study_results_in",
|
|
23
|
+
"openminds.v4.core.DatasetVersion",
|
|
24
|
+
"studiedSpecimen",
|
|
25
|
+
reverse="studied_specimens",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'studied_specimens'",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"is_used_to_group",
|
|
31
|
+
"openminds.v4.core.FileBundle",
|
|
32
|
+
"groupedBy",
|
|
33
|
+
reverse="grouped_by",
|
|
34
|
+
multiple=True,
|
|
35
|
+
description="reverse of 'grouped_by'",
|
|
36
|
+
),
|
|
37
|
+
Property(
|
|
38
|
+
"used_in",
|
|
39
|
+
["openminds.v4.sands.BrainAtlasVersion", "openminds.v4.sands.CommonCoordinateSpaceVersion"],
|
|
40
|
+
"usedSpecimen",
|
|
41
|
+
reverse="used_specimens",
|
|
42
|
+
multiple=True,
|
|
43
|
+
description="reverse of 'used_specimens'",
|
|
44
|
+
),
|
|
45
|
+
]
|
|
46
|
+
existence_query_properties = ("lookup_label",)
|
|
47
|
+
|
|
48
|
+
def __init__(
|
|
49
|
+
self,
|
|
50
|
+
lookup_label=None,
|
|
51
|
+
anatomical_locations=None,
|
|
52
|
+
biological_sex=None,
|
|
53
|
+
has_study_results_in=None,
|
|
54
|
+
internal_identifier=None,
|
|
55
|
+
is_part_of=None,
|
|
56
|
+
is_used_to_group=None,
|
|
57
|
+
lateralities=None,
|
|
58
|
+
origin=None,
|
|
59
|
+
species=None,
|
|
60
|
+
studied_states=None,
|
|
61
|
+
type=None,
|
|
62
|
+
used_in=None,
|
|
63
|
+
id=None,
|
|
64
|
+
data=None,
|
|
65
|
+
space=None,
|
|
66
|
+
release_status=None,
|
|
67
|
+
):
|
|
68
|
+
return KGObject.__init__(
|
|
69
|
+
self,
|
|
70
|
+
id=id,
|
|
71
|
+
space=space,
|
|
72
|
+
release_status=release_status,
|
|
73
|
+
data=data,
|
|
74
|
+
lookup_label=lookup_label,
|
|
75
|
+
anatomical_locations=anatomical_locations,
|
|
76
|
+
biological_sex=biological_sex,
|
|
77
|
+
has_study_results_in=has_study_results_in,
|
|
78
|
+
internal_identifier=internal_identifier,
|
|
79
|
+
is_part_of=is_part_of,
|
|
80
|
+
is_used_to_group=is_used_to_group,
|
|
81
|
+
lateralities=lateralities,
|
|
82
|
+
origin=origin,
|
|
83
|
+
species=species,
|
|
84
|
+
studied_states=studied_states,
|
|
85
|
+
type=type,
|
|
86
|
+
used_in=used_in,
|
|
87
|
+
)
|