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,99 @@
|
|
|
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 TissueSampleCollection as OMTissueSampleCollection
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class TissueSampleCollection(KGObject, OMTissueSampleCollection):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/TissueSampleCollection"
|
|
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.TissueSample",
|
|
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
|
+
anatomical_locations=None,
|
|
61
|
+
biological_sexes=None,
|
|
62
|
+
has_parts=None,
|
|
63
|
+
has_study_results_in=None,
|
|
64
|
+
internal_identifier=None,
|
|
65
|
+
is_used_to_group=None,
|
|
66
|
+
lateralities=None,
|
|
67
|
+
number_of_tissue_samples=None,
|
|
68
|
+
origins=None,
|
|
69
|
+
species=None,
|
|
70
|
+
studied_states=None,
|
|
71
|
+
types=None,
|
|
72
|
+
used_in=None,
|
|
73
|
+
id=None,
|
|
74
|
+
data=None,
|
|
75
|
+
space=None,
|
|
76
|
+
release_status=None,
|
|
77
|
+
):
|
|
78
|
+
return KGObject.__init__(
|
|
79
|
+
self,
|
|
80
|
+
id=id,
|
|
81
|
+
space=space,
|
|
82
|
+
release_status=release_status,
|
|
83
|
+
data=data,
|
|
84
|
+
lookup_label=lookup_label,
|
|
85
|
+
additional_remarks=additional_remarks,
|
|
86
|
+
anatomical_locations=anatomical_locations,
|
|
87
|
+
biological_sexes=biological_sexes,
|
|
88
|
+
has_parts=has_parts,
|
|
89
|
+
has_study_results_in=has_study_results_in,
|
|
90
|
+
internal_identifier=internal_identifier,
|
|
91
|
+
is_used_to_group=is_used_to_group,
|
|
92
|
+
lateralities=lateralities,
|
|
93
|
+
number_of_tissue_samples=number_of_tissue_samples,
|
|
94
|
+
origins=origins,
|
|
95
|
+
species=species,
|
|
96
|
+
studied_states=studied_states,
|
|
97
|
+
types=types,
|
|
98
|
+
used_in=used_in,
|
|
99
|
+
)
|
|
@@ -0,0 +1,109 @@
|
|
|
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 TissueSampleCollectionState as OMTissueSampleCollectionState
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class TissueSampleCollectionState(KGObject, OMTissueSampleCollectionState):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/TissueSampleCollectionState"
|
|
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
|
+
["openminds.v4.core.TissueSampleCollectionState", "openminds.v4.core.TissueSampleState"],
|
|
24
|
+
"descendedFrom",
|
|
25
|
+
reverse="descended_from",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'descended_from'",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"is_input_to",
|
|
31
|
+
["openminds.v4.ephys.RecordingActivity", "openminds.v4.specimen_prep.TissueCulturePreparation"],
|
|
32
|
+
"input",
|
|
33
|
+
reverse="inputs",
|
|
34
|
+
multiple=True,
|
|
35
|
+
description="reverse of 'inputs'",
|
|
36
|
+
),
|
|
37
|
+
Property(
|
|
38
|
+
"is_output_of",
|
|
39
|
+
[
|
|
40
|
+
"openminds.v4.core.ProtocolExecution",
|
|
41
|
+
"openminds.v4.specimen_prep.TissueSampleSlicing",
|
|
42
|
+
"openminds.v4.stimulation.StimulationActivity",
|
|
43
|
+
],
|
|
44
|
+
"output",
|
|
45
|
+
reverse="outputs",
|
|
46
|
+
multiple=True,
|
|
47
|
+
description="reverse of 'outputs'",
|
|
48
|
+
),
|
|
49
|
+
Property(
|
|
50
|
+
"is_state_of",
|
|
51
|
+
"openminds.v4.core.TissueSampleCollection",
|
|
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
|
+
attributes=None,
|
|
74
|
+
descended_from=None,
|
|
75
|
+
has_children=None,
|
|
76
|
+
internal_identifier=None,
|
|
77
|
+
is_input_to=None,
|
|
78
|
+
is_output_of=None,
|
|
79
|
+
is_state_of=None,
|
|
80
|
+
is_used_to_group=None,
|
|
81
|
+
pathologies=None,
|
|
82
|
+
relative_time_indication=None,
|
|
83
|
+
weight=None,
|
|
84
|
+
id=None,
|
|
85
|
+
data=None,
|
|
86
|
+
space=None,
|
|
87
|
+
release_status=None,
|
|
88
|
+
):
|
|
89
|
+
return KGObject.__init__(
|
|
90
|
+
self,
|
|
91
|
+
id=id,
|
|
92
|
+
space=space,
|
|
93
|
+
release_status=release_status,
|
|
94
|
+
data=data,
|
|
95
|
+
lookup_label=lookup_label,
|
|
96
|
+
additional_remarks=additional_remarks,
|
|
97
|
+
age=age,
|
|
98
|
+
attributes=attributes,
|
|
99
|
+
descended_from=descended_from,
|
|
100
|
+
has_children=has_children,
|
|
101
|
+
internal_identifier=internal_identifier,
|
|
102
|
+
is_input_to=is_input_to,
|
|
103
|
+
is_output_of=is_output_of,
|
|
104
|
+
is_state_of=is_state_of,
|
|
105
|
+
is_used_to_group=is_used_to_group,
|
|
106
|
+
pathologies=pathologies,
|
|
107
|
+
relative_time_indication=relative_time_indication,
|
|
108
|
+
weight=weight,
|
|
109
|
+
)
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on a temporary state of a tissue sample.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import TissueSampleState as OMTissueSampleState
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class TissueSampleState(KGObject, OMTissueSampleState):
|
|
13
|
+
"""
|
|
14
|
+
Structured information on a temporary state of a tissue sample.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/TissueSampleState"
|
|
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
|
+
["openminds.v4.core.TissueSampleCollectionState", "openminds.v4.core.TissueSampleState"],
|
|
24
|
+
"descendedFrom",
|
|
25
|
+
reverse="descended_from",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'descended_from'",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"is_input_to",
|
|
31
|
+
"openminds.v4.ephys.RecordingActivity",
|
|
32
|
+
"input",
|
|
33
|
+
reverse="inputs",
|
|
34
|
+
multiple=True,
|
|
35
|
+
description="reverse of 'inputs'",
|
|
36
|
+
),
|
|
37
|
+
Property(
|
|
38
|
+
"is_output_of",
|
|
39
|
+
[
|
|
40
|
+
"openminds.v4.core.ProtocolExecution",
|
|
41
|
+
"openminds.v4.ephys.CellPatching",
|
|
42
|
+
"openminds.v4.ephys.ElectrodePlacement",
|
|
43
|
+
"openminds.v4.specimen_prep.TissueCulturePreparation",
|
|
44
|
+
"openminds.v4.specimen_prep.TissueSampleSlicing",
|
|
45
|
+
"openminds.v4.stimulation.StimulationActivity",
|
|
46
|
+
],
|
|
47
|
+
"output",
|
|
48
|
+
reverse="outputs",
|
|
49
|
+
multiple=True,
|
|
50
|
+
description="reverse of 'outputs'",
|
|
51
|
+
),
|
|
52
|
+
Property(
|
|
53
|
+
"is_state_of",
|
|
54
|
+
"openminds.v4.core.TissueSample",
|
|
55
|
+
"studiedState",
|
|
56
|
+
reverse="studied_states",
|
|
57
|
+
multiple=True,
|
|
58
|
+
description="reverse of 'studied_states'",
|
|
59
|
+
),
|
|
60
|
+
Property(
|
|
61
|
+
"is_used_to_group",
|
|
62
|
+
"openminds.v4.core.FileBundle",
|
|
63
|
+
"groupedBy",
|
|
64
|
+
reverse="grouped_by",
|
|
65
|
+
multiple=True,
|
|
66
|
+
description="reverse of 'grouped_by'",
|
|
67
|
+
),
|
|
68
|
+
Property(
|
|
69
|
+
"used_in",
|
|
70
|
+
[
|
|
71
|
+
"openminds.v4.ephys.ElectrodeArrayUsage",
|
|
72
|
+
"openminds.v4.ephys.ElectrodeUsage",
|
|
73
|
+
"openminds.v4.ephys.PipetteUsage",
|
|
74
|
+
"openminds.v4.specimen_prep.SlicingDeviceUsage",
|
|
75
|
+
],
|
|
76
|
+
"usedSpecimen",
|
|
77
|
+
reverse="used_specimen",
|
|
78
|
+
multiple=True,
|
|
79
|
+
description="reverse of 'used_specimen'",
|
|
80
|
+
),
|
|
81
|
+
]
|
|
82
|
+
existence_query_properties = ("lookup_label",)
|
|
83
|
+
|
|
84
|
+
def __init__(
|
|
85
|
+
self,
|
|
86
|
+
lookup_label=None,
|
|
87
|
+
additional_remarks=None,
|
|
88
|
+
age=None,
|
|
89
|
+
attributes=None,
|
|
90
|
+
descended_from=None,
|
|
91
|
+
has_children=None,
|
|
92
|
+
internal_identifier=None,
|
|
93
|
+
is_input_to=None,
|
|
94
|
+
is_output_of=None,
|
|
95
|
+
is_state_of=None,
|
|
96
|
+
is_used_to_group=None,
|
|
97
|
+
pathologies=None,
|
|
98
|
+
relative_time_indication=None,
|
|
99
|
+
used_in=None,
|
|
100
|
+
weight=None,
|
|
101
|
+
id=None,
|
|
102
|
+
data=None,
|
|
103
|
+
space=None,
|
|
104
|
+
release_status=None,
|
|
105
|
+
):
|
|
106
|
+
return KGObject.__init__(
|
|
107
|
+
self,
|
|
108
|
+
id=id,
|
|
109
|
+
space=space,
|
|
110
|
+
release_status=release_status,
|
|
111
|
+
data=data,
|
|
112
|
+
lookup_label=lookup_label,
|
|
113
|
+
additional_remarks=additional_remarks,
|
|
114
|
+
age=age,
|
|
115
|
+
attributes=attributes,
|
|
116
|
+
descended_from=descended_from,
|
|
117
|
+
has_children=has_children,
|
|
118
|
+
internal_identifier=internal_identifier,
|
|
119
|
+
is_input_to=is_input_to,
|
|
120
|
+
is_output_of=is_output_of,
|
|
121
|
+
is_state_of=is_state_of,
|
|
122
|
+
is_used_to_group=is_used_to_group,
|
|
123
|
+
pathologies=pathologies,
|
|
124
|
+
relative_time_indication=relative_time_indication,
|
|
125
|
+
used_in=used_in,
|
|
126
|
+
weight=weight,
|
|
127
|
+
)
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
import inspect
|
|
3
|
+
from fairgraph.kgobject import KGObject
|
|
4
|
+
from fairgraph.embedded import EmbeddedMetadata
|
|
5
|
+
|
|
6
|
+
from .activity import RecordingActivity, ElectrodePlacement, CellPatching
|
|
7
|
+
from .entity import Channel, Recording
|
|
8
|
+
from .device import ElectrodeArray, PipetteUsage, Pipette, Electrode, ElectrodeArrayUsage, ElectrodeUsage
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def list_kg_classes():
|
|
12
|
+
"""List all KG classes defined in this module"""
|
|
13
|
+
return [
|
|
14
|
+
obj
|
|
15
|
+
for name, obj in inspect.getmembers(sys.modules[__name__])
|
|
16
|
+
if inspect.isclass(obj) and issubclass(obj, KGObject) and obj.__module__.startswith(__name__)
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def list_embedded_metadata_classes():
|
|
21
|
+
"""List all embedded metadata classes defined in this module"""
|
|
22
|
+
return [
|
|
23
|
+
obj
|
|
24
|
+
for name, obj in inspect.getmembers(sys.modules[__name__])
|
|
25
|
+
if inspect.isclass(obj) and issubclass(obj, EmbeddedMetadata) and obj.__module__.startswith(__name__)
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def set_error_handling(value):
|
|
30
|
+
"""
|
|
31
|
+
Control validation for all classes in this module.
|
|
32
|
+
|
|
33
|
+
Args:
|
|
34
|
+
value (str): action to follow when there is a validation failure.
|
|
35
|
+
(e.g. if a required property is not provided).
|
|
36
|
+
Possible values: "error", "warning", "log", None
|
|
37
|
+
"""
|
|
38
|
+
for cls in list_kg_classes() + list_embedded_metadata_classes():
|
|
39
|
+
cls.set_error_handling(value)
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.ephys import CellPatching as OMCellPatching
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from datetime import datetime, time
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class CellPatching(KGObject, OMCellPatching):
|
|
16
|
+
"""
|
|
17
|
+
<description not available>
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/CellPatching"
|
|
21
|
+
default_space = "in-depth"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = []
|
|
24
|
+
existence_query_properties = ("lookup_label",)
|
|
25
|
+
|
|
26
|
+
def __init__(
|
|
27
|
+
self,
|
|
28
|
+
lookup_label=None,
|
|
29
|
+
bath_temperature=None,
|
|
30
|
+
custom_property_sets=None,
|
|
31
|
+
description=None,
|
|
32
|
+
devices=None,
|
|
33
|
+
end_time=None,
|
|
34
|
+
inputs=None,
|
|
35
|
+
is_part_of=None,
|
|
36
|
+
outputs=None,
|
|
37
|
+
performed_by=None,
|
|
38
|
+
preparation_design=None,
|
|
39
|
+
protocols=None,
|
|
40
|
+
start_time=None,
|
|
41
|
+
study_targets=None,
|
|
42
|
+
target_position=None,
|
|
43
|
+
tissue_bath_solution=None,
|
|
44
|
+
variation=None,
|
|
45
|
+
id=None,
|
|
46
|
+
data=None,
|
|
47
|
+
space=None,
|
|
48
|
+
release_status=None,
|
|
49
|
+
):
|
|
50
|
+
return KGObject.__init__(
|
|
51
|
+
self,
|
|
52
|
+
id=id,
|
|
53
|
+
space=space,
|
|
54
|
+
release_status=release_status,
|
|
55
|
+
data=data,
|
|
56
|
+
lookup_label=lookup_label,
|
|
57
|
+
bath_temperature=bath_temperature,
|
|
58
|
+
custom_property_sets=custom_property_sets,
|
|
59
|
+
description=description,
|
|
60
|
+
devices=devices,
|
|
61
|
+
end_time=end_time,
|
|
62
|
+
inputs=inputs,
|
|
63
|
+
is_part_of=is_part_of,
|
|
64
|
+
outputs=outputs,
|
|
65
|
+
performed_by=performed_by,
|
|
66
|
+
preparation_design=preparation_design,
|
|
67
|
+
protocols=protocols,
|
|
68
|
+
start_time=start_time,
|
|
69
|
+
study_targets=study_targets,
|
|
70
|
+
target_position=target_position,
|
|
71
|
+
tissue_bath_solution=tissue_bath_solution,
|
|
72
|
+
variation=variation,
|
|
73
|
+
)
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.ephys import ElectrodePlacement as OMElectrodePlacement
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from datetime import datetime, time
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class ElectrodePlacement(KGObject, OMElectrodePlacement):
|
|
16
|
+
"""
|
|
17
|
+
<description not available>
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/ElectrodePlacement"
|
|
21
|
+
default_space = "in-depth"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = []
|
|
24
|
+
existence_query_properties = ("lookup_label",)
|
|
25
|
+
|
|
26
|
+
def __init__(
|
|
27
|
+
self,
|
|
28
|
+
lookup_label=None,
|
|
29
|
+
custom_property_sets=None,
|
|
30
|
+
description=None,
|
|
31
|
+
devices=None,
|
|
32
|
+
end_time=None,
|
|
33
|
+
inputs=None,
|
|
34
|
+
is_part_of=None,
|
|
35
|
+
outputs=None,
|
|
36
|
+
performed_by=None,
|
|
37
|
+
preparation_design=None,
|
|
38
|
+
protocols=None,
|
|
39
|
+
start_time=None,
|
|
40
|
+
study_targets=None,
|
|
41
|
+
target_position=None,
|
|
42
|
+
id=None,
|
|
43
|
+
data=None,
|
|
44
|
+
space=None,
|
|
45
|
+
release_status=None,
|
|
46
|
+
):
|
|
47
|
+
return KGObject.__init__(
|
|
48
|
+
self,
|
|
49
|
+
id=id,
|
|
50
|
+
space=space,
|
|
51
|
+
release_status=release_status,
|
|
52
|
+
data=data,
|
|
53
|
+
lookup_label=lookup_label,
|
|
54
|
+
custom_property_sets=custom_property_sets,
|
|
55
|
+
description=description,
|
|
56
|
+
devices=devices,
|
|
57
|
+
end_time=end_time,
|
|
58
|
+
inputs=inputs,
|
|
59
|
+
is_part_of=is_part_of,
|
|
60
|
+
outputs=outputs,
|
|
61
|
+
performed_by=performed_by,
|
|
62
|
+
preparation_design=preparation_design,
|
|
63
|
+
protocols=protocols,
|
|
64
|
+
start_time=start_time,
|
|
65
|
+
study_targets=study_targets,
|
|
66
|
+
target_position=target_position,
|
|
67
|
+
)
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.ephys import RecordingActivity as OMRecordingActivity
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from datetime import datetime, time
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class RecordingActivity(KGObject, OMRecordingActivity):
|
|
16
|
+
"""
|
|
17
|
+
<description not available>
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/RecordingActivity"
|
|
21
|
+
default_space = "in-depth"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = []
|
|
24
|
+
existence_query_properties = ("lookup_label",)
|
|
25
|
+
|
|
26
|
+
def __init__(
|
|
27
|
+
self,
|
|
28
|
+
lookup_label=None,
|
|
29
|
+
custom_property_sets=None,
|
|
30
|
+
description=None,
|
|
31
|
+
devices=None,
|
|
32
|
+
end_time=None,
|
|
33
|
+
inputs=None,
|
|
34
|
+
internal_identifier=None,
|
|
35
|
+
is_part_of=None,
|
|
36
|
+
outputs=None,
|
|
37
|
+
performed_by=None,
|
|
38
|
+
preparation_design=None,
|
|
39
|
+
protocols=None,
|
|
40
|
+
start_time=None,
|
|
41
|
+
study_targets=None,
|
|
42
|
+
id=None,
|
|
43
|
+
data=None,
|
|
44
|
+
space=None,
|
|
45
|
+
release_status=None,
|
|
46
|
+
):
|
|
47
|
+
return KGObject.__init__(
|
|
48
|
+
self,
|
|
49
|
+
id=id,
|
|
50
|
+
space=space,
|
|
51
|
+
release_status=release_status,
|
|
52
|
+
data=data,
|
|
53
|
+
lookup_label=lookup_label,
|
|
54
|
+
custom_property_sets=custom_property_sets,
|
|
55
|
+
description=description,
|
|
56
|
+
devices=devices,
|
|
57
|
+
end_time=end_time,
|
|
58
|
+
inputs=inputs,
|
|
59
|
+
internal_identifier=internal_identifier,
|
|
60
|
+
is_part_of=is_part_of,
|
|
61
|
+
outputs=outputs,
|
|
62
|
+
performed_by=performed_by,
|
|
63
|
+
preparation_design=preparation_design,
|
|
64
|
+
protocols=protocols,
|
|
65
|
+
start_time=start_time,
|
|
66
|
+
study_targets=study_targets,
|
|
67
|
+
)
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on an electrode.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.ephys import Electrode as OMElectrode
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Electrode(KGObject, OMElectrode):
|
|
13
|
+
"""
|
|
14
|
+
Structured information on an electrode.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/Electrode"
|
|
18
|
+
default_space = "in-depth"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"is_part_of",
|
|
23
|
+
"openminds.v4.core.Setup",
|
|
24
|
+
"hasPart",
|
|
25
|
+
reverse="has_parts",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'has_parts'",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"usage",
|
|
31
|
+
"openminds.v4.ephys.ElectrodeUsage",
|
|
32
|
+
"device",
|
|
33
|
+
reverse="device",
|
|
34
|
+
multiple=True,
|
|
35
|
+
description="reverse of 'device'",
|
|
36
|
+
),
|
|
37
|
+
]
|
|
38
|
+
existence_query_properties = ("lookup_label",)
|
|
39
|
+
|
|
40
|
+
def __init__(
|
|
41
|
+
self,
|
|
42
|
+
name=None,
|
|
43
|
+
lookup_label=None,
|
|
44
|
+
conductor_material=None,
|
|
45
|
+
description=None,
|
|
46
|
+
device_type=None,
|
|
47
|
+
digital_identifier=None,
|
|
48
|
+
insulator_material=None,
|
|
49
|
+
internal_identifier=None,
|
|
50
|
+
intrinsic_resistance=None,
|
|
51
|
+
is_part_of=None,
|
|
52
|
+
manufacturers=None,
|
|
53
|
+
owners=None,
|
|
54
|
+
serial_number=None,
|
|
55
|
+
usage=None,
|
|
56
|
+
id=None,
|
|
57
|
+
data=None,
|
|
58
|
+
space=None,
|
|
59
|
+
release_status=None,
|
|
60
|
+
):
|
|
61
|
+
return KGObject.__init__(
|
|
62
|
+
self,
|
|
63
|
+
id=id,
|
|
64
|
+
space=space,
|
|
65
|
+
release_status=release_status,
|
|
66
|
+
data=data,
|
|
67
|
+
name=name,
|
|
68
|
+
lookup_label=lookup_label,
|
|
69
|
+
conductor_material=conductor_material,
|
|
70
|
+
description=description,
|
|
71
|
+
device_type=device_type,
|
|
72
|
+
digital_identifier=digital_identifier,
|
|
73
|
+
insulator_material=insulator_material,
|
|
74
|
+
internal_identifier=internal_identifier,
|
|
75
|
+
intrinsic_resistance=intrinsic_resistance,
|
|
76
|
+
is_part_of=is_part_of,
|
|
77
|
+
manufacturers=manufacturers,
|
|
78
|
+
owners=owners,
|
|
79
|
+
serial_number=serial_number,
|
|
80
|
+
usage=usage,
|
|
81
|
+
)
|