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,222 @@
1
+ Metadata-Version: 2.4
2
+ Name: fairgraph
3
+ Version: 0.13.0
4
+ Summary: Python API for the EBRAINS Knowledge Graph
5
+ Author-email: "Andrew P. Davison" <andrew.davison@cnrs.fr>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/HumanBrainProject/fairgraph
8
+ Keywords: ebrains,hbp,metadata,electrophysiology,knowledge-graph
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Topic :: Scientific/Engineering
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE.txt
16
+ Requires-Dist: ebrains-kg-core
17
+ Requires-Dist: openminds>=0.4.0
18
+ Requires-Dist: python-dateutil
19
+ Requires-Dist: tabulate
20
+ Requires-Dist: requests
21
+ Provides-Extra: dev
22
+ Requires-Dist: pytest; extra == "dev"
23
+ Requires-Dist: pytest-cov; extra == "dev"
24
+ Requires-Dist: pytest-mock; extra == "dev"
25
+ Requires-Dist: coverage; extra == "dev"
26
+ Requires-Dist: build; extra == "dev"
27
+ Requires-Dist: setuptools; extra == "dev"
28
+ Requires-Dist: wheel; extra == "dev"
29
+ Requires-Dist: sphinx; extra == "dev"
30
+ Requires-Dist: sphinxawesome_theme; extra == "dev"
31
+ Requires-Dist: black; extra == "dev"
32
+ Requires-Dist: twine; extra == "dev"
33
+ Provides-Extra: docs
34
+ Requires-Dist: sphinx; extra == "docs"
35
+ Requires-Dist: sphinxawesome_theme; extra == "docs"
36
+ Dynamic: license-file
37
+
38
+ # fairgraph: a Python API for the EBRAINS Knowledge Graph.
39
+
40
+ [![tests](https://github.com/HumanBrainProject/fairgraph/actions/workflows/tests.yml/badge.svg)](https://github.com/HumanBrainProject/fairgraph/actions/workflows/tests.yml)
41
+ [![Documentation](https://app.readthedocs.org/projects/fairgraph/badge/?version=latest)](https://fairgraph.readthedocs.io)
42
+ ![PyPI - Version](https://img.shields.io/pypi/v/fairgraph)
43
+
44
+ Authors: Andrew P. Davison, Onur Ates, Nico Feld, Yann Zerlaut, Glynis Mattheisen, Peyman Najafi
45
+
46
+ Copyright CNRS 2019-2025
47
+
48
+ **fairgraph** is a Python library for working with metadata
49
+ in the EBRAINS Knowledge Graph, with a particular focus on data reuse,
50
+ although it is also useful in metadata registration/curation.
51
+
52
+ ## Installation
53
+
54
+ To get the latest release:
55
+
56
+ ```
57
+ pip install fairgraph
58
+ ```
59
+
60
+ To get the development version:
61
+
62
+ ```
63
+ git clone https://github.com/HumanBrainProject/fairgraph.git
64
+ pip install -U ./fairgraph
65
+ ```
66
+
67
+ ## Knowledge Graph and openMINDS versions
68
+
69
+ This version of fairgraph supports version 3 of the EBRAINS Knowledge Graph (KG),
70
+ and version 4 of the openMINDS metadata schemas.
71
+
72
+ ## Basic setup
73
+
74
+ The basic idea of the library is to represent metadata nodes from the Knowledge Graph as Python objects.
75
+ Communication with the Knowledge Graph service is through a client object,
76
+ for which an access token associated with an EBRAINS account is needed.
77
+
78
+ If you are working in an EBRAINS Lab Jupyter notebook, the client will find your token automatically.
79
+
80
+ If working outside EBRAINS Lab, we recommend you use the `allow_interactive` option:
81
+
82
+ ```
83
+ >>> client = KGClient(host="core.kg.ebrains.eu", allow_interactive=True)
84
+ ```
85
+
86
+ This prints the URL of a log-in page, which you should open in a web-browser.
87
+ Once you have logged in, close the tab and return to your Python prompt.
88
+
89
+ You can also obtains a token elsewhere and pass it to the client:
90
+
91
+ ```
92
+ >>> client = KGClient(host="core.kg.ebrains.eu", token)
93
+ ```
94
+
95
+ ## Retrieving metadata from the Knowledge Graph
96
+
97
+ The Knowledge Graph uses [openMINDS](https://github.com/HumanBrainProject/openMINDS) schemas.
98
+ Each openMINDS schema corresponds to a Python class, which are grouped into modules
99
+ following the openMINDS structure. For example:
100
+
101
+ ```
102
+ >>> from fairgraph.openminds.core import DatasetVersion
103
+ >>> from fairgraph.openminds.controlled_terms import Technique
104
+ ```
105
+
106
+ The following openMINDS modules are currently available: `core`, `controlled_terms`, `sands`, `computation`, `chemicals`, `specimen_prep`, `ephys`, `publications`, `stimulation`.
107
+ Using these classes, it is possible to list all metadata matching a particular criterion, e.g.
108
+
109
+ ```
110
+ >>> patch_techniques = Technique.list(client, name="patch clamp")
111
+ >>> print([technique.name for technique in patch_techniques])
112
+ ['cell attached patch clamp', 'multiple whole cell patch clamp', 'patch clamp', 'whole cell patch clamp']
113
+ >>> whole_cell_patch = patch_techniques[3]
114
+ ```
115
+
116
+ ```
117
+ >>> datasets = DatasetVersion.list(client, techniques=whole_cell_patch)
118
+ ```
119
+
120
+ The associated metadata are accessible as attributes of the Python objects, e.g.:
121
+
122
+ ```
123
+ >>> print(datasets[0].version_innovation)
124
+ 'This is the only version of this dataset.'
125
+ ```
126
+
127
+ You can also access any associated data:
128
+
129
+ ```
130
+ >>> datasets[0].download(client, local_directory="downloads")
131
+ ```
132
+
133
+ ### Inherited attributes
134
+
135
+ For research products that are versioned, such as datasets, models, and software, certain attributes may be inherited from the parent (e.g., a DatasetVersion generally inherits its name from a Dataset).
136
+ In this case, we have a convenience method to retrieve the parent's name:
137
+
138
+ ```
139
+ >>> print(datasets[0].get_full_name(client))
140
+ 'Recordings of excitatory postsynaptic currents from cerebellar neurons'
141
+ ```
142
+
143
+ ### Unique identifiers
144
+
145
+ If you know the unique identifier of an object, you can retrieve it directly:
146
+
147
+ ```
148
+ >>> dataset = DatasetVersion.from_id("17196b79-04db-4ea4-bb69-d20aab6f1d62", client)
149
+ ```
150
+
151
+ ### Following links in the knowledge graph
152
+
153
+ Links between metadata in the Knowledge Graph are not followed automatically,
154
+ to avoid unnecessary network traffic, but can be followed with the `resolve()` method:
155
+
156
+ ```
157
+ >>> license = dataset.license.resolve(client)
158
+ >>> authors = [author.resolve(client) for author in dataset.get_authors(client)]
159
+ ```
160
+
161
+ If you know in advance which links you wish to follow, you can use the `follow_links` option:
162
+
163
+ ```
164
+ >>> dataset = DatasetVersion.from_id(
165
+ ... "17196b79-04db-4ea4-bb69-d20aab6f1d62",
166
+ ... client,
167
+ ... follow_links={
168
+ ... "license": {},
169
+ ... "is_version_of": {
170
+ ... "authors": {}
171
+ ... }
172
+ ... }
173
+ ... )
174
+ >>> dataset.is_version_of[0].authors[0].given_name
175
+ 'Francesca'
176
+ >>> dataset.license.short_name
177
+ 'CC-BY-NC-SA-4.0'
178
+ ```
179
+
180
+ Note that this can also be used to follow multiple links in the graph;
181
+ in the example above we asked for the authors of the parent `Dataset`.
182
+
183
+ To print out all the metadata for a given object, use the `show()` method:
184
+
185
+ ```
186
+ >>> print(license.show())
187
+ id https://kg.ebrains.eu/api/instances/6ebce971-7f99-4fbc-9621-eeae47a70d85
188
+ name Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
189
+ legal_code https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
190
+ alias CC BY-NC-SA 4.0
191
+ webpages ['https://creativecommons.org/licenses/by-nc-sa/4.0', 'https://spdx.org/licenses/CC-BY-NC-SA-4.0.html']
192
+ ```
193
+
194
+ ## Storing and editing metadata
195
+
196
+ For those users who have the necessary permissions to store and edit metadata in the Knowledge Graph,
197
+ **fairgraph** objects can be created or edited in Python, and then saved back to the Knowledge Graph, e.g.:
198
+
199
+ ```
200
+ from datetime import date
201
+ from fairgraph.openminds.core import Person, Organization, Affiliation
202
+
203
+ mgm = Organization(full_name="Metro-Goldwyn-Mayer", short_name="MGM")
204
+ mgm.save(client, space="myspace")
205
+
206
+ affiliation = Affiliation(member_of=mgm, start_date=date(1941, 2, 23))
207
+ author = Person(family_name="Laurel", given_name="Stan", affiliations=[affiliation])
208
+ author.save(client, space="myspace")
209
+ ```
210
+
211
+ ## Getting help
212
+
213
+ In case of questions about **fairgraph**, please contact us via https://ebrains.eu/support/.
214
+ If you find a bug or would like to suggest an enhancement or new feature,
215
+ please open a ticket in the [issue tracker](https://github.com/HumanBrainProject/fairgraph/issues).
216
+
217
+ ## Acknowledgements
218
+
219
+ <div><img src="https://www.braincouncil.eu/wp-content/uploads/2018/11/wsi-imageoptim-EU-Logo.jpg" alt="EU Logo" height="23%" width="15%" align="right" style="margin-left: 10px"></div>
220
+
221
+ This open source software code was developed in part or in whole in the Human Brain Project, funded from the European Union's Horizon 2020 Framework Programme for Research and Innovation under Specific Grant Agreements No. 720270, No. 785907 and No. 945539 (Human Brain Project SGA1, SGA2 and SGA3) and in the EBRAINS research infrastructure,
222
+ funded from the European Union's Horizon Europe funding programme under grant agreement No. 101147319 (EBRAINS-2.0).
@@ -0,0 +1,267 @@
1
+ fairgraph/__init__.py,sha256=5AWG1qWzHIqSLpKN5XpXK6fPnh4JfE7aHghw1Obd7qE,1814
2
+ fairgraph/base.py,sha256=9Fya7J6vzJCP090qXJP-ZdLbu5DW0yLLnHqrVpSoPsw,3306
3
+ fairgraph/caching.py,sha256=R64Qn177jYgv-Op5FFGmFX8XFiGX0dr77x5DVHkQaXs,2085
4
+ fairgraph/client.py,sha256=YOFo0GBQ4mjHuxTYPxdJtov4B51aVDV3tAgnZSjqmII,38770
5
+ fairgraph/collection.py,sha256=ts6qQhsQFOG147zOuo5ZP3XyaIaYMFxYDjI4Zaaq9mU,3623
6
+ fairgraph/embedded.py,sha256=5HpakKVh3xAjJq8zA7Khu8ayXsFavwIktpefjKrnpbo,4601
7
+ fairgraph/errors.py,sha256=_rG6LQ89XTZLdgnXJWuKHygQyBztxX9D-a8ugHGdUpg,1220
8
+ fairgraph/fields.py,sha256=MHJHbGhdB8H6nX-gnYvJi5VlqcSNCJt2lyBAULMp_Hw,299
9
+ fairgraph/kgobject.py,sha256=QvHzm4ar4MvUMxLS9UPcR0MqPdbUTUtY4VwA8Lbf8zU,47718
10
+ fairgraph/kgproxy.py,sha256=aD5Z8WHnSL8aXUyd6RLHCz7xztmSwML_Snfdm2EmwYg,6656
11
+ fairgraph/kgquery.py,sha256=pLqX9yl0Epf4MnJxQAnalMHEfXoDKSAvCBQ20JsUowM,5971
12
+ fairgraph/node.py,sha256=2RcJbGL6B87KB9LqDl_2v0PsJK68XLYtDNndOxRTdEM,21515
13
+ fairgraph/queries.py,sha256=DZDTgZ7p9dQNgXqCIZGUtaRWStYhVutBBSYX5oJzwwo,19538
14
+ fairgraph/registry.py,sha256=x6E9vGD-p-WI7KXI0xYAEeemCyJ_CGbqsgQmafrjgTI,3995
15
+ fairgraph/utility.py,sha256=l0n8JeIWsnemNYS1QSdnqaiMneyjW8XDYqWgmJL14L8,21317
16
+ fairgraph/openminds/__init__.py,sha256=u7YPUBwmtPGitfz4zqsLaTcnydtQqeGCvhXrgD4JcO0,117
17
+ fairgraph/openminds/controlledterms.py,sha256=aUkkM8BAHQTj8GSsMrl4zf-L-C79Epkw69JjiiBCh54,186
18
+ fairgraph/openminds/specimenprep.py,sha256=ZWhv5EeIVUPrrKPMfuOawB27eeG2cGHb2sQ9qqNu6OI,171
19
+ fairgraph/openminds/chemicals/__init__.py,sha256=rTq282J8MdCMWc4B_Vof8K9RDvsZuIUJQSV5KC8OdCM,1312
20
+ fairgraph/openminds/chemicals/amount_of_chemical.py,sha256=l50iH8_c-LyKn1MZQaEyqWtPj5SczS6n7gy_A8CnNZY,888
21
+ fairgraph/openminds/chemicals/chemical_mixture.py,sha256=FslZnBC5TU08TUBcOuuUMIyoyXYIj8hyDqDYyK4MccQ,2306
22
+ fairgraph/openminds/chemicals/chemical_substance.py,sha256=US_szeeCr6QFcH-Kgr6OuOdVhFiWvTEzfF-O3HvDzbo,1996
23
+ fairgraph/openminds/chemicals/product_source.py,sha256=DsEnpZ4hT6cTfYgbpl0XYwz7GOQrlLmp_CQVJ8KM5sg,1652
24
+ fairgraph/openminds/computation/__init__.py,sha256=1sawJHp8tZr1bF9PNzUAbHL3HQZ5I2LjD7Y5J1g1N1c,1877
25
+ fairgraph/openminds/computation/data_analysis.py,sha256=IqDnyl0i6mhdu7CNDD1M0Yhl1VuEAjcdtLlonAgt3Hs,3125
26
+ fairgraph/openminds/computation/data_copy.py,sha256=BhLZuvDpYu8ndEP2M98jMFG19LrVDUHYEKL1_D171Gw,2995
27
+ fairgraph/openminds/computation/environment.py,sha256=kk9KPBvcHn1JGV9f50pP4IewcGRIUIseJJODZLml1E4,2049
28
+ fairgraph/openminds/computation/generic_computation.py,sha256=AYQj8KE-1GtsUZmBVL15xjygTlLfRHQiJ8E9EyLXM_o,3151
29
+ fairgraph/openminds/computation/hardware_system.py,sha256=H3e8muaZtyGc0VgUK2CcbiZiN3ZGwUwxpTlooay53Dc,1381
30
+ fairgraph/openminds/computation/launch_configuration.py,sha256=gArlf8BwxRrcssol7tF6Y9wgEHlobHX6R6_hhmNG63I,2228
31
+ fairgraph/openminds/computation/local_file.py,sha256=1QWNYj27Hoz9deSiyFy28MK8EIjlDmkppoPhKUH8N2E,2454
32
+ fairgraph/openminds/computation/model_validation.py,sha256=Vgt-gc-fCwrQbPj84dNTkNquidKmkVcXI75OCHmZzUA,3196
33
+ fairgraph/openminds/computation/optimization.py,sha256=MM9cWK9aGtnd-QUOaERRqFbCGqaBcO0GviximZJrg4k,3121
34
+ fairgraph/openminds/computation/simulation.py,sha256=tamel_kP5DMxZSPJSTRoeE3h5i5BzwZxPuBUisc_kWU,3125
35
+ fairgraph/openminds/computation/software_agent.py,sha256=97U0mKxIGNCsnwQTvJJLwTcO8M1mGWrVeD0bwY_cDRs,2688
36
+ fairgraph/openminds/computation/validation_test.py,sha256=Z_i8Ke7QfZoxPeOdVm9JvDgSfnHPQ3llx12j_7xK0oI,3142
37
+ fairgraph/openminds/computation/validation_test_version.py,sha256=ADVseKhpfLn4yxxntDZydZ9gjCPfPCVUpQmJ-QdBtn4,5957
38
+ fairgraph/openminds/computation/visualization.py,sha256=Ri4c-p9xbaeM0aF7FqsSdH1ZA7YyZOWp8f7htkEoDJc,3196
39
+ fairgraph/openminds/computation/workflow_execution.py,sha256=aPrx65ZLnCTw2bH3cN2eFhUl_tv572wS0s2LWNScJdk,1186
40
+ fairgraph/openminds/computation/workflow_recipe.py,sha256=FZGUQKIBc6yjelSwiYgfH_KyFArd34KrCpQKgfEQCCs,2711
41
+ fairgraph/openminds/computation/workflow_recipe_version.py,sha256=2Bckzte0IOhP8yd5ZaZunhCzfnxSXWmzSfzLfj4MzLE,6203
42
+ fairgraph/openminds/controlled_terms/__init__.py,sha256=6hRf43dNxlIc4TJvDD0UmgpBO5yJp9clW1Q7UfQgZrE,4982
43
+ fairgraph/openminds/controlled_terms/action_status_type.py,sha256=70v9y7xzd2UvKkyao0Z9yR2CZR4ILGKK2gRr90Fgdgc,3234
44
+ fairgraph/openminds/controlled_terms/age_category.py,sha256=LW2ltojpnKwVMAQimMGsGx8FR5Ab0CFopOUxAKuDqc0,2965
45
+ fairgraph/openminds/controlled_terms/analysis_technique.py,sha256=v_oo908dh0dWbxXW_IWVWYznwueaNJO0R3L1jC1OQSw,3544
46
+ fairgraph/openminds/controlled_terms/anatomical_axes_orientation.py,sha256=m30DWdJuZLCkqCMZFP-GVRniBcTkfVckU85GvjGzpiQ,3030
47
+ fairgraph/openminds/controlled_terms/anatomical_identification_type.py,sha256=9tzdsbDeNcbVUrtb5mnlBgGPfw9rN2xcpZI7hjEEAEo,2919
48
+ fairgraph/openminds/controlled_terms/anatomical_plane.py,sha256=b68vFoWV9whJOUo5tynhmqA8MWJifYfnj0F8OIYjDec,2806
49
+ fairgraph/openminds/controlled_terms/annotation_criteria_type.py,sha256=JsU8DAGSWJaFY2CM-Nw3F4uITK1jZFKu8S4lbC3ol5Y,2915
50
+ fairgraph/openminds/controlled_terms/annotation_type.py,sha256=LQyZEDeczq1rTuIluNc4tmpsg6soS6ACimdSKSg6j5I,2817
51
+ fairgraph/openminds/controlled_terms/atlas_type.py,sha256=ta9P8DNry5jvszgR0BYi6z_LMl2kbHsLXZhqjX3E6EA,2697
52
+ fairgraph/openminds/controlled_terms/auditory_stimulus_type.py,sha256=1bQkSlyJRjTlGwq0PFC3jTP73_AiKF36u64aBbJ54cA,4461
53
+ fairgraph/openminds/controlled_terms/biological_order.py,sha256=T2BDt9Y6eQ6kso65x_X8n-_aZo9APTadtykZYLUTh1s,4101
54
+ fairgraph/openminds/controlled_terms/biological_process.py,sha256=1aV39KrLwpz-fu9rLiZeT9ECt1qEmds-hPu27mFe03M,2506
55
+ fairgraph/openminds/controlled_terms/biological_sex.py,sha256=CBNZKsC4D4rbFl1qmFTE5cq4YtAhI8nZYqqq_2uLMxE,4691
56
+ fairgraph/openminds/controlled_terms/breeding_type.py,sha256=2n_JKgguXs27-rrIczDD2CGyc9N_BV1FEgcDkb9Bvi8,4423
57
+ fairgraph/openminds/controlled_terms/cell_culture_type.py,sha256=ORc0hyNiuuEoIvVJH7v8zWsuEWM4KZLVN-LXrmD1eSI,4101
58
+ fairgraph/openminds/controlled_terms/cell_type.py,sha256=iBRDsLabD9N9ZteGe9KU7CQr1_TRokKdzM15-hPQx9Y,5321
59
+ fairgraph/openminds/controlled_terms/chemical_mixture_type.py,sha256=X4R-x_bPNQmRnCEiWSH7K5Gh-Vf3IRkhTH1dck-Gsi0,2805
60
+ fairgraph/openminds/controlled_terms/colormap.py,sha256=53osrpR-KF-zDsWdC29PtEm6irq5wKJ-PyiEmVNm7Os,2461
61
+ fairgraph/openminds/controlled_terms/contribution_type.py,sha256=sm4unEZP1ochk1vqRXdNgFQnQ8s8GQmtm8plnVyFNuE,2619
62
+ fairgraph/openminds/controlled_terms/cranial_window_construction_type.py,sha256=hTXE3bagKerFJCtxeuY37Ich3Vy2Mn1NTg8A9yPIFrs,2898
63
+ fairgraph/openminds/controlled_terms/cranial_window_reinforcement_type.py,sha256=kVlCQHkx0xBJfT_ZQaHZfplPKS2xSzVfRga_JqttzcA,2906
64
+ fairgraph/openminds/controlled_terms/criteria_quality_type.py,sha256=j21VZLvXDqZPToOUWbNRIusmczQ-fntBmJsyWajxYow,3039
65
+ fairgraph/openminds/controlled_terms/data_type.py,sha256=3U43XYt5dwqaftsUO0aj593HstakEcky0XPEXB8IwFY,2843
66
+ fairgraph/openminds/controlled_terms/device_type.py,sha256=WiZ-iCdyQdwamR6tC9RfmQ9bQ6bADVO2wLhr5HlZEss,2962
67
+ fairgraph/openminds/controlled_terms/difference_measure.py,sha256=AcvGRwUaqGv14d05CYQyRbDPu0-HjTOsCw3Tp2yTYw0,2837
68
+ fairgraph/openminds/controlled_terms/disease.py,sha256=5eVh2H9GbVR61XrydMXuLo83SgY5EonV2by8-xO8Hhg,4918
69
+ fairgraph/openminds/controlled_terms/disease_model.py,sha256=PQ8AnReVrhFRPXVQOMvjzsFPx35NgAFK75LEoISykX0,4925
70
+ fairgraph/openminds/controlled_terms/educational_level.py,sha256=E8df_71mydRbwxFHfU3Bif1dMFloixAxrpHlEYDbxVE,2501
71
+ fairgraph/openminds/controlled_terms/electrical_stimulus_type.py,sha256=WCfSFhmSu7JmanfKOAEwUENORWpzl53qJToykGA49XU,4760
72
+ fairgraph/openminds/controlled_terms/ethics_assessment.py,sha256=JYm7BL87mFeOyGa2GQTpzK900FICY-bIIxKLk7VJF_c,2569
73
+ fairgraph/openminds/controlled_terms/experimental_approach.py,sha256=XJhvtOnGAo0xmVDevZGiVc3AFN3bAL5W0VU9W7_TZOo,2521
74
+ fairgraph/openminds/controlled_terms/file_bundle_grouping.py,sha256=eSEtyZijOGITGiJIm8w4PCJeDhf98KvAUHfAHpw6Cok,3244
75
+ fairgraph/openminds/controlled_terms/file_repository_type.py,sha256=-6OO96q2PO8c2unCviVeqgMGwEGRQiGq1G9Iwm-LonU,2794
76
+ fairgraph/openminds/controlled_terms/file_usage_role.py,sha256=L-xv9VDtQihXU5dv-CZ6Z9-2dsPUpPS2GPeczBQsJIM,2901
77
+ fairgraph/openminds/controlled_terms/genetic_strain_type.py,sha256=LZqwIZ5FN0Fj4NPWKhsGJM8xUq9a6_JoVfGsO_VpmQA,4489
78
+ fairgraph/openminds/controlled_terms/gustatory_stimulus_type.py,sha256=p7eDk9vHc1S6O-dLZEPV3JI_NBexXNOdMS4bv_NB6uw,4466
79
+ fairgraph/openminds/controlled_terms/handedness.py,sha256=lDHsQ_FxwlPitQsNLTDlVfe1uL2hzZK-oshiSY6XAEY,4432
80
+ fairgraph/openminds/controlled_terms/language.py,sha256=eqY4sN7elryv6C2XtFj4u5TegvPumeRG1hYF6PtR7mA,2754
81
+ fairgraph/openminds/controlled_terms/laterality.py,sha256=hgslvaXoiT_vFWqOczx41rdHXfdbwATHZCwvkwF82V8,3042
82
+ fairgraph/openminds/controlled_terms/learning_resource_type.py,sha256=xc6TPsiSZkhVhy9hUOqprj606vrYgfmGl8laDnFAvks,2752
83
+ fairgraph/openminds/controlled_terms/measured_quantity.py,sha256=7YVtW-RK9152pubRcyNFJ69OXojUKLWFPcrGdMNXRLM,2823
84
+ fairgraph/openminds/controlled_terms/measured_signal_type.py,sha256=1-GNvchSCG8u2GVFDx9JoGX8sg19EFwnvQq2giSEX94,2511
85
+ fairgraph/openminds/controlled_terms/meta_data_model_type.py,sha256=YisiVl7jmWKC79iH6WyAIq_mg1FdXMmw1Z9tDwKDGro,2737
86
+ fairgraph/openminds/controlled_terms/model_abstraction_level.py,sha256=cCm4557CTvdY9MOk68no3bPSZBPjWCtKbuz1CecwoDc,2978
87
+ fairgraph/openminds/controlled_terms/model_scope.py,sha256=QC2BnMkK69JqsVBzPjGRY1VQ8qj52U8IvyxfCqRvTMc,2869
88
+ fairgraph/openminds/controlled_terms/molecular_entity.py,sha256=JMrMjaDIbcQSUUdXEM5cg4niyelsSHqeD0J5pwzICm0,5002
89
+ fairgraph/openminds/controlled_terms/mri_pulse_sequence.py,sha256=-2N0oiUkX40hQYgAFkqtnGGrZ8BWt4HuhwE07TgVmK0,3089
90
+ fairgraph/openminds/controlled_terms/mri_weighting.py,sha256=zkOJ-AfePhsKcK51XiiDMdutPMoFKCzP5Kjc3WY8P1A,3069
91
+ fairgraph/openminds/controlled_terms/olfactory_stimulus_type.py,sha256=2AZC3ODV3wXul6IGHZAsgSiQwhps5c38ytwd4Uy7aIU,4466
92
+ fairgraph/openminds/controlled_terms/operating_device.py,sha256=R_3XCEEt_Ddiuim-9VMZDGWMdH7UaY0GsEeXyhNU-08,2536
93
+ fairgraph/openminds/controlled_terms/operating_system.py,sha256=_YIwVSHqrtUa9dclvxULO49L0kzdkbtrME66TTvJnjE,2792
94
+ fairgraph/openminds/controlled_terms/optical_stimulus_type.py,sha256=A0_tDEaBA2j_GW-8s8ZuA3Sm_u_cmODELy669YvvsA4,4456
95
+ fairgraph/openminds/controlled_terms/organ.py,sha256=PtUTGL-UusDVjR_KytspEqI1eplGuQZd7vEGAbotEiU,5672
96
+ fairgraph/openminds/controlled_terms/organism_substance.py,sha256=zwOEwfVeW6DtVmVGKVWjywYnk_8rV8-DhfnJrJ8h_R8,5366
97
+ fairgraph/openminds/controlled_terms/organism_system.py,sha256=JZNjvb2IUuX8uURCA20h22QvrGEMSo72KfUVbJ_DgTA,4096
98
+ fairgraph/openminds/controlled_terms/patch_clamp_variation.py,sha256=vX6XMIYZ3slwe_VadVHGsOOV91zuPkxlvEAnsZ5Nrik,2801
99
+ fairgraph/openminds/controlled_terms/preparation_type.py,sha256=bnZ7b2O3Xu2-eEWUKk10kBHT4lVFv7nR9WAVrQKV53w,3284
100
+ fairgraph/openminds/controlled_terms/product_accessibility.py,sha256=f_nF8pKl1CiMHaz6jRa-FC_rfG6HR4tX-j3UAOmIS88,2521
101
+ fairgraph/openminds/controlled_terms/programming_language.py,sha256=DMmCsirPh2XpF25i9bjOFcwTbdIPN3tGA-IBK3J5Xl4,2832
102
+ fairgraph/openminds/controlled_terms/qualitative_overlap.py,sha256=zA3f6JKF3E_8VOg581NZHNspu-lQbtNzL8j7RcX-yH0,2511
103
+ fairgraph/openminds/controlled_terms/semantic_data_type.py,sha256=MyGx5VwEbkaVl7PF-p0evdcZchS0wg9HZ5ZZPrt54cY,2501
104
+ fairgraph/openminds/controlled_terms/service.py,sha256=jdiQg7KSDbeb_VF8B0HAt4Lfwd-8dlR31F1UdRw5HA4,2749
105
+ fairgraph/openminds/controlled_terms/setup_type.py,sha256=6vZyrFv4DiYtnTvJZi79ddlhXwJBQhK3gUz79i1iHNE,2742
106
+ fairgraph/openminds/controlled_terms/software_application_category.py,sha256=1owAKl1JmbAf2Srbd2uvYc8_O9EW_Yy_Dob38flqeXw,2636
107
+ fairgraph/openminds/controlled_terms/software_feature.py,sha256=WopPUIPz1ytnYnujWK8FcdIsFPF5jfYDmXaGKXhC0To,2496
108
+ fairgraph/openminds/controlled_terms/species.py,sha256=lwnT7ja0tdMKDFn1A5_1rqlCm9Oz5EG_WICx38S6Azo,5018
109
+ fairgraph/openminds/controlled_terms/stimulation_approach.py,sha256=ygJQlJPRqOKqavSFZpH18F0BA24PuDTshgOJcMTZ_Jg,3191
110
+ fairgraph/openminds/controlled_terms/stimulation_technique.py,sha256=Ba9PHKugQOD1NWXfifl3YxJKKS7WVpirN3cLnHA_onI,3196
111
+ fairgraph/openminds/controlled_terms/subcellular_entity.py,sha256=WX28Wxl1F_2w1xPxTm-6mIdaE6UCCJh_5LbB2C32jIE,5205
112
+ fairgraph/openminds/controlled_terms/subject_attribute.py,sha256=5EO_tHejbiubFwznUlePsgRu_C3ftJh41LRwII72-qs,2860
113
+ fairgraph/openminds/controlled_terms/tactile_stimulus_type.py,sha256=V1djoeQSRDFWP4n677usS0Q0zQpVDgR8mNWMc2iHL2k,4456
114
+ fairgraph/openminds/controlled_terms/technique.py,sha256=zJHCEJIj9br_BEoditKMRLCRTLK9sytUQP1XuXheI_s,3460
115
+ fairgraph/openminds/controlled_terms/term_suggestion.py,sha256=IxYC4XPGygVFP3EJJndze2fPL8eIpZdKkbzkef-kVwI,4297
116
+ fairgraph/openminds/controlled_terms/terminology.py,sha256=9h0nzrSJkCJGZkYzkg0yoSSqBUt0AmUKYIw_l6WzUS4,2837
117
+ fairgraph/openminds/controlled_terms/tissue_sample_attribute.py,sha256=rmn7xmdsZn-wt1Lbo63jYC3mFFBft1mJeIb1ukO_V48,2900
118
+ fairgraph/openminds/controlled_terms/tissue_sample_type.py,sha256=wax4jealy-f5eK8-pU7bCh8GI8XcQ4fkNFcepnYzWfg,4507
119
+ fairgraph/openminds/controlled_terms/type_of_uncertainty.py,sha256=jwFWF9uh8V7Yqb48UpK1WVXPMibV7v-vR3lmB9cHWKc,2820
120
+ fairgraph/openminds/controlled_terms/uberon_parcellation.py,sha256=BHJFUCDHwuuMcgfwcv1xUPkx548_GsFXeh8GjOq9sxQ,5576
121
+ fairgraph/openminds/controlled_terms/unit_of_measurement.py,sha256=Ja6RWhiwCc-9-de8LB9T1S2oRC1I3NrwqomKU556yJA,3373
122
+ fairgraph/openminds/controlled_terms/visual_stimulus_type.py,sha256=EMzOXuhlcJUfQ_umBh3GUWLWzUKHpHU4YOmetPWKp6k,4451
123
+ fairgraph/openminds/core/__init__.py,sha256=TvqqyfSk-gBY_tBMBMuPjPSHZsgmC8tVzOMUtfn0Oko,2458
124
+ fairgraph/openminds/core/actors/__init__.py,sha256=KEOFV8X0EnCzQ3Z0zNX6epBwlfvwv46bafGfNzdlqZc,281
125
+ fairgraph/openminds/core/actors/account_information.py,sha256=d8PqogDFsHTMnFqzRXAr5b2PzsBTdBa_76YsNbPgTuo,1325
126
+ fairgraph/openminds/core/actors/affiliation.py,sha256=hjQetoiNsgBEuyv463Uqmep0LvyUcZdDJJa8SednyEU,987
127
+ fairgraph/openminds/core/actors/consortium.py,sha256=Co5ezZwCgQ74agTwi_djGssWl40fQ23S4VdfgsdRLDk,5684
128
+ fairgraph/openminds/core/actors/contact_information.py,sha256=T8aYcbgKXBwmWaxgnCr_6toahuXwMuqjpM9sgxwk03M,1377
129
+ fairgraph/openminds/core/actors/contribution.py,sha256=XADkuz5FywNijGzgVLVTsAF55hwhMup_cmfTNme769M,831
130
+ fairgraph/openminds/core/actors/organization.py,sha256=lwShfwMfIRYEoteVL6GPhkItDQ4p3dlMmHcHrMlIUKY,6469
131
+ fairgraph/openminds/core/actors/person.py,sha256=4INEQQPzwzMTCOFsUfhT2TJlza-rXhiDQgmnFXYrIt0,7915
132
+ fairgraph/openminds/core/data/__init__.py,sha256=JMScu_B3RwY-LGT8DTrhnSCrHMGx49paWxP-L4CKp-0,502
133
+ fairgraph/openminds/core/data/content_type.py,sha256=4yQP_NRYtutsaOPaV65TID1cP3V86t6Ga-A1x-bMl5c,3416
134
+ fairgraph/openminds/core/data/content_type_pattern.py,sha256=E4eMHK0i1I-8bDJrUxFMvDPHIYWAAiJ0OhA7_9sfh1c,1430
135
+ fairgraph/openminds/core/data/copyright.py,sha256=p73KjgLvrWdsPzMw3uKP6pLX2QAwZYkpo7wofFDFBtY,740
136
+ fairgraph/openminds/core/data/file.py,sha256=cOGi-4uYSJ81xSjF1ZC6pCqGD_O8zVb_kxVKwf81pFo,9639
137
+ fairgraph/openminds/core/data/file_archive.py,sha256=FZpE0Iz1Ca99hJw8WKHa_NvRsBNExqYVP7HC-1vuquU,1858
138
+ fairgraph/openminds/core/data/file_bundle.py,sha256=z0O2h5u76osApKCUo0GzcStquqSkRGVorNf_UOZcc7A,4824
139
+ fairgraph/openminds/core/data/file_path_pattern.py,sha256=PrxY76bOLOvbIENF-yCaD8o3bDRnONoOHg84tCc8qkw,772
140
+ fairgraph/openminds/core/data/file_repository.py,sha256=dYIw8T89pTAosb1UMh00nAGTrsZwwKCx9qTRfyyf3rw,2902
141
+ fairgraph/openminds/core/data/file_repository_structure.py,sha256=JOV8b3Bwu6bepf8kUcAAK48RdEXZrnfJtRwyX950z9Y,1374
142
+ fairgraph/openminds/core/data/hash.py,sha256=Luqo_wdZ1Ir6Ett2IutpFNw1b4Av6omwOWlyahi2b-Q,713
143
+ fairgraph/openminds/core/data/license.py,sha256=hq22zbZ5UzQSLUlLtEB0AF8RwqGCHyT-_cHFHKp1NH0,2296
144
+ fairgraph/openminds/core/data/measurement.py,sha256=TNsDxmRJIQsCchs7QNdKGQSikWofh96nZ46nMbrx-eI,1246
145
+ fairgraph/openminds/core/data/service_link.py,sha256=Kyvh_NlEUOws9NewdNLajDMiBY4Kkfp-xoSeW2h1MeI,1219
146
+ fairgraph/openminds/core/digital_identifier/__init__.py,sha256=t9pDKhcuWQ114_RJjx8b0U8uhUnxKv_KcKlqWxS75jI,313
147
+ fairgraph/openminds/core/digital_identifier/doi.py,sha256=VK2EiOcIBD3ljpmqJShUgDJzFccWqNkBOjm6LfZ6jns,3504
148
+ fairgraph/openminds/core/digital_identifier/gridid.py,sha256=2Y1XYLXeblpP1K3X-ZU6gVijsTPdLXDM1EcewGoDlTs,1196
149
+ fairgraph/openminds/core/digital_identifier/handle.py,sha256=SOGnDTcgxGySpK-E7kb33zIqhLNvQPdKnJoffMKfTCU,1925
150
+ fairgraph/openminds/core/digital_identifier/identifiers_dot_org_id.py,sha256=NapLBHQhC8sMSrD4NbkB47ByRZMnWPrAxJojsvO7U4E,1234
151
+ fairgraph/openminds/core/digital_identifier/isbn.py,sha256=co_Gta9eE7LC3gGdLHNU8ks9zINtleeC4qBGcPxRFkc,2788
152
+ fairgraph/openminds/core/digital_identifier/issn.py,sha256=Uvc49QHOfDqXDOPI-PjnncRQmG1EfGfKizSGpx445Xk,2126
153
+ fairgraph/openminds/core/digital_identifier/orcid.py,sha256=dSCAjjYkruzeIJc9WLKsyk4DbFlSeAwoMwzyIYZCL_Y,1259
154
+ fairgraph/openminds/core/digital_identifier/rorid.py,sha256=5cI42dW2hExqLO6ISc1Ba2XvwmdSzEIkT_9xgm_w--8,1279
155
+ fairgraph/openminds/core/digital_identifier/rrid.py,sha256=S8NX4rsgsfZ403nzI_dsCTCxe_gXb4C2U2Jd-OszRlc,1941
156
+ fairgraph/openminds/core/digital_identifier/stock_number.py,sha256=mrmx-ZcGXF04Q8SVZGvpb_AFxeAub1CH3uKVsKkLOew,740
157
+ fairgraph/openminds/core/digital_identifier/swhid.py,sha256=RUIo5EOMmXU91OSvPajUVHXn0dfgIVwiWhUnYNjtr3c,1417
158
+ fairgraph/openminds/core/miscellaneous/__init__.py,sha256=jKJO35hu8y76_Jv6t0xHsI9Eroxdp8MC2xBhQtAQtZY,325
159
+ fairgraph/openminds/core/miscellaneous/comment.py,sha256=-80KXBKiZO3DBWzM3SKdvpLlaGnLCEr90Xq0ylslA4w,1252
160
+ fairgraph/openminds/core/miscellaneous/funding.py,sha256=tZx3t6h5Q7P9wXfQp15I_zydzwpdJ38AjncSWBksoi0,2163
161
+ fairgraph/openminds/core/miscellaneous/quantitative_value.py,sha256=WWdp4F3-01_z1F2rk7PXWSaK6P2E0WLj1GPx4GdaTD0,1104
162
+ fairgraph/openminds/core/miscellaneous/quantitative_value_array.py,sha256=1MhRQm3uXm0W0VVrbE_jIGyLNRmalXEryxAJEDRFI6c,1397
163
+ fairgraph/openminds/core/miscellaneous/quantitative_value_range.py,sha256=qGRrNzz9C1oUifLeKKWb9ppfypH6dterHDGP7tfPmCE,1144
164
+ fairgraph/openminds/core/miscellaneous/research_product_group.py,sha256=XmWUcgb-tzOk6Z60lFCi-hjeJUGWMxeA2nmW4Dze08s,864
165
+ fairgraph/openminds/core/miscellaneous/web_resource.py,sha256=u-6-LFY4nJgACkHQKUJs6Vhz5-xA-sK5BuKi1wCkaKs,3080
166
+ fairgraph/openminds/core/products/__init__.py,sha256=HgllJW2Yy7K5Oz_3t3e5CrXyc9sbI2esErKUp3SddKk,457
167
+ fairgraph/openminds/core/products/dataset.py,sha256=iHbaRyLGKGaqUJo_63F0dJ3iXdJP_On8oQ_7n2KneR8,2715
168
+ fairgraph/openminds/core/products/dataset_version.py,sha256=ER9nKZZWtRnZGZRaN6osXibwYAi9oWxmtprUL13WVAI,8587
169
+ fairgraph/openminds/core/products/meta_data_model.py,sha256=3UpaV-sfwJI01ZYqcBX3PAocH9Ajk__u3RkezCCx8MU,2614
170
+ fairgraph/openminds/core/products/meta_data_model_version.py,sha256=j7s4Uz9lxvqYUPDVG7FzYk5L9ed588kY47xR9x8u9RI,5467
171
+ fairgraph/openminds/core/products/model.py,sha256=F5bMS7LZrJc-9d1Iw_GspTlfcqFjxK8PfLgCpkE1SPQ,2921
172
+ fairgraph/openminds/core/products/model_version.py,sha256=ODzIVPyewwN2koNhSlPWoo1iurgJ8ZQ5XE_yF46xmZk,8053
173
+ fairgraph/openminds/core/products/project.py,sha256=tgwUOeuaOvHe-jy8oKemq3VnCa_yF-TlzfPSANcJa1o,1384
174
+ fairgraph/openminds/core/products/setup.py,sha256=CBkVNIqtyjfX2SxUNq01pBXsWJACmnblfa63Q1hclEQ,1737
175
+ fairgraph/openminds/core/products/software.py,sha256=DuLFj_jiE48mwjGgmOwcx0rznmH0Pdex9tQKtzmvLRI,2646
176
+ fairgraph/openminds/core/products/software_version.py,sha256=NUMtk2iOLDKVL3LqQsXZSu8sSG3GEDUUdFGx6LFVrKo,7416
177
+ fairgraph/openminds/core/products/web_service.py,sha256=DwFdPsB3xzyqZGHuHWyoZ5qU-xLCPU8i5gr99J7RDjU,2816
178
+ fairgraph/openminds/core/products/web_service_version.py,sha256=k6-1l5mSeA9_JjYXaENUmDpgEyEQGgRd8lZS_iGi53E,5958
179
+ fairgraph/openminds/core/research/__init__.py,sha256=hrFucSlQ2PtH6MuY-Zi5SO104aBk56O2rCMYqiNc1A8,781
180
+ fairgraph/openminds/core/research/behavioral_protocol.py,sha256=8Oj9NUatPbiHVbV_PlQuZM4EuoO5PfXLUU_L67ZlvTk,2098
181
+ fairgraph/openminds/core/research/configuration.py,sha256=t2Pk6OT9Dv0_8DNYn8BRSKTMv7bnFI0T5U9TQIsmnc8,1973
182
+ fairgraph/openminds/core/research/custom_property_set.py,sha256=NouN0PSX6glAsSzgXAhx3oRmCSc5mTt1LWvKixDzskw,1032
183
+ fairgraph/openminds/core/research/numerical_property.py,sha256=74pnOwngFA1XaumZ2tkZFea-o9K8y2cCUJRmi5kvnm8,872
184
+ fairgraph/openminds/core/research/property_value_list.py,sha256=UZqKgArrVcI7ourXS70DQR8iGBC77ZHhzmt47MDGk0k,2170
185
+ fairgraph/openminds/core/research/protocol.py,sha256=sAZFMSnB0j9K7U5dxLTPtpUdkO5v9YRwHrpaPmNCp64,1970
186
+ fairgraph/openminds/core/research/protocol_execution.py,sha256=bqTJ04J9SLMUyP_ZEpQwSOPeXOmcukgu4aFaFuOXTQA,2217
187
+ fairgraph/openminds/core/research/strain.py,sha256=3_83rAvFuSiDv3ted48eM5gx0qNlJPL365G3a94GjFM,2689
188
+ fairgraph/openminds/core/research/string_property.py,sha256=PZqXxYNHUqfKiLHTdRmx4BXFwwiwanT4w9fjPNZGMBg,727
189
+ fairgraph/openminds/core/research/subject.py,sha256=LmE0Oip2HXeaS93oT_7ykaO_1LbGWT3N9seY0YlR-D8,2287
190
+ fairgraph/openminds/core/research/subject_group.py,sha256=pJW36HmEvD4RLEGpQ0a-0EpuRMiDGsFFbd3-Vl3c6S4,2696
191
+ fairgraph/openminds/core/research/subject_group_state.py,sha256=qSMGeF8Nvm1rootyRwpBZdjZDGPv259r3C1cxQNcHKk,3442
192
+ fairgraph/openminds/core/research/subject_state.py,sha256=hgRECtqV_lKR4POyfJEJqazKs0-gbP1vttIOI-onUSc,4305
193
+ fairgraph/openminds/core/research/tissue_sample.py,sha256=uI4KZGEsPhehzYRawkOC7HzmHGXSDz2TvWdAESfJIJQ,2570
194
+ fairgraph/openminds/core/research/tissue_sample_collection.py,sha256=GYNDk31Q-3gPF4d5ijUzAGtlFrnjUgF2So2D-GjXOKQ,3021
195
+ fairgraph/openminds/core/research/tissue_sample_collection_state.py,sha256=aukpV9DRqdM45nZ1QwvNHWg3Ab3M9x64veQ-M7rRZZ8,3381
196
+ fairgraph/openminds/core/research/tissue_sample_state.py,sha256=tFhJaOhng9e1c8stXElIgCq8YIQVtmQgoMwdC9usMbA,4020
197
+ fairgraph/openminds/ephys/__init__.py,sha256=S-TMTXGdKMEftLrpyPirqyOMsYzFaMT6nnBr6ujTG6U,1344
198
+ fairgraph/openminds/ephys/activity/__init__.py,sha256=5uRgGU5vjIT6XdVgSWDKnE-yr1--gAaiyKZfcuUMTDc,142
199
+ fairgraph/openminds/ephys/activity/cell_patching.py,sha256=ScFfhDcLkMcRj--8GNKxc3qC3sh5oRK0EtvQZYmI_aI,2004
200
+ fairgraph/openminds/ephys/activity/electrode_placement.py,sha256=fD1UHBJQylMlGZQE8CHMe5UOL0IuVS7GeZHN9GwaB1s,1809
201
+ fairgraph/openminds/ephys/activity/recording_activity.py,sha256=DSvMzTIg5ac2BWA6jcJJKAE7ath3j-2WyQdVtfUuvB4,1816
202
+ fairgraph/openminds/ephys/device/__init__.py,sha256=688WguAybGgDea93CsvNpYZ2qKxhwBVhF8a6TerWZWA,245
203
+ fairgraph/openminds/ephys/device/electrode.py,sha256=aQg6Rh_14j3qNJG2bBzRBmty1xKbMXCBSOYltVVLO3E,2267
204
+ fairgraph/openminds/ephys/device/electrode_array.py,sha256=PiOO87eDl5xoeW1_zjD7GgUb090BeMgdeBwb1RJ38b0,2492
205
+ fairgraph/openminds/ephys/device/electrode_array_usage.py,sha256=EeAFz5TIpijkxC0ebTU_0ckCma2JGQbinc5WBHNm_P0,3290
206
+ fairgraph/openminds/ephys/device/electrode_usage.py,sha256=BaM4AAha5OvEYERjCiQ2mwFUMFJKdZavy_MsHKM6Fyk,2977
207
+ fairgraph/openminds/ephys/device/pipette.py,sha256=SgbxnosHwxYOtgKDcU9C_QTz5x_r3dtTmWsgqDqlBvI,2189
208
+ fairgraph/openminds/ephys/device/pipette_usage.py,sha256=bKE5C-8YiUmoKrs_pQHRs2TNItlV27AYZtjfasEhiIs,3948
209
+ fairgraph/openminds/ephys/entity/__init__.py,sha256=KJqMNq1as9K9lauMU6tdhu46cpvotH5eJ30hb2Sl_Us,62
210
+ fairgraph/openminds/ephys/entity/channel.py,sha256=uS1j7DClPuJeUfV27WqCAxqSgk8N9WGyrbpeOKfOp0w,749
211
+ fairgraph/openminds/ephys/entity/recording.py,sha256=Iw4EN74ck_wqpa2X7Xi7JZYI_4igZSRyRecnIQDsltM,1797
212
+ fairgraph/openminds/publications/__init__.py,sha256=YFFcx_0uWpyJZTr_5xx_YNKopgj-uu-JHANLZJJ-5Og,1598
213
+ fairgraph/openminds/publications/book.py,sha256=nVvgza6ZVVRa47vOOnPN9I2QrJ864pN11C3oj7FTcuo,3124
214
+ fairgraph/openminds/publications/chapter.py,sha256=31fqzZH6Fwmotk32Vb2c5XRU_QPpeCmBm7jBw6iA1Ng,2988
215
+ fairgraph/openminds/publications/learning_resource.py,sha256=COKQTzOftGoPC5HzeZ5X5jNFJ_Y3Sj3nT0bO0H6vekI,2468
216
+ fairgraph/openminds/publications/live_paper.py,sha256=jps_kieEflZM9LM1EgZzq83ObWsB9jXD6oLBbd2_I3g,2602
217
+ fairgraph/openminds/publications/live_paper_resource_item.py,sha256=n1oG6Ac9o7W2tgG3aq0DeuQJ1HGnM9ur9B-6QslTyhU,1466
218
+ fairgraph/openminds/publications/live_paper_section.py,sha256=wrfKZ_gw5MN6H8g11mBl_Z90FC8o0L9nBlhDLGnGA8k,1465
219
+ fairgraph/openminds/publications/live_paper_version.py,sha256=H5Xnd881Z69zCMaInczjSKeNXs7rgFtsu6RNev5fUzQ,5678
220
+ fairgraph/openminds/publications/periodical.py,sha256=lfcJVdBZCxCL4zbXRE3GqHgvCUSGl_s8rwRPXA7h-Ao,1349
221
+ fairgraph/openminds/publications/publication_issue.py,sha256=3DbIauqle9_MRcDyXQTRwhF8CxMQIHRuq9lewlXmdIo,1268
222
+ fairgraph/openminds/publications/publication_volume.py,sha256=a7N5w2SYbws6VaTajhRCyiYlTf-4mpUn4lKi77JbH8U,1325
223
+ fairgraph/openminds/publications/scholarly_article.py,sha256=vhKLL25an4y8RuU8s2_ydBl0YJ6QiXvzj11_ghPE-ik,5218
224
+ fairgraph/openminds/sands/__init__.py,sha256=1cfJyY3uWq3w5lroh3PGH44IARu1SHP6lWlUIA1OlkU,1731
225
+ fairgraph/openminds/sands/atlas/__init__.py,sha256=ihU7EHdUliCjmTFhN7dFX5meY3AjrPGH_xKxqQsRbAk,524
226
+ fairgraph/openminds/sands/atlas/atlas_annotation.py,sha256=cJt4QIu63CYOfSkG_I4NCGEE3aOJXCd14nTQshBK15M,1512
227
+ fairgraph/openminds/sands/atlas/brain_atlas.py,sha256=MMWbQFPU2ESLnn-b6DWKhIu55rnAkj3V5iBbM4DMIv4,3189
228
+ fairgraph/openminds/sands/atlas/brain_atlas_version.py,sha256=8guDd4h5JfgkRO1dFF5DMN4KAuR25rb6UnCQSjGaN0s,7459
229
+ fairgraph/openminds/sands/atlas/common_coordinate_space.py,sha256=WCrPtfLloLgl3H9AXjgjlUVNwhf2LPe-Q7L-q75dxpc,3505
230
+ fairgraph/openminds/sands/atlas/common_coordinate_space_version.py,sha256=n5eh6TLfdyw5S-Ybt4NXT8mng16fDXFzYDOzetj1uu0,8503
231
+ fairgraph/openminds/sands/atlas/parcellation_entity.py,sha256=k2tQDnNNZZID4qjrjf_Pf8h1Q5Zm5mWUW-lfM17Y4Hk,4699
232
+ fairgraph/openminds/sands/atlas/parcellation_entity_version.py,sha256=jbq-r63KW-JLogvdkFD_UQgwpL4h5W7HsSHyRJtlolg,5710
233
+ fairgraph/openminds/sands/atlas/parcellation_terminology.py,sha256=Om2PfiLBPJMFGRqZOYLu-LCVS3TvJPHwWImjHEUQnMs,1036
234
+ fairgraph/openminds/sands/atlas/parcellation_terminology_version.py,sha256=SMtiC63K9L_4x3cpMrg6O4_WbGPtEwY0sZQsArZdNks,1090
235
+ fairgraph/openminds/sands/mathematical_shapes/__init__.py,sha256=JVNp2VtIlIHFVinDKQCVzXhs6IZcRqEvSkmXxObHdss,89
236
+ fairgraph/openminds/sands/mathematical_shapes/circle.py,sha256=QIKUl0eUckVFg19Kk7IRA90evFztXrXLua9qm_gZwW0,663
237
+ fairgraph/openminds/sands/mathematical_shapes/ellipse.py,sha256=TTT5v8SAPj5OK7YlNlnPFHem2of9SiQnakmPFOYdem4,813
238
+ fairgraph/openminds/sands/mathematical_shapes/rectangle.py,sha256=kh_JJiYiBLXaZd3kPKYvM7X8_QpEhUSpnJUMCguIIyI,711
239
+ fairgraph/openminds/sands/miscellaneous/__init__.py,sha256=PTsuwUEC7ufc2LGrjFsg6GzaT4lX_IwyOdFcLRtITbU,355
240
+ fairgraph/openminds/sands/miscellaneous/anatomical_target_position.py,sha256=cMK074zSljQ7Ds44qXk3n8hUiQT3mIuC22yQ7BSjDL8,1205
241
+ fairgraph/openminds/sands/miscellaneous/coordinate_point.py,sha256=njVA88rgK_SM-hAP5TRdclajE_vqvm9kRx-3X0n-Irs,805
242
+ fairgraph/openminds/sands/miscellaneous/qualitative_relation_assessment.py,sha256=7Yt9Ii9SJNGmYdlHAuVzNtpWLcI5iTfhxx64FMB8q20,1026
243
+ fairgraph/openminds/sands/miscellaneous/quantitative_relation_assessment.py,sha256=rBmygCG92kx6dEvpKcUKg94kunBRNW2zf9ixzgC21ow,1084
244
+ fairgraph/openminds/sands/miscellaneous/single_color.py,sha256=ZagCgN0ZLfcxXVOfB3TI-XGs5fFQqXcWHIugW1mDoNM,739
245
+ fairgraph/openminds/sands/miscellaneous/viewer_specification.py,sha256=J8dEN7D6LdkSskscTgc0To0hZPlZGF_OfSTPso-VjFQ,1116
246
+ fairgraph/openminds/sands/non_atlas/__init__.py,sha256=11YbCrQ5RW8rmo81R8gpaOcfCDa9ph4KCbpz61cexgY,168
247
+ fairgraph/openminds/sands/non_atlas/custom_anatomical_entity.py,sha256=f9YVcTCj5idXHOrHChcjwLTkZ9VVTSkxo7fdkcby7Mw,3938
248
+ fairgraph/openminds/sands/non_atlas/custom_annotation.py,sha256=kABEpv6ehW99oXnOSdMB2bWp44sJdNonHbnPyFKrMy8,1615
249
+ fairgraph/openminds/sands/non_atlas/custom_coordinate_space.py,sha256=exutz92nuDspBcdzCLsQC1TL0T4vexgyKxuOYL_EtSo,1931
250
+ fairgraph/openminds/specimen_prep/__init__.py,sha256=QqyiyS6MRE65PdsY3r-6dtHnYLJg_OVqpZKplA7-6cE,1273
251
+ fairgraph/openminds/specimen_prep/activity/__init__.py,sha256=aAS7bU1F9QApY8i4xrADRhq7-ERTL_gzjXGIWGPUknw,185
252
+ fairgraph/openminds/specimen_prep/activity/cranial_window_preparation.py,sha256=rOidHazm9lyntZjNngO2Ix26JeiKAD7yjy-gmInpX04,1943
253
+ fairgraph/openminds/specimen_prep/activity/tissue_culture_preparation.py,sha256=xQF6V0Juw1KJb5tyZ1usPi84AhQndxwb1zi8ZoeQaRc,1859
254
+ fairgraph/openminds/specimen_prep/activity/tissue_sample_slicing.py,sha256=1-8ZGRpAkv3d_V7Qw4UG1TjTwCzCRn8pOIL19BLhi-k,1897
255
+ fairgraph/openminds/specimen_prep/device/__init__.py,sha256=IJxIHrAeaNRj1aGawE7RcCwWMhwFRy1ducnX_0M-1DQ,95
256
+ fairgraph/openminds/specimen_prep/device/slicing_device.py,sha256=mpGu7Cyoalr3HzkasjAdMq8YbY-UqssziljewR88rAY,1938
257
+ fairgraph/openminds/specimen_prep/device/slicing_device_usage.py,sha256=ez-Vd9dluOd0_VgPTllV21qT3gOIDDOqLR8V4lY1tm4,3474
258
+ fairgraph/openminds/stimulation/__init__.py,sha256=_MAoTENOobTjj46RQJkNAoQfg7ZwWKVe94kFBBnGHhA,1203
259
+ fairgraph/openminds/stimulation/activity/__init__.py,sha256=bgro2JtkAFoUZbfgtlNhLeX1tjUxUQqjcNs96AQKCZE,54
260
+ fairgraph/openminds/stimulation/activity/stimulation_activity.py,sha256=0w-wk8SXm9d6yOzqRShYaGCZ7q1zUsUvKnJtNPWriBg,1790
261
+ fairgraph/openminds/stimulation/stimulus/__init__.py,sha256=9WwCILLgJ16a05-fiHKeWQY6U9uMCQmRYjiW99z9RuY,42
262
+ fairgraph/openminds/stimulation/stimulus/ephys_stimulus.py,sha256=ILIn1cQkMrj5jUgxkGzVYQ9t2Oa5W0yFNaT8XJMISLc,1695
263
+ fairgraph-0.13.0.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
264
+ fairgraph-0.13.0.dist-info/METADATA,sha256=BNpzUZLRHIJPPO2BBMcMTnfMzGrt47RdmPxVkBiJH-M,8292
265
+ fairgraph-0.13.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
266
+ fairgraph-0.13.0.dist-info/top_level.txt,sha256=2_xNfZHRgdVSf4Erjx-hnzR523LlLGKdUfWrtTiMygU,10
267
+ fairgraph-0.13.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+