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.
Files changed (267) hide show
  1. fairgraph/__init__.py +61 -0
  2. fairgraph/base.py +104 -0
  3. fairgraph/caching.py +52 -0
  4. fairgraph/client.py +867 -0
  5. fairgraph/collection.py +104 -0
  6. fairgraph/embedded.py +122 -0
  7. fairgraph/errors.py +47 -0
  8. fairgraph/fields.py +11 -0
  9. fairgraph/kgobject.py +1087 -0
  10. fairgraph/kgproxy.py +178 -0
  11. fairgraph/kgquery.py +151 -0
  12. fairgraph/node.py +488 -0
  13. fairgraph/openminds/__init__.py +1 -0
  14. fairgraph/openminds/chemicals/__init__.py +40 -0
  15. fairgraph/openminds/chemicals/amount_of_chemical.py +23 -0
  16. fairgraph/openminds/chemicals/chemical_mixture.py +72 -0
  17. fairgraph/openminds/chemicals/chemical_substance.py +67 -0
  18. fairgraph/openminds/chemicals/product_source.py +57 -0
  19. fairgraph/openminds/computation/__init__.py +53 -0
  20. fairgraph/openminds/computation/data_analysis.py +104 -0
  21. fairgraph/openminds/computation/data_copy.py +104 -0
  22. fairgraph/openminds/computation/environment.py +66 -0
  23. fairgraph/openminds/computation/generic_computation.py +104 -0
  24. fairgraph/openminds/computation/hardware_system.py +53 -0
  25. fairgraph/openminds/computation/launch_configuration.py +68 -0
  26. fairgraph/openminds/computation/local_file.py +83 -0
  27. fairgraph/openminds/computation/model_validation.py +107 -0
  28. fairgraph/openminds/computation/optimization.py +104 -0
  29. fairgraph/openminds/computation/simulation.py +104 -0
  30. fairgraph/openminds/computation/software_agent.py +81 -0
  31. fairgraph/openminds/computation/validation_test.py +105 -0
  32. fairgraph/openminds/computation/validation_test_version.py +180 -0
  33. fairgraph/openminds/computation/visualization.py +104 -0
  34. fairgraph/openminds/computation/workflow_execution.py +44 -0
  35. fairgraph/openminds/computation/workflow_recipe.py +95 -0
  36. fairgraph/openminds/computation/workflow_recipe_version.py +185 -0
  37. fairgraph/openminds/controlled_terms/__init__.py +116 -0
  38. fairgraph/openminds/controlled_terms/action_status_type.py +97 -0
  39. fairgraph/openminds/controlled_terms/age_category.py +89 -0
  40. fairgraph/openminds/controlled_terms/analysis_technique.py +108 -0
  41. fairgraph/openminds/controlled_terms/anatomical_axes_orientation.py +89 -0
  42. fairgraph/openminds/controlled_terms/anatomical_identification_type.py +89 -0
  43. fairgraph/openminds/controlled_terms/anatomical_plane.py +89 -0
  44. fairgraph/openminds/controlled_terms/annotation_criteria_type.py +89 -0
  45. fairgraph/openminds/controlled_terms/annotation_type.py +89 -0
  46. fairgraph/openminds/controlled_terms/atlas_type.py +88 -0
  47. fairgraph/openminds/controlled_terms/auditory_stimulus_type.py +127 -0
  48. fairgraph/openminds/controlled_terms/biological_order.py +117 -0
  49. fairgraph/openminds/controlled_terms/biological_process.py +79 -0
  50. fairgraph/openminds/controlled_terms/biological_sex.py +132 -0
  51. fairgraph/openminds/controlled_terms/breeding_type.py +127 -0
  52. fairgraph/openminds/controlled_terms/cell_culture_type.py +117 -0
  53. fairgraph/openminds/controlled_terms/cell_type.py +151 -0
  54. fairgraph/openminds/controlled_terms/chemical_mixture_type.py +89 -0
  55. fairgraph/openminds/controlled_terms/colormap.py +79 -0
  56. fairgraph/openminds/controlled_terms/contribution_type.py +79 -0
  57. fairgraph/openminds/controlled_terms/cranial_window_construction_type.py +89 -0
  58. fairgraph/openminds/controlled_terms/cranial_window_reinforcement_type.py +89 -0
  59. fairgraph/openminds/controlled_terms/criteria_quality_type.py +89 -0
  60. fairgraph/openminds/controlled_terms/data_type.py +89 -0
  61. fairgraph/openminds/controlled_terms/device_type.py +94 -0
  62. fairgraph/openminds/controlled_terms/difference_measure.py +89 -0
  63. fairgraph/openminds/controlled_terms/disease.py +142 -0
  64. fairgraph/openminds/controlled_terms/disease_model.py +142 -0
  65. fairgraph/openminds/controlled_terms/educational_level.py +79 -0
  66. fairgraph/openminds/controlled_terms/electrical_stimulus_type.py +137 -0
  67. fairgraph/openminds/controlled_terms/ethics_assessment.py +79 -0
  68. fairgraph/openminds/controlled_terms/experimental_approach.py +79 -0
  69. fairgraph/openminds/controlled_terms/file_bundle_grouping.py +99 -0
  70. fairgraph/openminds/controlled_terms/file_repository_type.py +89 -0
  71. fairgraph/openminds/controlled_terms/file_usage_role.py +89 -0
  72. fairgraph/openminds/controlled_terms/genetic_strain_type.py +127 -0
  73. fairgraph/openminds/controlled_terms/gustatory_stimulus_type.py +127 -0
  74. fairgraph/openminds/controlled_terms/handedness.py +127 -0
  75. fairgraph/openminds/controlled_terms/language.py +88 -0
  76. fairgraph/openminds/controlled_terms/laterality.py +94 -0
  77. fairgraph/openminds/controlled_terms/learning_resource_type.py +88 -0
  78. fairgraph/openminds/controlled_terms/measured_quantity.py +89 -0
  79. fairgraph/openminds/controlled_terms/measured_signal_type.py +79 -0
  80. fairgraph/openminds/controlled_terms/meta_data_model_type.py +88 -0
  81. fairgraph/openminds/controlled_terms/model_abstraction_level.py +89 -0
  82. fairgraph/openminds/controlled_terms/model_scope.py +89 -0
  83. fairgraph/openminds/controlled_terms/molecular_entity.py +142 -0
  84. fairgraph/openminds/controlled_terms/mri_pulse_sequence.py +98 -0
  85. fairgraph/openminds/controlled_terms/mri_weighting.py +98 -0
  86. fairgraph/openminds/controlled_terms/olfactory_stimulus_type.py +127 -0
  87. fairgraph/openminds/controlled_terms/operating_device.py +79 -0
  88. fairgraph/openminds/controlled_terms/operating_system.py +88 -0
  89. fairgraph/openminds/controlled_terms/optical_stimulus_type.py +127 -0
  90. fairgraph/openminds/controlled_terms/organ.py +161 -0
  91. fairgraph/openminds/controlled_terms/organism_substance.py +151 -0
  92. fairgraph/openminds/controlled_terms/organism_system.py +117 -0
  93. fairgraph/openminds/controlled_terms/patch_clamp_variation.py +89 -0
  94. fairgraph/openminds/controlled_terms/preparation_type.py +98 -0
  95. fairgraph/openminds/controlled_terms/product_accessibility.py +79 -0
  96. fairgraph/openminds/controlled_terms/programming_language.py +88 -0
  97. fairgraph/openminds/controlled_terms/qualitative_overlap.py +79 -0
  98. fairgraph/openminds/controlled_terms/semantic_data_type.py +79 -0
  99. fairgraph/openminds/controlled_terms/service.py +89 -0
  100. fairgraph/openminds/controlled_terms/setup_type.py +89 -0
  101. fairgraph/openminds/controlled_terms/software_application_category.py +79 -0
  102. fairgraph/openminds/controlled_terms/software_feature.py +79 -0
  103. fairgraph/openminds/controlled_terms/species.py +143 -0
  104. fairgraph/openminds/controlled_terms/stimulation_approach.py +98 -0
  105. fairgraph/openminds/controlled_terms/stimulation_technique.py +98 -0
  106. fairgraph/openminds/controlled_terms/subcellular_entity.py +143 -0
  107. fairgraph/openminds/controlled_terms/subject_attribute.py +89 -0
  108. fairgraph/openminds/controlled_terms/tactile_stimulus_type.py +127 -0
  109. fairgraph/openminds/controlled_terms/technique.py +108 -0
  110. fairgraph/openminds/controlled_terms/term_suggestion.py +121 -0
  111. fairgraph/openminds/controlled_terms/terminology.py +89 -0
  112. fairgraph/openminds/controlled_terms/tissue_sample_attribute.py +89 -0
  113. fairgraph/openminds/controlled_terms/tissue_sample_type.py +127 -0
  114. fairgraph/openminds/controlled_terms/type_of_uncertainty.py +89 -0
  115. fairgraph/openminds/controlled_terms/uberon_parcellation.py +153 -0
  116. fairgraph/openminds/controlled_terms/unit_of_measurement.py +108 -0
  117. fairgraph/openminds/controlled_terms/visual_stimulus_type.py +127 -0
  118. fairgraph/openminds/controlledterms.py +6 -0
  119. fairgraph/openminds/core/__init__.py +107 -0
  120. fairgraph/openminds/core/actors/__init__.py +7 -0
  121. fairgraph/openminds/core/actors/account_information.py +44 -0
  122. fairgraph/openminds/core/actors/affiliation.py +30 -0
  123. fairgraph/openminds/core/actors/consortium.py +175 -0
  124. fairgraph/openminds/core/actors/contact_information.py +43 -0
  125. fairgraph/openminds/core/actors/contribution.py +23 -0
  126. fairgraph/openminds/core/actors/organization.py +199 -0
  127. fairgraph/openminds/core/actors/person.py +236 -0
  128. fairgraph/openminds/core/data/__init__.py +13 -0
  129. fairgraph/openminds/core/data/content_type.py +107 -0
  130. fairgraph/openminds/core/data/content_type_pattern.py +53 -0
  131. fairgraph/openminds/core/data/copyright.py +23 -0
  132. fairgraph/openminds/core/data/file.py +275 -0
  133. fairgraph/openminds/core/data/file_archive.py +71 -0
  134. fairgraph/openminds/core/data/file_bundle.py +150 -0
  135. fairgraph/openminds/core/data/file_path_pattern.py +23 -0
  136. fairgraph/openminds/core/data/file_repository.py +99 -0
  137. fairgraph/openminds/core/data/file_repository_structure.py +51 -0
  138. fairgraph/openminds/core/data/hash.py +23 -0
  139. fairgraph/openminds/core/data/license.py +77 -0
  140. fairgraph/openminds/core/data/measurement.py +45 -0
  141. fairgraph/openminds/core/data/service_link.py +49 -0
  142. fairgraph/openminds/core/digital_identifier/__init__.py +11 -0
  143. fairgraph/openminds/core/digital_identifier/doi.py +98 -0
  144. fairgraph/openminds/core/digital_identifier/gridid.py +41 -0
  145. fairgraph/openminds/core/digital_identifier/handle.py +52 -0
  146. fairgraph/openminds/core/digital_identifier/identifiers_dot_org_id.py +41 -0
  147. fairgraph/openminds/core/digital_identifier/isbn.py +88 -0
  148. fairgraph/openminds/core/digital_identifier/issn.py +63 -0
  149. fairgraph/openminds/core/digital_identifier/orcid.py +41 -0
  150. fairgraph/openminds/core/digital_identifier/rorid.py +41 -0
  151. fairgraph/openminds/core/digital_identifier/rrid.py +55 -0
  152. fairgraph/openminds/core/digital_identifier/stock_number.py +23 -0
  153. fairgraph/openminds/core/digital_identifier/swhid.py +48 -0
  154. fairgraph/openminds/core/miscellaneous/__init__.py +7 -0
  155. fairgraph/openminds/core/miscellaneous/comment.py +47 -0
  156. fairgraph/openminds/core/miscellaneous/funding.py +70 -0
  157. fairgraph/openminds/core/miscellaneous/quantitative_value.py +43 -0
  158. fairgraph/openminds/core/miscellaneous/quantitative_value_array.py +49 -0
  159. fairgraph/openminds/core/miscellaneous/quantitative_value_range.py +43 -0
  160. fairgraph/openminds/core/miscellaneous/research_product_group.py +26 -0
  161. fairgraph/openminds/core/miscellaneous/web_resource.py +104 -0
  162. fairgraph/openminds/core/products/__init__.py +12 -0
  163. fairgraph/openminds/core/products/dataset.py +95 -0
  164. fairgraph/openminds/core/products/dataset_version.py +240 -0
  165. fairgraph/openminds/core/products/meta_data_model.py +95 -0
  166. fairgraph/openminds/core/products/meta_data_model_version.py +168 -0
  167. fairgraph/openminds/core/products/model.py +103 -0
  168. fairgraph/openminds/core/products/model_version.py +235 -0
  169. fairgraph/openminds/core/products/project.py +56 -0
  170. fairgraph/openminds/core/products/setup.py +69 -0
  171. fairgraph/openminds/core/products/software.py +95 -0
  172. fairgraph/openminds/core/products/software_version.py +226 -0
  173. fairgraph/openminds/core/products/web_service.py +103 -0
  174. fairgraph/openminds/core/products/web_service_version.py +182 -0
  175. fairgraph/openminds/core/research/__init__.py +17 -0
  176. fairgraph/openminds/core/research/behavioral_protocol.py +69 -0
  177. fairgraph/openminds/core/research/configuration.py +67 -0
  178. fairgraph/openminds/core/research/custom_property_set.py +27 -0
  179. fairgraph/openminds/core/research/numerical_property.py +23 -0
  180. fairgraph/openminds/core/research/property_value_list.py +71 -0
  181. fairgraph/openminds/core/research/protocol.py +67 -0
  182. fairgraph/openminds/core/research/protocol_execution.py +76 -0
  183. fairgraph/openminds/core/research/strain.py +90 -0
  184. fairgraph/openminds/core/research/string_property.py +23 -0
  185. fairgraph/openminds/core/research/subject.py +79 -0
  186. fairgraph/openminds/core/research/subject_group.py +91 -0
  187. fairgraph/openminds/core/research/subject_group_state.py +113 -0
  188. fairgraph/openminds/core/research/subject_state.py +138 -0
  189. fairgraph/openminds/core/research/tissue_sample.py +87 -0
  190. fairgraph/openminds/core/research/tissue_sample_collection.py +99 -0
  191. fairgraph/openminds/core/research/tissue_sample_collection_state.py +109 -0
  192. fairgraph/openminds/core/research/tissue_sample_state.py +127 -0
  193. fairgraph/openminds/ephys/__init__.py +39 -0
  194. fairgraph/openminds/ephys/activity/__init__.py +3 -0
  195. fairgraph/openminds/ephys/activity/cell_patching.py +73 -0
  196. fairgraph/openminds/ephys/activity/electrode_placement.py +67 -0
  197. fairgraph/openminds/ephys/activity/recording_activity.py +67 -0
  198. fairgraph/openminds/ephys/device/__init__.py +6 -0
  199. fairgraph/openminds/ephys/device/electrode.py +81 -0
  200. fairgraph/openminds/ephys/device/electrode_array.py +85 -0
  201. fairgraph/openminds/ephys/device/electrode_array_usage.py +105 -0
  202. fairgraph/openminds/ephys/device/electrode_usage.py +101 -0
  203. fairgraph/openminds/ephys/device/pipette.py +81 -0
  204. fairgraph/openminds/ephys/device/pipette_usage.py +123 -0
  205. fairgraph/openminds/ephys/entity/__init__.py +2 -0
  206. fairgraph/openminds/ephys/entity/channel.py +23 -0
  207. fairgraph/openminds/ephys/entity/recording.py +63 -0
  208. fairgraph/openminds/publications/__init__.py +47 -0
  209. fairgraph/openminds/publications/book.py +106 -0
  210. fairgraph/openminds/publications/chapter.py +100 -0
  211. fairgraph/openminds/publications/learning_resource.py +90 -0
  212. fairgraph/openminds/publications/live_paper.py +95 -0
  213. fairgraph/openminds/publications/live_paper_resource_item.py +58 -0
  214. fairgraph/openminds/publications/live_paper_section.py +57 -0
  215. fairgraph/openminds/publications/live_paper_version.py +177 -0
  216. fairgraph/openminds/publications/periodical.py +53 -0
  217. fairgraph/openminds/publications/publication_issue.py +44 -0
  218. fairgraph/openminds/publications/publication_volume.py +44 -0
  219. fairgraph/openminds/publications/scholarly_article.py +146 -0
  220. fairgraph/openminds/sands/__init__.py +57 -0
  221. fairgraph/openminds/sands/atlas/__init__.py +9 -0
  222. fairgraph/openminds/sands/atlas/atlas_annotation.py +52 -0
  223. fairgraph/openminds/sands/atlas/brain_atlas.py +113 -0
  224. fairgraph/openminds/sands/atlas/brain_atlas_version.py +213 -0
  225. fairgraph/openminds/sands/atlas/common_coordinate_space.py +121 -0
  226. fairgraph/openminds/sands/atlas/common_coordinate_space_version.py +243 -0
  227. fairgraph/openminds/sands/atlas/parcellation_entity.py +133 -0
  228. fairgraph/openminds/sands/atlas/parcellation_entity_version.py +162 -0
  229. fairgraph/openminds/sands/atlas/parcellation_terminology.py +38 -0
  230. fairgraph/openminds/sands/atlas/parcellation_terminology_version.py +38 -0
  231. fairgraph/openminds/sands/mathematical_shapes/__init__.py +3 -0
  232. fairgraph/openminds/sands/mathematical_shapes/circle.py +23 -0
  233. fairgraph/openminds/sands/mathematical_shapes/ellipse.py +27 -0
  234. fairgraph/openminds/sands/mathematical_shapes/rectangle.py +23 -0
  235. fairgraph/openminds/sands/miscellaneous/__init__.py +6 -0
  236. fairgraph/openminds/sands/miscellaneous/anatomical_target_position.py +40 -0
  237. fairgraph/openminds/sands/miscellaneous/coordinate_point.py +23 -0
  238. fairgraph/openminds/sands/miscellaneous/qualitative_relation_assessment.py +34 -0
  239. fairgraph/openminds/sands/miscellaneous/quantitative_relation_assessment.py +38 -0
  240. fairgraph/openminds/sands/miscellaneous/single_color.py +24 -0
  241. fairgraph/openminds/sands/miscellaneous/viewer_specification.py +40 -0
  242. fairgraph/openminds/sands/non_atlas/__init__.py +3 -0
  243. fairgraph/openminds/sands/non_atlas/custom_anatomical_entity.py +110 -0
  244. fairgraph/openminds/sands/non_atlas/custom_annotation.py +54 -0
  245. fairgraph/openminds/sands/non_atlas/custom_coordinate_space.py +67 -0
  246. fairgraph/openminds/specimen_prep/__init__.py +38 -0
  247. fairgraph/openminds/specimen_prep/activity/__init__.py +3 -0
  248. fairgraph/openminds/specimen_prep/activity/cranial_window_preparation.py +69 -0
  249. fairgraph/openminds/specimen_prep/activity/tissue_culture_preparation.py +67 -0
  250. fairgraph/openminds/specimen_prep/activity/tissue_sample_slicing.py +69 -0
  251. fairgraph/openminds/specimen_prep/device/__init__.py +2 -0
  252. fairgraph/openminds/specimen_prep/device/slicing_device.py +73 -0
  253. fairgraph/openminds/specimen_prep/device/slicing_device_usage.py +117 -0
  254. fairgraph/openminds/specimenprep.py +4 -0
  255. fairgraph/openminds/stimulation/__init__.py +38 -0
  256. fairgraph/openminds/stimulation/activity/__init__.py +1 -0
  257. fairgraph/openminds/stimulation/activity/stimulation_activity.py +67 -0
  258. fairgraph/openminds/stimulation/stimulus/__init__.py +1 -0
  259. fairgraph/openminds/stimulation/stimulus/ephys_stimulus.py +63 -0
  260. fairgraph/queries.py +499 -0
  261. fairgraph/registry.py +123 -0
  262. fairgraph/utility.py +607 -0
  263. fairgraph-0.13.0.dist-info/METADATA +222 -0
  264. fairgraph-0.13.0.dist-info/RECORD +267 -0
  265. fairgraph-0.13.0.dist-info/WHEEL +5 -0
  266. fairgraph-0.13.0.dist-info/licenses/LICENSE.txt +177 -0
  267. fairgraph-0.13.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,77 @@
