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,55 @@
|
|
|
1
|
+
"""
|
|
2
|
+
A persistent identifier for a research resource provided by the Resource Identification Initiative.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import RRID as OMRRID
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class RRID(KGObject, OMRRID):
|
|
13
|
+
"""
|
|
14
|
+
A persistent identifier for a research resource provided by the Resource Identification Initiative.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/RRID"
|
|
18
|
+
default_space = "common"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"identifies",
|
|
23
|
+
[
|
|
24
|
+
"openminds.v4.chemicals.ProductSource",
|
|
25
|
+
"openminds.v4.core.Organization",
|
|
26
|
+
"openminds.v4.core.Software",
|
|
27
|
+
"openminds.v4.core.SoftwareVersion",
|
|
28
|
+
"openminds.v4.core.Strain",
|
|
29
|
+
"openminds.v4.ephys.Electrode",
|
|
30
|
+
"openminds.v4.ephys.ElectrodeArray",
|
|
31
|
+
"openminds.v4.ephys.Pipette",
|
|
32
|
+
"openminds.v4.sands.BrainAtlas",
|
|
33
|
+
"openminds.v4.sands.BrainAtlasVersion",
|
|
34
|
+
"openminds.v4.sands.CommonCoordinateSpace",
|
|
35
|
+
"openminds.v4.sands.CommonCoordinateSpaceVersion",
|
|
36
|
+
"openminds.v4.specimen_prep.SlicingDevice",
|
|
37
|
+
],
|
|
38
|
+
"digitalIdentifier",
|
|
39
|
+
reverse="digital_identifier",
|
|
40
|
+
multiple=True,
|
|
41
|
+
description="reverse of 'digital_identifier'",
|
|
42
|
+
),
|
|
43
|
+
]
|
|
44
|
+
existence_query_properties = ("identifier",)
|
|
45
|
+
|
|
46
|
+
def __init__(self, identifier=None, identifies=None, id=None, data=None, space=None, release_status=None):
|
|
47
|
+
return KGObject.__init__(
|
|
48
|
+
self,
|
|
49
|
+
id=id,
|
|
50
|
+
space=space,
|
|
51
|
+
release_status=release_status,
|
|
52
|
+
data=data,
|
|
53
|
+
identifier=identifier,
|
|
54
|
+
identifies=identifies,
|
|
55
|
+
)
|
|
@@ -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 StockNumber as OMStockNumber
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class StockNumber(EmbeddedMetadata, OMStockNumber):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/StockNumber"
|
|
18
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
19
|
+
reverse_properties = []
|
|
20
|
+
existence_query_properties = ("identifier", "vendor")
|
|
21
|
+
|
|
22
|
+
def __init__(self, identifier=None, vendor=None, id=None, data=None, space=None, release_status=None):
|
|
23
|
+
return EmbeddedMetadata.__init__(self, data=data, identifier=identifier, vendor=vendor)
|
|
@@ -0,0 +1,48 @@
|
|
|
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 SWHID as OMSWHID
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class SWHID(KGObject, OMSWHID):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/SWHID"
|
|
18
|
+
default_space = "software"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"identifies",
|
|
23
|
+
[
|
|
24
|
+
"openminds.v4.core.MetaDataModel",
|
|
25
|
+
"openminds.v4.core.MetaDataModelVersion",
|
|
26
|
+
"openminds.v4.core.Model",
|
|
27
|
+
"openminds.v4.core.ModelVersion",
|
|
28
|
+
"openminds.v4.core.Software",
|
|
29
|
+
"openminds.v4.core.SoftwareVersion",
|
|
30
|
+
],
|
|
31
|
+
"digitalIdentifier",
|
|
32
|
+
reverse="digital_identifier",
|
|
33
|
+
multiple=True,
|
|
34
|
+
description="reverse of 'digital_identifier'",
|
|
35
|
+
),
|
|
36
|
+
]
|
|
37
|
+
existence_query_properties = ("identifier",)
|
|
38
|
+
|
|
39
|
+
def __init__(self, identifier=None, identifies=None, id=None, data=None, space=None, release_status=None):
|
|
40
|
+
return KGObject.__init__(
|
|
41
|
+
self,
|
|
42
|
+
id=id,
|
|
43
|
+
space=space,
|
|
44
|
+
release_status=release_status,
|
|
45
|
+
data=data,
|
|
46
|
+
identifier=identifier,
|
|
47
|
+
identifies=identifies,
|
|
48
|
+
)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
from .comment import Comment
|
|
2
|
+
from .funding import Funding
|
|
3
|
+
from .quantitative_value import QuantitativeValue
|
|
4
|
+
from .quantitative_value_array import QuantitativeValueArray
|
|
5
|
+
from .quantitative_value_range import QuantitativeValueRange
|
|
6
|
+
from .research_product_group import ResearchProductGroup
|
|
7
|
+
from .web_resource import WebResource
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information about a short text expressing an opinion on, or giving information about some entity.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import Comment as OMComment
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from datetime import datetime
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Comment(KGObject, OMComment):
|
|
16
|
+
"""
|
|
17
|
+
Structured information about a short text expressing an opinion on, or giving information about some entity.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/Comment"
|
|
21
|
+
default_space = "common"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = []
|
|
24
|
+
existence_query_properties = ("about", "comment", "commenter", "timestamp")
|
|
25
|
+
|
|
26
|
+
def __init__(
|
|
27
|
+
self,
|
|
28
|
+
about=None,
|
|
29
|
+
comment=None,
|
|
30
|
+
commenter=None,
|
|
31
|
+
timestamp=None,
|
|
32
|
+
id=None,
|
|
33
|
+
data=None,
|
|
34
|
+
space=None,
|
|
35
|
+
release_status=None,
|
|
36
|
+
):
|
|
37
|
+
return KGObject.__init__(
|
|
38
|
+
self,
|
|
39
|
+
id=id,
|
|
40
|
+
space=space,
|
|
41
|
+
release_status=release_status,
|
|
42
|
+
data=data,
|
|
43
|
+
about=about,
|
|
44
|
+
comment=comment,
|
|
45
|
+
commenter=commenter,
|
|
46
|
+
timestamp=timestamp,
|
|
47
|
+
)
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on used funding.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import Funding as OMFunding
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Funding(KGObject, OMFunding):
|
|
13
|
+
"""
|
|
14
|
+
Structured information on used funding.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/Funding"
|
|
18
|
+
default_space = "common"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"funded",
|
|
23
|
+
[
|
|
24
|
+
"openminds.v4.computation.ValidationTestVersion",
|
|
25
|
+
"openminds.v4.computation.WorkflowRecipeVersion",
|
|
26
|
+
"openminds.v4.core.DatasetVersion",
|
|
27
|
+
"openminds.v4.core.MetaDataModelVersion",
|
|
28
|
+
"openminds.v4.core.ModelVersion",
|
|
29
|
+
"openminds.v4.core.SoftwareVersion",
|
|
30
|
+
"openminds.v4.core.WebServiceVersion",
|
|
31
|
+
"openminds.v4.publications.Book",
|
|
32
|
+
"openminds.v4.publications.Chapter",
|
|
33
|
+
"openminds.v4.publications.LearningResource",
|
|
34
|
+
"openminds.v4.publications.LivePaperVersion",
|
|
35
|
+
"openminds.v4.publications.ScholarlyArticle",
|
|
36
|
+
"openminds.v4.sands.BrainAtlasVersion",
|
|
37
|
+
"openminds.v4.sands.CommonCoordinateSpaceVersion",
|
|
38
|
+
],
|
|
39
|
+
"funding",
|
|
40
|
+
reverse="funding",
|
|
41
|
+
multiple=True,
|
|
42
|
+
description="reverse of 'funding'",
|
|
43
|
+
),
|
|
44
|
+
]
|
|
45
|
+
existence_query_properties = ("funder",)
|
|
46
|
+
|
|
47
|
+
def __init__(
|
|
48
|
+
self,
|
|
49
|
+
acknowledgement=None,
|
|
50
|
+
award_number=None,
|
|
51
|
+
award_title=None,
|
|
52
|
+
funded=None,
|
|
53
|
+
funder=None,
|
|
54
|
+
id=None,
|
|
55
|
+
data=None,
|
|
56
|
+
space=None,
|
|
57
|
+
release_status=None,
|
|
58
|
+
):
|
|
59
|
+
return KGObject.__init__(
|
|
60
|
+
self,
|
|
61
|
+
id=id,
|
|
62
|
+
space=space,
|
|
63
|
+
release_status=release_status,
|
|
64
|
+
data=data,
|
|
65
|
+
acknowledgement=acknowledgement,
|
|
66
|
+
award_number=award_number,
|
|
67
|
+
award_title=award_title,
|
|
68
|
+
funded=funded,
|
|
69
|
+
funder=funder,
|
|
70
|
+
)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on a quantitative value.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import QuantitativeValue as OMQuantitativeValue
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from numbers import Real
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class QuantitativeValue(EmbeddedMetadata, OMQuantitativeValue):
|
|
16
|
+
"""
|
|
17
|
+
Structured information on a quantitative value.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/QuantitativeValue"
|
|
21
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
22
|
+
reverse_properties = []
|
|
23
|
+
existence_query_properties = ("value", "unit", "uncertainties")
|
|
24
|
+
|
|
25
|
+
def __init__(
|
|
26
|
+
self,
|
|
27
|
+
type_of_uncertainty=None,
|
|
28
|
+
uncertainties=None,
|
|
29
|
+
unit=None,
|
|
30
|
+
value=None,
|
|
31
|
+
id=None,
|
|
32
|
+
data=None,
|
|
33
|
+
space=None,
|
|
34
|
+
release_status=None,
|
|
35
|
+
):
|
|
36
|
+
return EmbeddedMetadata.__init__(
|
|
37
|
+
self,
|
|
38
|
+
data=data,
|
|
39
|
+
type_of_uncertainty=type_of_uncertainty,
|
|
40
|
+
uncertainties=uncertainties,
|
|
41
|
+
unit=unit,
|
|
42
|
+
value=value,
|
|
43
|
+
)
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"""
|
|
2
|
+
A representation of an array of quantitative values, optionally with uncertainties.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import QuantitativeValueArray as OMQuantitativeValueArray
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from numbers import Real
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class QuantitativeValueArray(KGObject, OMQuantitativeValueArray):
|
|
16
|
+
"""
|
|
17
|
+
A representation of an array of quantitative values, optionally with uncertainties.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/QuantitativeValueArray"
|
|
21
|
+
default_space = "dataset"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = []
|
|
24
|
+
existence_query_properties = ("values",)
|
|
25
|
+
|
|
26
|
+
def __init__(
|
|
27
|
+
self,
|
|
28
|
+
negative_uncertainties=None,
|
|
29
|
+
positive_uncertainties=None,
|
|
30
|
+
type_of_uncertainty=None,
|
|
31
|
+
unit=None,
|
|
32
|
+
values=None,
|
|
33
|
+
id=None,
|
|
34
|
+
data=None,
|
|
35
|
+
space=None,
|
|
36
|
+
release_status=None,
|
|
37
|
+
):
|
|
38
|
+
return KGObject.__init__(
|
|
39
|
+
self,
|
|
40
|
+
id=id,
|
|
41
|
+
space=space,
|
|
42
|
+
release_status=release_status,
|
|
43
|
+
data=data,
|
|
44
|
+
negative_uncertainties=negative_uncertainties,
|
|
45
|
+
positive_uncertainties=positive_uncertainties,
|
|
46
|
+
type_of_uncertainty=type_of_uncertainty,
|
|
47
|
+
unit=unit,
|
|
48
|
+
values=values,
|
|
49
|
+
)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"""
|
|
2
|
+
A representation of a range of quantitative values.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import QuantitativeValueRange as OMQuantitativeValueRange
|
|
9
|
+
from fairgraph import EmbeddedMetadata
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from numbers import Real
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class QuantitativeValueRange(EmbeddedMetadata, OMQuantitativeValueRange):
|
|
16
|
+
"""
|
|
17
|
+
A representation of a range of quantitative values.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/QuantitativeValueRange"
|
|
21
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
22
|
+
reverse_properties = []
|
|
23
|
+
existence_query_properties = ("max_value", "min_value")
|
|
24
|
+
|
|
25
|
+
def __init__(
|
|
26
|
+
self,
|
|
27
|
+
max_value=None,
|
|
28
|
+
max_value_unit=None,
|
|
29
|
+
min_value=None,
|
|
30
|
+
min_value_unit=None,
|
|
31
|
+
id=None,
|
|
32
|
+
data=None,
|
|
33
|
+
space=None,
|
|
34
|
+
release_status=None,
|
|
35
|
+
):
|
|
36
|
+
return EmbeddedMetadata.__init__(
|
|
37
|
+
self,
|
|
38
|
+
data=data,
|
|
39
|
+
max_value=max_value,
|
|
40
|
+
max_value_unit=max_value_unit,
|
|
41
|
+
min_value=min_value,
|
|
42
|
+
min_value_unit=min_value_unit,
|
|
43
|
+
)
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ResearchProductGroup as OMResearchProductGroup
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ResearchProductGroup(KGObject, OMResearchProductGroup):
|
|
13
|
+
"""
|
|
14
|
+
<description not available>
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/ResearchProductGroup"
|
|
18
|
+
default_space = "dataset"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = []
|
|
21
|
+
existence_query_properties = ("context", "has_parts")
|
|
22
|
+
|
|
23
|
+
def __init__(self, context=None, has_parts=None, id=None, data=None, space=None, release_status=None):
|
|
24
|
+
return KGObject.__init__(
|
|
25
|
+
self, id=id, space=space, release_status=release_status, data=data, context=context, has_parts=has_parts
|
|
26
|
+
)
|
|
@@ -0,0 +1,104 @@
|
|
|
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 WebResource as OMWebResource
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from openminds import IRI
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class WebResource(KGObject, OMWebResource):
|
|
16
|
+
"""
|
|
17
|
+
<description not available>
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/WebResource"
|
|
21
|
+
default_space = "common"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = [
|
|
24
|
+
Property(
|
|
25
|
+
"describes",
|
|
26
|
+
["openminds.v4.core.BehavioralProtocol", "openminds.v4.core.Protocol"],
|
|
27
|
+
"describedIn",
|
|
28
|
+
reverse="described_in",
|
|
29
|
+
multiple=True,
|
|
30
|
+
description="reverse of 'described_in'",
|
|
31
|
+
),
|
|
32
|
+
Property(
|
|
33
|
+
"fully_documents",
|
|
34
|
+
[
|
|
35
|
+
"openminds.v4.computation.WorkflowRecipeVersion",
|
|
36
|
+
"openminds.v4.core.MetaDataModelVersion",
|
|
37
|
+
"openminds.v4.core.SoftwareVersion",
|
|
38
|
+
"openminds.v4.core.WebServiceVersion",
|
|
39
|
+
"openminds.v4.publications.LivePaperVersion",
|
|
40
|
+
"openminds.v4.sands.BrainAtlasVersion",
|
|
41
|
+
"openminds.v4.sands.CommonCoordinateSpaceVersion",
|
|
42
|
+
],
|
|
43
|
+
"fullDocumentation",
|
|
44
|
+
reverse="full_documentation",
|
|
45
|
+
multiple=True,
|
|
46
|
+
description="reverse of 'full_documentation'",
|
|
47
|
+
),
|
|
48
|
+
Property(
|
|
49
|
+
"is_applied_to",
|
|
50
|
+
"openminds.v4.core.DatasetVersion",
|
|
51
|
+
"license",
|
|
52
|
+
reverse="license",
|
|
53
|
+
multiple=True,
|
|
54
|
+
description="reverse of 'license'",
|
|
55
|
+
),
|
|
56
|
+
Property(
|
|
57
|
+
"is_output_of",
|
|
58
|
+
"openminds.v4.core.ModelVersion",
|
|
59
|
+
"outputData",
|
|
60
|
+
reverse="output_data",
|
|
61
|
+
multiple=True,
|
|
62
|
+
description="reverse of 'output_data'",
|
|
63
|
+
),
|
|
64
|
+
Property(
|
|
65
|
+
"is_reference_for",
|
|
66
|
+
"openminds.v4.computation.ValidationTestVersion",
|
|
67
|
+
"referenceData",
|
|
68
|
+
reverse="reference_data",
|
|
69
|
+
multiple=True,
|
|
70
|
+
description="reverse of 'reference_data'",
|
|
71
|
+
),
|
|
72
|
+
]
|
|
73
|
+
existence_query_properties = ("iri",)
|
|
74
|
+
|
|
75
|
+
def __init__(
|
|
76
|
+
self,
|
|
77
|
+
content_description=None,
|
|
78
|
+
describes=None,
|
|
79
|
+
format=None,
|
|
80
|
+
fully_documents=None,
|
|
81
|
+
iri=None,
|
|
82
|
+
is_applied_to=None,
|
|
83
|
+
is_output_of=None,
|
|
84
|
+
is_reference_for=None,
|
|
85
|
+
id=None,
|
|
86
|
+
data=None,
|
|
87
|
+
space=None,
|
|
88
|
+
release_status=None,
|
|
89
|
+
):
|
|
90
|
+
return KGObject.__init__(
|
|
91
|
+
self,
|
|
92
|
+
id=id,
|
|
93
|
+
space=space,
|
|
94
|
+
release_status=release_status,
|
|
95
|
+
data=data,
|
|
96
|
+
content_description=content_description,
|
|
97
|
+
describes=describes,
|
|
98
|
+
format=format,
|
|
99
|
+
fully_documents=fully_documents,
|
|
100
|
+
iri=iri,
|
|
101
|
+
is_applied_to=is_applied_to,
|
|
102
|
+
is_output_of=is_output_of,
|
|
103
|
+
is_reference_for=is_reference_for,
|
|
104
|
+
)
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from .dataset import Dataset
|
|
2
|
+
from .dataset_version import DatasetVersion
|
|
3
|
+
from .meta_data_model import MetaDataModel
|
|
4
|
+
from .meta_data_model_version import MetaDataModelVersion
|
|
5
|
+
from .model import Model
|
|
6
|
+
from .model_version import ModelVersion
|
|
7
|
+
from .project import Project
|
|
8
|
+
from .setup import Setup
|
|
9
|
+
from .software import Software
|
|
10
|
+
from .software_version import SoftwareVersion
|
|
11
|
+
from .web_service import WebService
|
|
12
|
+
from .web_service_version import WebServiceVersion
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on data originating from human/animal studies or simulations (concept level).
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.core import Dataset as OMDataset
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from openminds import IRI
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Dataset(KGObject, OMDataset):
|
|
16
|
+
"""
|
|
17
|
+
Structured information on data originating from human/animal studies or simulations (concept level).
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/Dataset"
|
|
21
|
+
default_space = "dataset"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = [
|
|
24
|
+
Property(
|
|
25
|
+
"comments",
|
|
26
|
+
"openminds.v4.core.Comment",
|
|
27
|
+
"about",
|
|
28
|
+
reverse="about",
|
|
29
|
+
multiple=True,
|
|
30
|
+
description="reverse of 'about'",
|
|
31
|
+
),
|
|
32
|
+
Property(
|
|
33
|
+
"is_part_of",
|
|
34
|
+
["openminds.v4.core.Project", "openminds.v4.core.ResearchProductGroup"],
|
|
35
|
+
"hasPart",
|
|
36
|
+
reverse="has_parts",
|
|
37
|
+
multiple=True,
|
|
38
|
+
description="reverse of 'has_parts'",
|
|
39
|
+
),
|
|
40
|
+
Property(
|
|
41
|
+
"learning_resources",
|
|
42
|
+
"openminds.v4.publications.LearningResource",
|
|
43
|
+
"about",
|
|
44
|
+
reverse="about",
|
|
45
|
+
multiple=True,
|
|
46
|
+
description="reverse of 'about'",
|
|
47
|
+
),
|
|
48
|
+
]
|
|
49
|
+
aliases = {"name": "full_name", "versions": "has_versions", "alias": "short_name"}
|
|
50
|
+
existence_query_properties = ("short_name",)
|
|
51
|
+
|
|
52
|
+
def __init__(
|
|
53
|
+
self,
|
|
54
|
+
name=None,
|
|
55
|
+
alias=None,
|
|
56
|
+
authors=None,
|
|
57
|
+
comments=None,
|
|
58
|
+
custodians=None,
|
|
59
|
+
description=None,
|
|
60
|
+
digital_identifier=None,
|
|
61
|
+
full_name=None,
|
|
62
|
+
has_versions=None,
|
|
63
|
+
homepage=None,
|
|
64
|
+
how_to_cite=None,
|
|
65
|
+
is_part_of=None,
|
|
66
|
+
learning_resources=None,
|
|
67
|
+
short_name=None,
|
|
68
|
+
versions=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
|
+
name=name,
|
|
81
|
+
alias=alias,
|
|
82
|
+
authors=authors,
|
|
83
|
+
comments=comments,
|
|
84
|
+
custodians=custodians,
|
|
85
|
+
description=description,
|
|
86
|
+
digital_identifier=digital_identifier,
|
|
87
|
+
full_name=full_name,
|
|
88
|
+
has_versions=has_versions,
|
|
89
|
+
homepage=homepage,
|
|
90
|
+
how_to_cite=how_to_cite,
|
|
91
|
+
is_part_of=is_part_of,
|
|
92
|
+
learning_resources=learning_resources,
|
|
93
|
+
short_name=short_name,
|
|
94
|
+
versions=versions,
|
|
95
|
+
)
|