1
+ """
2
+ Structured information on a used license.
3
+ """
4
+
5
+ # this file was auto-generated
6
+
7
+ from openminds.properties import Property
8
+ from openminds.v4.core import License as OMLicense
9
+ from fairgraph import KGObject
10
+
11
+
12
+ from openminds import IRI
13
+
14
+
15
+ class License(KGObject, OMLicense):
16
+ """
17
+ Structured information on a used license.
18
+ """
19
+
20
+ type_ = "https://openminds.om-i.org/types/License"
21
+ default_space = "controlled"
22
+ # forward properties are defined in the parent class (in openMINDS-Python)
23
+ reverse_properties = [
24
+ Property(
25
+ "is_applied_to",
26
+ [
27
+ "openminds.v4.computation.ValidationTestVersion",
28
+ "openminds.v4.computation.WorkflowRecipeVersion",
29
+ "openminds.v4.core.DatasetVersion",
30
+ "openminds.v4.core.MetaDataModelVersion",
31
+ "openminds.v4.core.ModelVersion",
32
+ "openminds.v4.core.SoftwareVersion",
33
+ "openminds.v4.publications.Book",
34
+ "openminds.v4.publications.Chapter",
35
+ "openminds.v4.publications.LearningResource",
36
+ "openminds.v4.publications.LivePaperVersion",
37
+ "openminds.v4.publications.ScholarlyArticle",
38
+ "openminds.v4.sands.BrainAtlasVersion",
39
+ "openminds.v4.sands.CommonCoordinateSpaceVersion",
40
+ ],
41
+ "license",
42
+ reverse="license",
43
+ multiple=True,
44
+ description="reverse of 'license'",
45
+ ),
46
+ ]
47
+ aliases = {"name": "full_name", "alias": "short_name"}
48
+ existence_query_properties = ("alias",)
49
+
50
+ def __init__(
51
+ self,
52
+ name=None,
53
+ alias=None,
54
+ full_name=None,
55
+ is_applied_to=None,
56
+ legal_code=None,
57
+ short_name=None,
58
+ webpages=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
+ name=name,
71
+ alias=alias,
72
+ full_name=full_name,
73
+ is_applied_to=is_applied_to,
74
+ legal_code=legal_code,
75
+ short_name=short_name,
76
+ webpages=webpages,
77
+ )
@@ -0,0 +1,45 @@
1
+ """
2
+ Structured information about a measurement performed during a scientific experiment.
3
+ """
4
+
5
+ # this file was auto-generated
6
+
7
+ from openminds.properties import Property
8
+ from openminds.v4.core import Measurement as OMMeasurement
9
+ from fairgraph import EmbeddedMetadata
10
+
11
+
12
+ from datetime import datetime
13
+
14
+
15
+ class Measurement(EmbeddedMetadata, OMMeasurement):
16
+ """
17
+ Structured information about a measurement performed during a scientific experiment.
18
+ """
19
+
20
+ type_ = "https://openminds.om-i.org/types/Measurement"
21
+ # forward properties are defined in the parent class (in openMINDS-Python)
22
+ reverse_properties = []
23
+ existence_query_properties = ("measured_quantity", "values")
24
+
25
+ def __init__(
26
+ self,
27
+ additional_remarks=None,
28
+ measured_quantity=None,
29
+ measured_with=None,
30
+ timestamp=None,
31
+ values=None,
32
+ id=None,
33
+ data=None,
34
+ space=None,
35
+ release_status=None,
36
+ ):
37
+ return EmbeddedMetadata.__init__(
38
+ self,
39
+ data=data,
40
+ additional_remarks=additional_remarks,
41
+ measured_quantity=measured_quantity,
42
+ measured_with=measured_with,
43
+ timestamp=timestamp,
44
+ values=values,
45
+ )
@@ -0,0 +1,49 @@
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 ServiceLink as OMServiceLink
9
+ from fairgraph import KGObject
10
+
11
+
12
+ from openminds import IRI
13
+
14
+
15
+ class ServiceLink(KGObject, OMServiceLink):
16
+ """
17
+ <description not available>
18
+ """
19
+
20
+ type_ = "https://openminds.om-i.org/types/ServiceLink"
21
+ default_space = "dataset"
22
+ # forward properties are defined in the parent class (in openMINDS-Python)
23
+ reverse_properties = []
24
+ existence_query_properties = ("data_location", "open_data_in", "service")
25
+
26
+ def __init__(
27
+ self,
28
+ data_location=None,
29
+ display_label=None,
30
+ open_data_in=None,
31
+ preview_image=None,
32
+ service=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
+ data_location=data_location,
45
+ display_label=display_label,
46
+ open_data_in=open_data_in,
47
+ preview_image=preview_image,
48
+ service=service,
49
+ )
@@ -0,0 +1,11 @@
1
+ from .doi import DOI
2
+ from .gridid import GRIDID
3
+ from .handle import HANDLE
4
+ from .identifiers_dot_org_id import IdentifiersDotOrgID
5
+ from .isbn import ISBN
6
+ from .issn import ISSN
7
+ from .orcid import ORCID
8
+ from .rorid import RORID
9
+ from .rrid import RRID
10
+ from .stock_number import StockNumber
11
+ from .swhid import SWHID
@@ -0,0 +1,98 @@
1
+ """
2
+ Structured information about a digital object identifier, as standardized by the International Organization for Standardization.
3
+ """
4
+
5
+ # this file was auto-generated
6
+
7
+ from openminds.properties import Property
8
+ from openminds.v4.core import DOI as OMDOI
9
+ from fairgraph import KGObject
10
+
11
+
12
+ class DOI(KGObject, OMDOI):
13
+ """
14
+ Structured information about a digital object identifier, as standardized by the International Organization for Standardization.
15
+ """
16
+
17
+ type_ = "https://openminds.om-i.org/types/DOI"
18
+ default_space = "dataset"
19
+ # forward properties are defined in the parent class (in openMINDS-Python)
20
+ reverse_properties = [
21
+ Property(
22
+ "describes",
23
+ ["openminds.v4.core.BehavioralProtocol", "openminds.v4.core.Protocol"],
24
+ "describedIn",
25
+ reverse="described_in",
26
+ multiple=True,
27
+ description="reverse of 'described_in'",
28
+ ),
29
+ Property(
30
+ "identifies",
31
+ [
32
+ "openminds.v4.computation.ValidationTest",
33
+ "openminds.v4.computation.WorkflowRecipe",
34
+ "openminds.v4.core.Dataset",
35
+ "openminds.v4.core.MetaDataModel",
36
+ "openminds.v4.core.Model",
37
+ "openminds.v4.core.Software",
38
+ "openminds.v4.ephys.Electrode",
39
+ "openminds.v4.ephys.ElectrodeArray",
40
+ "openminds.v4.ephys.Pipette",
41
+ "openminds.v4.publications.Book",
42
+ "openminds.v4.publications.Chapter",
43
+ "openminds.v4.publications.LearningResource",
44
+ "openminds.v4.publications.LivePaper",
45
+ "openminds.v4.publications.ScholarlyArticle",
46
+ "openminds.v4.sands.BrainAtlas",
47
+ "openminds.v4.sands.CommonCoordinateSpace",
48
+ "openminds.v4.specimen_prep.SlicingDevice",
49
+ ],
50
+ "digitalIdentifier",
51
+ reverse="digital_identifier",
52
+ multiple=True,
53
+ description="reverse of 'digital_identifier'",
54
+ ),
55
+ Property(
56
+ "related_to",
57
+ [
58
+ "openminds.v4.computation.ValidationTestVersion",
59
+ "openminds.v4.computation.WorkflowRecipeVersion",
60
+ "openminds.v4.core.DatasetVersion",
61
+ "openminds.v4.core.MetaDataModelVersion",
62
+ "openminds.v4.core.ModelVersion",
63
+ "openminds.v4.core.SoftwareVersion",
64
+ "openminds.v4.core.WebServiceVersion",
65
+ "openminds.v4.publications.LivePaperVersion",
66
+ "openminds.v4.sands.BrainAtlasVersion",
67
+ "openminds.v4.sands.CommonCoordinateSpaceVersion",
68
+ ],
69
+ "relatedPublication",
70
+ reverse="related_publications",
71
+ multiple=True,
72
+ description="reverse of 'related_publications'",
73
+ ),
74
+ ]
75
+ existence_query_properties = ("identifier",)
76
+
77
+ def __init__(
78
+ self,
79
+ describes=None,
80
+ identifier=None,
81
+ identifies=None,
82
+ related_to=None,
83
+ id=None,
84
+ data=None,
85
+ space=None,
86
+ release_status=None,
87
+ ):
88
+ return KGObject.__init__(
89
+ self,
90
+ id=id,
91
+ space=space,
92
+ release_status=release_status,
93
+ data=data,
94
+ describes=describes,
95
+ identifier=identifier,
96
+ identifies=identifies,
97
+ related_to=related_to,
98
+ )
@@ -0,0 +1,41 @@
1
+ """
2
+ A GRID (Global Research Identifier Database) identifier.
3
+ """
4
+
5
+ # this file was auto-generated
6
+
7
+ from openminds.properties import Property
8
+ from openminds.v4.core import GRIDID as OMGRIDID
9
+ from fairgraph import KGObject
10
+
11
+
12
+ class GRIDID(KGObject, OMGRIDID):
13
+ """
14
+ A GRID (Global Research Identifier Database) identifier.
15
+ """
16
+
17
+ type_ = "https://openminds.om-i.org/types/GRIDID"
18
+ default_space = "common"
19
+ # forward properties are defined in the parent class (in openMINDS-Python)
20
+ reverse_properties = [
21
+ Property(
22
+ "identifies",
23
+ "openminds.v4.core.Organization",
24
+ "digitalIdentifier",
25
+ reverse="digital_identifiers",
26
+ multiple=True,
27
+ description="reverse of 'digital_identifiers'",
28
+ ),
29
+ ]
30
+ existence_query_properties = ("identifier",)
31
+
32
+ def __init__(self, identifier=None, identifies=None, id=None, data=None, space=None, release_status=None):
33
+ return KGObject.__init__(
34
+ self,
35
+ id=id,
36
+ space=space,
37
+ release_status=release_status,
38
+ data=data,
39
+ identifier=identifier,
40
+ identifies=identifies,
41
+ )
@@ -0,0 +1,52 @@
1
+ """
2
+ A persistent identifier for an information resource provided by the Handle System of the Corporation for National Research Initiatives.
3
+ """
4
+
5
+ # this file was auto-generated
6
+
7
+ from openminds.properties import Property
8
+ from openminds.v4.core import HANDLE as OMHANDLE
9
+ from fairgraph import KGObject
10
+
11
+
12
+ class HANDLE(KGObject, OMHANDLE):
13
+ """
14
+ A persistent identifier for an information resource provided by the Handle System of the Corporation for National Research Initiatives.
15
+ """
16
+
17
+ type_ = "https://openminds.om-i.org/types/HANDLE"
18
+ default_space = "common"
19
+ # forward properties are defined in the parent class (in openMINDS-Python)
20
+ reverse_properties = [
21
+ Property(
22
+ "related_to",
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.LivePaperVersion",
32
+ "openminds.v4.sands.BrainAtlasVersion",
33
+ "openminds.v4.sands.CommonCoordinateSpaceVersion",
34
+ ],
35
+ "relatedPublication",
36
+ reverse="related_publications",
37
+ multiple=True,
38
+ description="reverse of 'related_publications'",
39
+ ),
40
+ ]
41
+ existence_query_properties = ("identifier",)
42
+
43
+ def __init__(self, identifier=None, related_to=None, id=None, data=None, space=None, release_status=None):
44
+ return KGObject.__init__(
45
+ self,
46
+ id=id,
47
+ space=space,
48
+ release_status=release_status,
49
+ data=data,
50
+ identifier=identifier,
51
+ related_to=related_to,
52
+ )
@@ -0,0 +1,41 @@
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 IdentifiersDotOrgID as OMIdentifiersDotOrgID
9
+ from fairgraph import KGObject
10
+
11
+
12
+ class IdentifiersDotOrgID(KGObject, OMIdentifiersDotOrgID):
13
+ """
14
+ <description not available>
15
+ """
16
+
17
+ type_ = "https://openminds.om-i.org/types/IdentifiersDotOrgID"
18
+ default_space = "common"
19
+ # forward properties are defined in the parent class (in openMINDS-Python)
20
+ reverse_properties = [
21
+ Property(
22
+ "identifies",
23
+ ["openminds.v4.core.Dataset", "openminds.v4.core.DatasetVersion"],
24
+ "digitalIdentifier",
25
+ reverse="digital_identifier",
26
+ multiple=True,
27
+ description="reverse of 'digital_identifier'",
28
+ ),
29
+ ]
30
+ existence_query_properties = ("identifier",)
31
+
32
+ def __init__(self, identifier=None, identifies=None, id=None, data=None, space=None, release_status=None):
33
+ return KGObject.__init__(
34
+ self,
35
+ id=id,
36
+ space=space,
37
+ release_status=release_status,
38
+ data=data,
39
+ identifier=identifier,
40
+ identifies=identifies,
41
+ )
@@ -0,0 +1,88 @@
1
+ """
2
+ An International Standard Book Number of the International ISBN Agency.
3
+ """
4
+
5
+ # this file was auto-generated
6
+
7
+ from openminds.properties import Property
8
+ from openminds.v4.core import ISBN as OMISBN
9
+ from fairgraph import KGObject
10
+
11
+
12
+ class ISBN(KGObject, OMISBN):
13
+ """
14
+ An International Standard Book Number of the International ISBN Agency.
15
+ """
16
+
17
+ type_ = "https://openminds.om-i.org/types/ISBN"
18
+ default_space = "dataset"
19
+ # forward properties are defined in the parent class (in openMINDS-Python)
20
+ reverse_properties = [
21
+ Property(
22
+ "cited_in",
23
+ [
24
+ "openminds.v4.publications.Chapter",
25
+ "openminds.v4.publications.LearningResource",
26
+ "openminds.v4.publications.ScholarlyArticle",
27
+ ],
28
+ "citedPublication",
29
+ reverse="cited_publications",
30
+ multiple=True,
31
+ description="reverse of 'cited_publications'",
32
+ ),
33
+ Property(
34
+ "identifies",
35
+ [
36
+ "openminds.v4.publications.Book",
37
+ "openminds.v4.sands.BrainAtlas",
38
+ "openminds.v4.sands.CommonCoordinateSpace",
39
+ ],
40
+ "digitalIdentifier",
41
+ reverse="digital_identifier",
42
+ multiple=True,
43
+ description="reverse of 'digital_identifier'",
44
+ ),
45
+ Property(
46
+ "related_to",
47
+ [
48
+ "openminds.v4.computation.ValidationTestVersion",
49
+ "openminds.v4.computation.WorkflowRecipeVersion",
50
+ "openminds.v4.core.DatasetVersion",
51
+ "openminds.v4.core.MetaDataModelVersion",
52
+ "openminds.v4.core.ModelVersion",
53
+ "openminds.v4.core.SoftwareVersion",
54
+ "openminds.v4.core.WebServiceVersion",
55
+ "openminds.v4.publications.LivePaperVersion",
56
+ "openminds.v4.sands.BrainAtlasVersion",
57
+ "openminds.v4.sands.CommonCoordinateSpaceVersion",
58
+ ],
59
+ "relatedPublication",
60
+ reverse="related_publications",
61
+ multiple=True,
62
+ description="reverse of 'related_publications'",
63
+ ),
64
+ ]
65
+ existence_query_properties = ("identifier",)
66
+
67
+ def __init__(
68
+ self,
69
+ cited_in=None,
70
+ identifier=None,
71
+ identifies=None,
72
+ related_to=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
+ cited_in=cited_in,
85
+ identifier=identifier,
86
+ identifies=identifies,
87
+ related_to=related_to,
88
+ )
@@ -0,0 +1,63 @@
1
+ """
2
+ An International Standard Serial Number of the ISSN International Centre.
3
+ """
4
+
5
+ # this file was auto-generated
6
+
7
+ from openminds.properties import Property
8
+ from openminds.v4.core import ISSN as OMISSN
9
+ from fairgraph import KGObject
10
+
11
+
12
+ class ISSN(KGObject, OMISSN):
13
+ """
14
+ An International Standard Serial Number of the ISSN International Centre.
15
+ """
16
+
17
+ type_ = "https://openminds.om-i.org/types/ISSN"
18
+ default_space = "dataset"
19
+ # forward properties are defined in the parent class (in openMINDS-Python)
20
+ reverse_properties = [
21
+ Property(
22
+ "identifies",
23
+ "openminds.v4.publications.Periodical",
24
+ "digitalIdentifier",
25
+ reverse="digital_identifier",
26
+ multiple=True,
27
+ description="reverse of 'digital_identifier'",
28
+ ),
29
+ Property(
30
+ "related_to",
31
+ [
32
+ "openminds.v4.computation.ValidationTestVersion",
33
+ "openminds.v4.computation.WorkflowRecipeVersion",
34
+ "openminds.v4.core.DatasetVersion",
35
+ "openminds.v4.core.MetaDataModelVersion",
36
+ "openminds.v4.core.ModelVersion",
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
+ "relatedPublication",
44
+ reverse="related_publications",
45
+ multiple=True,
46
+ description="reverse of 'related_publications'",
47
+ ),
48
+ ]
49
+ existence_query_properties = ("identifier",)
50
+
51
+ def __init__(
52
+ self, identifier=None, identifies=None, related_to=None, id=None, data=None, space=None, release_status=None
53
+ ):
54
+ return KGObject.__init__(
55
+ self,
56
+ id=id,
57
+ space=space,
58
+ release_status=release_status,
59
+ data=data,
60
+ identifier=identifier,
61
+ identifies=identifies,
62
+ related_to=related_to,
63
+ )
@@ -0,0 +1,41 @@
1
+ """
2
+ A persistent identifier for a researcher provided by Open Researcher and Contributor ID, Inc.
3
+ """
4
+
5
+ # this file was auto-generated
6
+
7
+ from openminds.properties import Property
8
+ from openminds.v4.core import ORCID as OMORCID
9
+ from fairgraph import KGObject
10
+
11
+
12
+ class ORCID(KGObject, OMORCID):
13
+ """
14
+ A persistent identifier for a researcher provided by Open Researcher and Contributor ID, Inc.
15
+ """
16
+
17
+ type_ = "https://openminds.om-i.org/types/ORCID"
18
+ default_space = "common"
19
+ # forward properties are defined in the parent class (in openMINDS-Python)
20
+ reverse_properties = [
21
+ Property(
22
+ "identifies",
23
+ "openminds.v4.core.Person",
24
+ "digitalIdentifier",
25
+ reverse="digital_identifiers",
26
+ multiple=True,
27
+ description="reverse of 'digital_identifiers'",
28
+ ),
29
+ ]
30
+ existence_query_properties = ("identifier",)
31
+
32
+ def __init__(self, identifier=None, identifies=None, id=None, data=None, space=None, release_status=None):
33
+ return KGObject.__init__(
34
+ self,
35
+ id=id,
36
+ space=space,
37
+ release_status=release_status,
38
+ data=data,
39
+ identifier=identifier,
40
+ identifies=identifies,
41
+ )
@@ -0,0 +1,41 @@
1
+ """
2
+ A persistent identifier for a research organization, provided by the Research Organization Registry.
3
+ """
4
+
5
+ # this file was auto-generated
6
+
7
+ from openminds.properties import Property
8
+ from openminds.v4.core import RORID as OMRORID
9
+ from fairgraph import KGObject
10
+
11
+
12
+ class RORID(KGObject, OMRORID):
13
+ """
14
+ A persistent identifier for a research organization, provided by the Research Organization Registry.
15
+ """
16
+
17
+ type_ = "https://openminds.om-i.org/types/RORID"
18
+ default_space = "common"
19
+ # forward properties are defined in the parent class (in openMINDS-Python)
20
+ reverse_properties = [
21
+ Property(
22
+ "identifies",
23
+ "openminds.v4.core.Organization",
24
+ "digitalIdentifier",
25
+ reverse="digital_identifiers",
26
+ multiple=True,
27
+ description="reverse of 'digital_identifiers'",
28
+ ),
29
+ ]
30
+ existence_query_properties = ("identifier",)
31
+
32
+ def __init__(self, identifier=None, identifies=None, id=None, data=None, space=None, release_status=None):
33
+ return KGObject.__init__(
34
+ self,
35
+ id=id,
36
+ space=space,
37
+ release_status=release_status,
38
+ data=data,
39
+ identifier=identifier,
40
+ identifies=identifies,
41
+ )