fairgraph 0.13.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fairgraph/__init__.py +61 -0
- fairgraph/base.py +104 -0
- fairgraph/caching.py +52 -0
- fairgraph/client.py +867 -0
- fairgraph/collection.py +104 -0
- fairgraph/embedded.py +122 -0
- fairgraph/errors.py +47 -0
- fairgraph/fields.py +11 -0
- fairgraph/kgobject.py +1087 -0
- fairgraph/kgproxy.py +178 -0
- fairgraph/kgquery.py +151 -0
- fairgraph/node.py +488 -0
- fairgraph/openminds/__init__.py +1 -0
- fairgraph/openminds/chemicals/__init__.py +40 -0
- fairgraph/openminds/chemicals/amount_of_chemical.py +23 -0
- fairgraph/openminds/chemicals/chemical_mixture.py +72 -0
- fairgraph/openminds/chemicals/chemical_substance.py +67 -0
- fairgraph/openminds/chemicals/product_source.py +57 -0
- fairgraph/openminds/computation/__init__.py +53 -0
- fairgraph/openminds/computation/data_analysis.py +104 -0
- fairgraph/openminds/computation/data_copy.py +104 -0
- fairgraph/openminds/computation/environment.py +66 -0
- fairgraph/openminds/computation/generic_computation.py +104 -0
- fairgraph/openminds/computation/hardware_system.py +53 -0
- fairgraph/openminds/computation/launch_configuration.py +68 -0
- fairgraph/openminds/computation/local_file.py +83 -0
- fairgraph/openminds/computation/model_validation.py +107 -0
- fairgraph/openminds/computation/optimization.py +104 -0
- fairgraph/openminds/computation/simulation.py +104 -0
- fairgraph/openminds/computation/software_agent.py +81 -0
- fairgraph/openminds/computation/validation_test.py +105 -0
- fairgraph/openminds/computation/validation_test_version.py +180 -0
- fairgraph/openminds/computation/visualization.py +104 -0
- fairgraph/openminds/computation/workflow_execution.py +44 -0
- fairgraph/openminds/computation/workflow_recipe.py +95 -0
- fairgraph/openminds/computation/workflow_recipe_version.py +185 -0
- fairgraph/openminds/controlled_terms/__init__.py +116 -0
- fairgraph/openminds/controlled_terms/action_status_type.py +97 -0
- fairgraph/openminds/controlled_terms/age_category.py +89 -0
- fairgraph/openminds/controlled_terms/analysis_technique.py +108 -0
- fairgraph/openminds/controlled_terms/anatomical_axes_orientation.py +89 -0
- fairgraph/openminds/controlled_terms/anatomical_identification_type.py +89 -0
- fairgraph/openminds/controlled_terms/anatomical_plane.py +89 -0
- fairgraph/openminds/controlled_terms/annotation_criteria_type.py +89 -0
- fairgraph/openminds/controlled_terms/annotation_type.py +89 -0
- fairgraph/openminds/controlled_terms/atlas_type.py +88 -0
- fairgraph/openminds/controlled_terms/auditory_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/biological_order.py +117 -0
- fairgraph/openminds/controlled_terms/biological_process.py +79 -0
- fairgraph/openminds/controlled_terms/biological_sex.py +132 -0
- fairgraph/openminds/controlled_terms/breeding_type.py +127 -0
- fairgraph/openminds/controlled_terms/cell_culture_type.py +117 -0
- fairgraph/openminds/controlled_terms/cell_type.py +151 -0
- fairgraph/openminds/controlled_terms/chemical_mixture_type.py +89 -0
- fairgraph/openminds/controlled_terms/colormap.py +79 -0
- fairgraph/openminds/controlled_terms/contribution_type.py +79 -0
- fairgraph/openminds/controlled_terms/cranial_window_construction_type.py +89 -0
- fairgraph/openminds/controlled_terms/cranial_window_reinforcement_type.py +89 -0
- fairgraph/openminds/controlled_terms/criteria_quality_type.py +89 -0
- fairgraph/openminds/controlled_terms/data_type.py +89 -0
- fairgraph/openminds/controlled_terms/device_type.py +94 -0
- fairgraph/openminds/controlled_terms/difference_measure.py +89 -0
- fairgraph/openminds/controlled_terms/disease.py +142 -0
- fairgraph/openminds/controlled_terms/disease_model.py +142 -0
- fairgraph/openminds/controlled_terms/educational_level.py +79 -0
- fairgraph/openminds/controlled_terms/electrical_stimulus_type.py +137 -0
- fairgraph/openminds/controlled_terms/ethics_assessment.py +79 -0
- fairgraph/openminds/controlled_terms/experimental_approach.py +79 -0
- fairgraph/openminds/controlled_terms/file_bundle_grouping.py +99 -0
- fairgraph/openminds/controlled_terms/file_repository_type.py +89 -0
- fairgraph/openminds/controlled_terms/file_usage_role.py +89 -0
- fairgraph/openminds/controlled_terms/genetic_strain_type.py +127 -0
- fairgraph/openminds/controlled_terms/gustatory_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/handedness.py +127 -0
- fairgraph/openminds/controlled_terms/language.py +88 -0
- fairgraph/openminds/controlled_terms/laterality.py +94 -0
- fairgraph/openminds/controlled_terms/learning_resource_type.py +88 -0
- fairgraph/openminds/controlled_terms/measured_quantity.py +89 -0
- fairgraph/openminds/controlled_terms/measured_signal_type.py +79 -0
- fairgraph/openminds/controlled_terms/meta_data_model_type.py +88 -0
- fairgraph/openminds/controlled_terms/model_abstraction_level.py +89 -0
- fairgraph/openminds/controlled_terms/model_scope.py +89 -0
- fairgraph/openminds/controlled_terms/molecular_entity.py +142 -0
- fairgraph/openminds/controlled_terms/mri_pulse_sequence.py +98 -0
- fairgraph/openminds/controlled_terms/mri_weighting.py +98 -0
- fairgraph/openminds/controlled_terms/olfactory_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/operating_device.py +79 -0
- fairgraph/openminds/controlled_terms/operating_system.py +88 -0
- fairgraph/openminds/controlled_terms/optical_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/organ.py +161 -0
- fairgraph/openminds/controlled_terms/organism_substance.py +151 -0
- fairgraph/openminds/controlled_terms/organism_system.py +117 -0
- fairgraph/openminds/controlled_terms/patch_clamp_variation.py +89 -0
- fairgraph/openminds/controlled_terms/preparation_type.py +98 -0
- fairgraph/openminds/controlled_terms/product_accessibility.py +79 -0
- fairgraph/openminds/controlled_terms/programming_language.py +88 -0
- fairgraph/openminds/controlled_terms/qualitative_overlap.py +79 -0
- fairgraph/openminds/controlled_terms/semantic_data_type.py +79 -0
- fairgraph/openminds/controlled_terms/service.py +89 -0
- fairgraph/openminds/controlled_terms/setup_type.py +89 -0
- fairgraph/openminds/controlled_terms/software_application_category.py +79 -0
- fairgraph/openminds/controlled_terms/software_feature.py +79 -0
- fairgraph/openminds/controlled_terms/species.py +143 -0
- fairgraph/openminds/controlled_terms/stimulation_approach.py +98 -0
- fairgraph/openminds/controlled_terms/stimulation_technique.py +98 -0
- fairgraph/openminds/controlled_terms/subcellular_entity.py +143 -0
- fairgraph/openminds/controlled_terms/subject_attribute.py +89 -0
- fairgraph/openminds/controlled_terms/tactile_stimulus_type.py +127 -0
- fairgraph/openminds/controlled_terms/technique.py +108 -0
- fairgraph/openminds/controlled_terms/term_suggestion.py +121 -0
- fairgraph/openminds/controlled_terms/terminology.py +89 -0
- fairgraph/openminds/controlled_terms/tissue_sample_attribute.py +89 -0
- fairgraph/openminds/controlled_terms/tissue_sample_type.py +127 -0
- fairgraph/openminds/controlled_terms/type_of_uncertainty.py +89 -0
- fairgraph/openminds/controlled_terms/uberon_parcellation.py +153 -0
- fairgraph/openminds/controlled_terms/unit_of_measurement.py +108 -0
- fairgraph/openminds/controlled_terms/visual_stimulus_type.py +127 -0
- fairgraph/openminds/controlledterms.py +6 -0
- fairgraph/openminds/core/__init__.py +107 -0
- fairgraph/openminds/core/actors/__init__.py +7 -0
- fairgraph/openminds/core/actors/account_information.py +44 -0
- fairgraph/openminds/core/actors/affiliation.py +30 -0
- fairgraph/openminds/core/actors/consortium.py +175 -0
- fairgraph/openminds/core/actors/contact_information.py +43 -0
- fairgraph/openminds/core/actors/contribution.py +23 -0
- fairgraph/openminds/core/actors/organization.py +199 -0
- fairgraph/openminds/core/actors/person.py +236 -0
- fairgraph/openminds/core/data/__init__.py +13 -0
- fairgraph/openminds/core/data/content_type.py +107 -0
- fairgraph/openminds/core/data/content_type_pattern.py +53 -0
- fairgraph/openminds/core/data/copyright.py +23 -0
- fairgraph/openminds/core/data/file.py +275 -0
- fairgraph/openminds/core/data/file_archive.py +71 -0
- fairgraph/openminds/core/data/file_bundle.py +150 -0
- fairgraph/openminds/core/data/file_path_pattern.py +23 -0
- fairgraph/openminds/core/data/file_repository.py +99 -0
- fairgraph/openminds/core/data/file_repository_structure.py +51 -0
- fairgraph/openminds/core/data/hash.py +23 -0
- fairgraph/openminds/core/data/license.py +77 -0
- fairgraph/openminds/core/data/measurement.py +45 -0
- fairgraph/openminds/core/data/service_link.py +49 -0
- fairgraph/openminds/core/digital_identifier/__init__.py +11 -0
- fairgraph/openminds/core/digital_identifier/doi.py +98 -0
- fairgraph/openminds/core/digital_identifier/gridid.py +41 -0
- fairgraph/openminds/core/digital_identifier/handle.py +52 -0
- fairgraph/openminds/core/digital_identifier/identifiers_dot_org_id.py +41 -0
- fairgraph/openminds/core/digital_identifier/isbn.py +88 -0
- fairgraph/openminds/core/digital_identifier/issn.py +63 -0
- fairgraph/openminds/core/digital_identifier/orcid.py +41 -0
- fairgraph/openminds/core/digital_identifier/rorid.py +41 -0
- fairgraph/openminds/core/digital_identifier/rrid.py +55 -0
- fairgraph/openminds/core/digital_identifier/stock_number.py +23 -0
- fairgraph/openminds/core/digital_identifier/swhid.py +48 -0
- fairgraph/openminds/core/miscellaneous/__init__.py +7 -0
- fairgraph/openminds/core/miscellaneous/comment.py +47 -0
- fairgraph/openminds/core/miscellaneous/funding.py +70 -0
- fairgraph/openminds/core/miscellaneous/quantitative_value.py +43 -0
- fairgraph/openminds/core/miscellaneous/quantitative_value_array.py +49 -0
- fairgraph/openminds/core/miscellaneous/quantitative_value_range.py +43 -0
- fairgraph/openminds/core/miscellaneous/research_product_group.py +26 -0
- fairgraph/openminds/core/miscellaneous/web_resource.py +104 -0
- fairgraph/openminds/core/products/__init__.py +12 -0
- fairgraph/openminds/core/products/dataset.py +95 -0
- fairgraph/openminds/core/products/dataset_version.py +240 -0
- fairgraph/openminds/core/products/meta_data_model.py +95 -0
- fairgraph/openminds/core/products/meta_data_model_version.py +168 -0
- fairgraph/openminds/core/products/model.py +103 -0
- fairgraph/openminds/core/products/model_version.py +235 -0
- fairgraph/openminds/core/products/project.py +56 -0
- fairgraph/openminds/core/products/setup.py +69 -0
- fairgraph/openminds/core/products/software.py +95 -0
- fairgraph/openminds/core/products/software_version.py +226 -0
- fairgraph/openminds/core/products/web_service.py +103 -0
- fairgraph/openminds/core/products/web_service_version.py +182 -0
- fairgraph/openminds/core/research/__init__.py +17 -0
- fairgraph/openminds/core/research/behavioral_protocol.py +69 -0
- fairgraph/openminds/core/research/configuration.py +67 -0
- fairgraph/openminds/core/research/custom_property_set.py +27 -0
- fairgraph/openminds/core/research/numerical_property.py +23 -0
- fairgraph/openminds/core/research/property_value_list.py +71 -0
- fairgraph/openminds/core/research/protocol.py +67 -0
- fairgraph/openminds/core/research/protocol_execution.py +76 -0
- fairgraph/openminds/core/research/strain.py +90 -0
- fairgraph/openminds/core/research/string_property.py +23 -0
- fairgraph/openminds/core/research/subject.py +79 -0
- fairgraph/openminds/core/research/subject_group.py +91 -0
- fairgraph/openminds/core/research/subject_group_state.py +113 -0
- fairgraph/openminds/core/research/subject_state.py +138 -0
- fairgraph/openminds/core/research/tissue_sample.py +87 -0
- fairgraph/openminds/core/research/tissue_sample_collection.py +99 -0
- fairgraph/openminds/core/research/tissue_sample_collection_state.py +109 -0
- fairgraph/openminds/core/research/tissue_sample_state.py +127 -0
- fairgraph/openminds/ephys/__init__.py +39 -0
- fairgraph/openminds/ephys/activity/__init__.py +3 -0
- fairgraph/openminds/ephys/activity/cell_patching.py +73 -0
- fairgraph/openminds/ephys/activity/electrode_placement.py +67 -0
- fairgraph/openminds/ephys/activity/recording_activity.py +67 -0
- fairgraph/openminds/ephys/device/__init__.py +6 -0
- fairgraph/openminds/ephys/device/electrode.py +81 -0
- fairgraph/openminds/ephys/device/electrode_array.py +85 -0
- fairgraph/openminds/ephys/device/electrode_array_usage.py +105 -0
- fairgraph/openminds/ephys/device/electrode_usage.py +101 -0
- fairgraph/openminds/ephys/device/pipette.py +81 -0
- fairgraph/openminds/ephys/device/pipette_usage.py +123 -0
- fairgraph/openminds/ephys/entity/__init__.py +2 -0
- fairgraph/openminds/ephys/entity/channel.py +23 -0
- fairgraph/openminds/ephys/entity/recording.py +63 -0
- fairgraph/openminds/publications/__init__.py +47 -0
- fairgraph/openminds/publications/book.py +106 -0
- fairgraph/openminds/publications/chapter.py +100 -0
- fairgraph/openminds/publications/learning_resource.py +90 -0
- fairgraph/openminds/publications/live_paper.py +95 -0
- fairgraph/openminds/publications/live_paper_resource_item.py +58 -0
- fairgraph/openminds/publications/live_paper_section.py +57 -0
- fairgraph/openminds/publications/live_paper_version.py +177 -0
- fairgraph/openminds/publications/periodical.py +53 -0
- fairgraph/openminds/publications/publication_issue.py +44 -0
- fairgraph/openminds/publications/publication_volume.py +44 -0
- fairgraph/openminds/publications/scholarly_article.py +146 -0
- fairgraph/openminds/sands/__init__.py +57 -0
- fairgraph/openminds/sands/atlas/__init__.py +9 -0
- fairgraph/openminds/sands/atlas/atlas_annotation.py +52 -0
- fairgraph/openminds/sands/atlas/brain_atlas.py +113 -0
- fairgraph/openminds/sands/atlas/brain_atlas_version.py +213 -0
- fairgraph/openminds/sands/atlas/common_coordinate_space.py +121 -0
- fairgraph/openminds/sands/atlas/common_coordinate_space_version.py +243 -0
- fairgraph/openminds/sands/atlas/parcellation_entity.py +133 -0
- fairgraph/openminds/sands/atlas/parcellation_entity_version.py +162 -0
- fairgraph/openminds/sands/atlas/parcellation_terminology.py +38 -0
- fairgraph/openminds/sands/atlas/parcellation_terminology_version.py +38 -0
- fairgraph/openminds/sands/mathematical_shapes/__init__.py +3 -0
- fairgraph/openminds/sands/mathematical_shapes/circle.py +23 -0
- fairgraph/openminds/sands/mathematical_shapes/ellipse.py +27 -0
- fairgraph/openminds/sands/mathematical_shapes/rectangle.py +23 -0
- fairgraph/openminds/sands/miscellaneous/__init__.py +6 -0
- fairgraph/openminds/sands/miscellaneous/anatomical_target_position.py +40 -0
- fairgraph/openminds/sands/miscellaneous/coordinate_point.py +23 -0
- fairgraph/openminds/sands/miscellaneous/qualitative_relation_assessment.py +34 -0
- fairgraph/openminds/sands/miscellaneous/quantitative_relation_assessment.py +38 -0
- fairgraph/openminds/sands/miscellaneous/single_color.py +24 -0
- fairgraph/openminds/sands/miscellaneous/viewer_specification.py +40 -0
- fairgraph/openminds/sands/non_atlas/__init__.py +3 -0
- fairgraph/openminds/sands/non_atlas/custom_anatomical_entity.py +110 -0
- fairgraph/openminds/sands/non_atlas/custom_annotation.py +54 -0
- fairgraph/openminds/sands/non_atlas/custom_coordinate_space.py +67 -0
- fairgraph/openminds/specimen_prep/__init__.py +38 -0
- fairgraph/openminds/specimen_prep/activity/__init__.py +3 -0
- fairgraph/openminds/specimen_prep/activity/cranial_window_preparation.py +69 -0
- fairgraph/openminds/specimen_prep/activity/tissue_culture_preparation.py +67 -0
- fairgraph/openminds/specimen_prep/activity/tissue_sample_slicing.py +69 -0
- fairgraph/openminds/specimen_prep/device/__init__.py +2 -0
- fairgraph/openminds/specimen_prep/device/slicing_device.py +73 -0
- fairgraph/openminds/specimen_prep/device/slicing_device_usage.py +117 -0
- fairgraph/openminds/specimenprep.py +4 -0
- fairgraph/openminds/stimulation/__init__.py +38 -0
- fairgraph/openminds/stimulation/activity/__init__.py +1 -0
- fairgraph/openminds/stimulation/activity/stimulation_activity.py +67 -0
- fairgraph/openminds/stimulation/stimulus/__init__.py +1 -0
- fairgraph/openminds/stimulation/stimulus/ephys_stimulus.py +63 -0
- fairgraph/queries.py +499 -0
- fairgraph/registry.py +123 -0
- fairgraph/utility.py +607 -0
- fairgraph-0.13.0.dist-info/METADATA +222 -0
- fairgraph-0.13.0.dist-info/RECORD +267 -0
- fairgraph-0.13.0.dist-info/WHEEL +5 -0
- fairgraph-0.13.0.dist-info/licenses/LICENSE.txt +177 -0
- fairgraph-0.13.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information about a chemical substance.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.chemicals import ChemicalSubstance as OMChemicalSubstance
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ChemicalSubstance(KGObject, OMChemicalSubstance):
|
|
13
|
+
"""
|
|
14
|
+
Structured information about a chemical substance.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/ChemicalSubstance"
|
|
18
|
+
default_space = "in-depth"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"composes",
|
|
23
|
+
["openminds.v4.ephys.Electrode", "openminds.v4.ephys.ElectrodeArray", "openminds.v4.ephys.Pipette"],
|
|
24
|
+
["insulatorMaterial", "material"],
|
|
25
|
+
reverse=["insulator_material", "material"],
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of insulator_material, material",
|
|
28
|
+
),
|
|
29
|
+
Property(
|
|
30
|
+
"labels",
|
|
31
|
+
"openminds.v4.ephys.PipetteUsage",
|
|
32
|
+
"labelingCompound",
|
|
33
|
+
reverse="labeling_compound",
|
|
34
|
+
multiple=True,
|
|
35
|
+
description="reverse of 'labeling_compound'",
|
|
36
|
+
),
|
|
37
|
+
]
|
|
38
|
+
existence_query_properties = ("lookup_label",)
|
|
39
|
+
|
|
40
|
+
def __init__(
|
|
41
|
+
self,
|
|
42
|
+
lookup_label=None,
|
|
43
|
+
additional_remarks=None,
|
|
44
|
+
composes=None,
|
|
45
|
+
labels=None,
|
|
46
|
+
molecular_entity=None,
|
|
47
|
+
product_source=None,
|
|
48
|
+
purity=None,
|
|
49
|
+
id=None,
|
|
50
|
+
data=None,
|
|
51
|
+
space=None,
|
|
52
|
+
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
|
+
lookup_label=lookup_label,
|
|
61
|
+
additional_remarks=additional_remarks,
|
|
62
|
+
composes=composes,
|
|
63
|
+
labels=labels,
|
|
64
|
+
molecular_entity=molecular_entity,
|
|
65
|
+
product_source=product_source,
|
|
66
|
+
purity=purity,
|
|
67
|
+
)
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information about the source of a chemical substance or mixture.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.chemicals import ProductSource as OMProductSource
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ProductSource(KGObject, OMProductSource):
|
|
13
|
+
"""
|
|
14
|
+
Structured information about the source of a chemical substance or mixture.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/ProductSource"
|
|
18
|
+
default_space = "in-depth"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"is_source_of",
|
|
23
|
+
["openminds.v4.chemicals.ChemicalMixture", "openminds.v4.chemicals.ChemicalSubstance"],
|
|
24
|
+
"productSource",
|
|
25
|
+
reverse="product_source",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'product_source'",
|
|
28
|
+
),
|
|
29
|
+
]
|
|
30
|
+
existence_query_properties = ("product_name", "provider")
|
|
31
|
+
|
|
32
|
+
def __init__(
|
|
33
|
+
self,
|
|
34
|
+
digital_identifier=None,
|
|
35
|
+
identifier=None,
|
|
36
|
+
is_source_of=None,
|
|
37
|
+
product_name=None,
|
|
38
|
+
provider=None,
|
|
39
|
+
purity=None,
|
|
40
|
+
id=None,
|
|
41
|
+
data=None,
|
|
42
|
+
space=None,
|
|
43
|
+
release_status=None,
|
|
44
|
+
):
|
|
45
|
+
return KGObject.__init__(
|
|
46
|
+
self,
|
|
47
|
+
id=id,
|
|
48
|
+
space=space,
|
|
49
|
+
release_status=release_status,
|
|
50
|
+
data=data,
|
|
51
|
+
digital_identifier=digital_identifier,
|
|
52
|
+
identifier=identifier,
|
|
53
|
+
is_source_of=is_source_of,
|
|
54
|
+
product_name=product_name,
|
|
55
|
+
provider=provider,
|
|
56
|
+
purity=purity,
|
|
57
|
+
)
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
import inspect
|
|
3
|
+
from fairgraph.kgobject import KGObject
|
|
4
|
+
from fairgraph.embedded import EmbeddedMetadata
|
|
5
|
+
|
|
6
|
+
from .data_analysis import DataAnalysis
|
|
7
|
+
from .data_copy import DataCopy
|
|
8
|
+
from .environment import Environment
|
|
9
|
+
from .generic_computation import GenericComputation
|
|
10
|
+
from .hardware_system import HardwareSystem
|
|
11
|
+
from .launch_configuration import LaunchConfiguration
|
|
12
|
+
from .local_file import LocalFile
|
|
13
|
+
from .model_validation import ModelValidation
|
|
14
|
+
from .optimization import Optimization
|
|
15
|
+
from .simulation import Simulation
|
|
16
|
+
from .software_agent import SoftwareAgent
|
|
17
|
+
from .validation_test import ValidationTest
|
|
18
|
+
from .validation_test_version import ValidationTestVersion
|
|
19
|
+
from .visualization import Visualization
|
|
20
|
+
from .workflow_execution import WorkflowExecution
|
|
21
|
+
from .workflow_recipe import WorkflowRecipe
|
|
22
|
+
from .workflow_recipe_version import WorkflowRecipeVersion
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def list_kg_classes():
|
|
26
|
+
"""List all KG classes defined in this module"""
|
|
27
|
+
return [
|
|
28
|
+
obj
|
|
29
|
+
for name, obj in inspect.getmembers(sys.modules[__name__])
|
|
30
|
+
if inspect.isclass(obj) and issubclass(obj, KGObject) and obj.__module__.startswith(__name__)
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def list_embedded_metadata_classes():
|
|
35
|
+
"""List all embedded metadata classes defined in this module"""
|
|
36
|
+
return [
|
|
37
|
+
obj
|
|
38
|
+
for name, obj in inspect.getmembers(sys.modules[__name__])
|
|
39
|
+
if inspect.isclass(obj) and issubclass(obj, EmbeddedMetadata) and obj.__module__.startswith(__name__)
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def set_error_handling(value):
|
|
44
|
+
"""
|
|
45
|
+
Control validation for all classes in this module.
|
|
46
|
+
|
|
47
|
+
Args:
|
|
48
|
+
value (str): action to follow when there is a validation failure.
|
|
49
|
+
(e.g. if a required property is not provided).
|
|
50
|
+
Possible values: "error", "warning", "log", None
|
|
51
|
+
"""
|
|
52
|
+
for cls in list_kg_classes() + list_embedded_metadata_classes():
|
|
53
|
+
cls.set_error_handling(value)
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on inspecting, cleansing, transforming, and modelling data.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.computation import DataAnalysis as OMDataAnalysis
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from datetime import datetime, time
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class DataAnalysis(KGObject, OMDataAnalysis):
|
|
16
|
+
"""
|
|
17
|
+
Structured information on inspecting, cleansing, transforming, and modelling data.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/DataAnalysis"
|
|
21
|
+
default_space = "computation"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = [
|
|
24
|
+
Property(
|
|
25
|
+
"informed",
|
|
26
|
+
[
|
|
27
|
+
"openminds.v4.computation.DataAnalysis",
|
|
28
|
+
"openminds.v4.computation.DataCopy",
|
|
29
|
+
"openminds.v4.computation.GenericComputation",
|
|
30
|
+
"openminds.v4.computation.ModelValidation",
|
|
31
|
+
"openminds.v4.computation.Optimization",
|
|
32
|
+
"openminds.v4.computation.Simulation",
|
|
33
|
+
"openminds.v4.computation.Visualization",
|
|
34
|
+
],
|
|
35
|
+
"wasInformedBy",
|
|
36
|
+
reverse="was_informed_by",
|
|
37
|
+
multiple=True,
|
|
38
|
+
description="reverse of 'was_informed_by'",
|
|
39
|
+
),
|
|
40
|
+
Property(
|
|
41
|
+
"is_part_of",
|
|
42
|
+
"openminds.v4.computation.WorkflowExecution",
|
|
43
|
+
"stage",
|
|
44
|
+
reverse="stages",
|
|
45
|
+
multiple=True,
|
|
46
|
+
description="reverse of 'stages'",
|
|
47
|
+
),
|
|
48
|
+
]
|
|
49
|
+
existence_query_properties = ("lookup_label",)
|
|
50
|
+
|
|
51
|
+
def __init__(
|
|
52
|
+
self,
|
|
53
|
+
lookup_label=None,
|
|
54
|
+
custom_property_sets=None,
|
|
55
|
+
description=None,
|
|
56
|
+
end_time=None,
|
|
57
|
+
environment=None,
|
|
58
|
+
informed=None,
|
|
59
|
+
inputs=None,
|
|
60
|
+
is_part_of=None,
|
|
61
|
+
launch_configuration=None,
|
|
62
|
+
outputs=None,
|
|
63
|
+
performed_by=None,
|
|
64
|
+
recipe=None,
|
|
65
|
+
resource_usages=None,
|
|
66
|
+
start_time=None,
|
|
67
|
+
started_by=None,
|
|
68
|
+
status=None,
|
|
69
|
+
study_targets=None,
|
|
70
|
+
tags=None,
|
|
71
|
+
techniques=None,
|
|
72
|
+
was_informed_by=None,
|
|
73
|
+
id=None,
|
|
74
|
+
data=None,
|
|
75
|
+
space=None,
|
|
76
|
+
release_status=None,
|
|
77
|
+
):
|
|
78
|
+
return KGObject.__init__(
|
|
79
|
+
self,
|
|
80
|
+
id=id,
|
|
81
|
+
space=space,
|
|
82
|
+
release_status=release_status,
|
|
83
|
+
data=data,
|
|
84
|
+
lookup_label=lookup_label,
|
|
85
|
+
custom_property_sets=custom_property_sets,
|
|
86
|
+
description=description,
|
|
87
|
+
end_time=end_time,
|
|
88
|
+
environment=environment,
|
|
89
|
+
informed=informed,
|
|
90
|
+
inputs=inputs,
|
|
91
|
+
is_part_of=is_part_of,
|
|
92
|
+
launch_configuration=launch_configuration,
|
|
93
|
+
outputs=outputs,
|
|
94
|
+
performed_by=performed_by,
|
|
95
|
+
recipe=recipe,
|
|
96
|
+
resource_usages=resource_usages,
|
|
97
|
+
start_time=start_time,
|
|
98
|
+
started_by=started_by,
|
|
99
|
+
status=status,
|
|
100
|
+
study_targets=study_targets,
|
|
101
|
+
tags=tags,
|
|
102
|
+
techniques=techniques,
|
|
103
|
+
was_informed_by=was_informed_by,
|
|
104
|
+
)
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"""
|
|
2
|
+
<description not available>
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.computation import DataCopy as OMDataCopy
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from datetime import datetime, time
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class DataCopy(KGObject, OMDataCopy):
|
|
16
|
+
"""
|
|
17
|
+
<description not available>
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/DataCopy"
|
|
21
|
+
default_space = "computation"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = [
|
|
24
|
+
Property(
|
|
25
|
+
"informed",
|
|
26
|
+
[
|
|
27
|
+
"openminds.v4.computation.DataAnalysis",
|
|
28
|
+
"openminds.v4.computation.DataCopy",
|
|
29
|
+
"openminds.v4.computation.GenericComputation",
|
|
30
|
+
"openminds.v4.computation.ModelValidation",
|
|
31
|
+
"openminds.v4.computation.Optimization",
|
|
32
|
+
"openminds.v4.computation.Simulation",
|
|
33
|
+
"openminds.v4.computation.Visualization",
|
|
34
|
+
],
|
|
35
|
+
"wasInformedBy",
|
|
36
|
+
reverse="was_informed_by",
|
|
37
|
+
multiple=True,
|
|
38
|
+
description="reverse of 'was_informed_by'",
|
|
39
|
+
),
|
|
40
|
+
Property(
|
|
41
|
+
"is_part_of",
|
|
42
|
+
"openminds.v4.computation.WorkflowExecution",
|
|
43
|
+
"stage",
|
|
44
|
+
reverse="stages",
|
|
45
|
+
multiple=True,
|
|
46
|
+
description="reverse of 'stages'",
|
|
47
|
+
),
|
|
48
|
+
]
|
|
49
|
+
existence_query_properties = ("lookup_label",)
|
|
50
|
+
|
|
51
|
+
def __init__(
|
|
52
|
+
self,
|
|
53
|
+
lookup_label=None,
|
|
54
|
+
custom_property_sets=None,
|
|
55
|
+
description=None,
|
|
56
|
+
end_time=None,
|
|
57
|
+
environment=None,
|
|
58
|
+
informed=None,
|
|
59
|
+
inputs=None,
|
|
60
|
+
is_part_of=None,
|
|
61
|
+
launch_configuration=None,
|
|
62
|
+
outputs=None,
|
|
63
|
+
performed_by=None,
|
|
64
|
+
recipe=None,
|
|
65
|
+
resource_usages=None,
|
|
66
|
+
start_time=None,
|
|
67
|
+
started_by=None,
|
|
68
|
+
status=None,
|
|
69
|
+
study_targets=None,
|
|
70
|
+
tags=None,
|
|
71
|
+
techniques=None,
|
|
72
|
+
was_informed_by=None,
|
|
73
|
+
id=None,
|
|
74
|
+
data=None,
|
|
75
|
+
space=None,
|
|
76
|
+
release_status=None,
|
|
77
|
+
):
|
|
78
|
+
return KGObject.__init__(
|
|
79
|
+
self,
|
|
80
|
+
id=id,
|
|
81
|
+
space=space,
|
|
82
|
+
release_status=release_status,
|
|
83
|
+
data=data,
|
|
84
|
+
lookup_label=lookup_label,
|
|
85
|
+
custom_property_sets=custom_property_sets,
|
|
86
|
+
description=description,
|
|
87
|
+
end_time=end_time,
|
|
88
|
+
environment=environment,
|
|
89
|
+
informed=informed,
|
|
90
|
+
inputs=inputs,
|
|
91
|
+
is_part_of=is_part_of,
|
|
92
|
+
launch_configuration=launch_configuration,
|
|
93
|
+
outputs=outputs,
|
|
94
|
+
performed_by=performed_by,
|
|
95
|
+
recipe=recipe,
|
|
96
|
+
resource_usages=resource_usages,
|
|
97
|
+
start_time=start_time,
|
|
98
|
+
started_by=started_by,
|
|
99
|
+
status=status,
|
|
100
|
+
study_targets=study_targets,
|
|
101
|
+
tags=tags,
|
|
102
|
+
techniques=techniques,
|
|
103
|
+
was_informed_by=was_informed_by,
|
|
104
|
+
)
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information on the computer system or set of systems in which a computation is deployed and executed.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.computation import Environment as OMEnvironment
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Environment(KGObject, OMEnvironment):
|
|
13
|
+
"""
|
|
14
|
+
Structured information on the computer system or set of systems in which a computation is deployed and executed.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/Environment"
|
|
18
|
+
default_space = "computation"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"used_for",
|
|
23
|
+
[
|
|
24
|
+
"openminds.v4.computation.DataAnalysis",
|
|
25
|
+
"openminds.v4.computation.DataCopy",
|
|
26
|
+
"openminds.v4.computation.GenericComputation",
|
|
27
|
+
"openminds.v4.computation.ModelValidation",
|
|
28
|
+
"openminds.v4.computation.Optimization",
|
|
29
|
+
"openminds.v4.computation.Simulation",
|
|
30
|
+
"openminds.v4.computation.SoftwareAgent",
|
|
31
|
+
"openminds.v4.computation.Visualization",
|
|
32
|
+
],
|
|
33
|
+
"environment",
|
|
34
|
+
reverse="environment",
|
|
35
|
+
multiple=True,
|
|
36
|
+
description="reverse of 'environment'",
|
|
37
|
+
),
|
|
38
|
+
]
|
|
39
|
+
existence_query_properties = ("hardware", "name")
|
|
40
|
+
|
|
41
|
+
def __init__(
|
|
42
|
+
self,
|
|
43
|
+
name=None,
|
|
44
|
+
configuration=None,
|
|
45
|
+
description=None,
|
|
46
|
+
hardware=None,
|
|
47
|
+
software=None,
|
|
48
|
+
used_for=None,
|
|
49
|
+
id=None,
|
|
50
|
+
data=None,
|
|
51
|
+
space=None,
|
|
52
|
+
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
|
+
name=name,
|
|
61
|
+
configuration=configuration,
|
|
62
|
+
description=description,
|
|
63
|
+
hardware=hardware,
|
|
64
|
+
software=software,
|
|
65
|
+
used_for=used_for,
|
|
66
|
+
)
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information about a computation whose type is unknown or unspecified.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.computation import GenericComputation as OMGenericComputation
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from datetime import datetime, time
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class GenericComputation(KGObject, OMGenericComputation):
|
|
16
|
+
"""
|
|
17
|
+
Structured information about a computation whose type is unknown or unspecified.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type_ = "https://openminds.om-i.org/types/GenericComputation"
|
|
21
|
+
default_space = "computation"
|
|
22
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
23
|
+
reverse_properties = [
|
|
24
|
+
Property(
|
|
25
|
+
"informed",
|
|
26
|
+
[
|
|
27
|
+
"openminds.v4.computation.DataAnalysis",
|
|
28
|
+
"openminds.v4.computation.DataCopy",
|
|
29
|
+
"openminds.v4.computation.GenericComputation",
|
|
30
|
+
"openminds.v4.computation.ModelValidation",
|
|
31
|
+
"openminds.v4.computation.Optimization",
|
|
32
|
+
"openminds.v4.computation.Simulation",
|
|
33
|
+
"openminds.v4.computation.Visualization",
|
|
34
|
+
],
|
|
35
|
+
"wasInformedBy",
|
|
36
|
+
reverse="was_informed_by",
|
|
37
|
+
multiple=True,
|
|
38
|
+
description="reverse of 'was_informed_by'",
|
|
39
|
+
),
|
|
40
|
+
Property(
|
|
41
|
+
"is_part_of",
|
|
42
|
+
"openminds.v4.computation.WorkflowExecution",
|
|
43
|
+
"stage",
|
|
44
|
+
reverse="stages",
|
|
45
|
+
multiple=True,
|
|
46
|
+
description="reverse of 'stages'",
|
|
47
|
+
),
|
|
48
|
+
]
|
|
49
|
+
existence_query_properties = ("lookup_label",)
|
|
50
|
+
|
|
51
|
+
def __init__(
|
|
52
|
+
self,
|
|
53
|
+
lookup_label=None,
|
|
54
|
+
custom_property_sets=None,
|
|
55
|
+
description=None,
|
|
56
|
+
end_time=None,
|
|
57
|
+
environment=None,
|
|
58
|
+
informed=None,
|
|
59
|
+
inputs=None,
|
|
60
|
+
is_part_of=None,
|
|
61
|
+
launch_configuration=None,
|
|
62
|
+
outputs=None,
|
|
63
|
+
performed_by=None,
|
|
64
|
+
recipe=None,
|
|
65
|
+
resource_usages=None,
|
|
66
|
+
start_time=None,
|
|
67
|
+
started_by=None,
|
|
68
|
+
status=None,
|
|
69
|
+
study_targets=None,
|
|
70
|
+
tags=None,
|
|
71
|
+
techniques=None,
|
|
72
|
+
was_informed_by=None,
|
|
73
|
+
id=None,
|
|
74
|
+
data=None,
|
|
75
|
+
space=None,
|
|
76
|
+
release_status=None,
|
|
77
|
+
):
|
|
78
|
+
return KGObject.__init__(
|
|
79
|
+
self,
|
|
80
|
+
id=id,
|
|
81
|
+
space=space,
|
|
82
|
+
release_status=release_status,
|
|
83
|
+
data=data,
|
|
84
|
+
lookup_label=lookup_label,
|
|
85
|
+
custom_property_sets=custom_property_sets,
|
|
86
|
+
description=description,
|
|
87
|
+
end_time=end_time,
|
|
88
|
+
environment=environment,
|
|
89
|
+
informed=informed,
|
|
90
|
+
inputs=inputs,
|
|
91
|
+
is_part_of=is_part_of,
|
|
92
|
+
launch_configuration=launch_configuration,
|
|
93
|
+
outputs=outputs,
|
|
94
|
+
performed_by=performed_by,
|
|
95
|
+
recipe=recipe,
|
|
96
|
+
resource_usages=resource_usages,
|
|
97
|
+
start_time=start_time,
|
|
98
|
+
started_by=started_by,
|
|
99
|
+
status=status,
|
|
100
|
+
study_targets=study_targets,
|
|
101
|
+
tags=tags,
|
|
102
|
+
techniques=techniques,
|
|
103
|
+
was_informed_by=was_informed_by,
|
|
104
|
+
)
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information about computing hardware.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.computation import HardwareSystem as OMHardwareSystem
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class HardwareSystem(KGObject, OMHardwareSystem):
|
|
13
|
+
"""
|
|
14
|
+
Structured information about computing hardware.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/HardwareSystem"
|
|
18
|
+
default_space = "computation"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"used_by",
|
|
23
|
+
"openminds.v4.computation.Environment",
|
|
24
|
+
"hardware",
|
|
25
|
+
reverse="hardware",
|
|
26
|
+
multiple=True,
|
|
27
|
+
description="reverse of 'hardware'",
|
|
28
|
+
),
|
|
29
|
+
]
|
|
30
|
+
existence_query_properties = ("name",)
|
|
31
|
+
|
|
32
|
+
def __init__(
|
|
33
|
+
self,
|
|
34
|
+
name=None,
|
|
35
|
+
description=None,
|
|
36
|
+
used_by=None,
|
|
37
|
+
version_identifier=None,
|
|
38
|
+
id=None,
|
|
39
|
+
data=None,
|
|
40
|
+
space=None,
|
|
41
|
+
release_status=None,
|
|
42
|
+
):
|
|
43
|
+
return KGObject.__init__(
|
|
44
|
+
self,
|
|
45
|
+
id=id,
|
|
46
|
+
space=space,
|
|
47
|
+
release_status=release_status,
|
|
48
|
+
data=data,
|
|
49
|
+
name=name,
|
|
50
|
+
description=description,
|
|
51
|
+
used_by=used_by,
|
|
52
|
+
version_identifier=version_identifier,
|
|
53
|
+
)
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Structured information about the launch of a computational process.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# this file was auto-generated
|
|
6
|
+
|
|
7
|
+
from openminds.properties import Property
|
|
8
|
+
from openminds.v4.computation import LaunchConfiguration as OMLaunchConfiguration
|
|
9
|
+
from fairgraph import KGObject
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class LaunchConfiguration(KGObject, OMLaunchConfiguration):
|
|
13
|
+
"""
|
|
14
|
+
Structured information about the launch of a computational process.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
type_ = "https://openminds.om-i.org/types/LaunchConfiguration"
|
|
18
|
+
default_space = "computation"
|
|
19
|
+
# forward properties are defined in the parent class (in openMINDS-Python)
|
|
20
|
+
reverse_properties = [
|
|
21
|
+
Property(
|
|
22
|
+
"is_launch_configuration_of",
|
|
23
|
+
[
|
|
24
|
+
"openminds.v4.computation.DataAnalysis",
|
|
25
|
+
"openminds.v4.computation.DataCopy",
|
|
26
|
+
"openminds.v4.computation.GenericComputation",
|
|
27
|
+
"openminds.v4.computation.ModelValidation",
|
|
28
|
+
"openminds.v4.computation.Optimization",
|
|
29
|
+
"openminds.v4.computation.Simulation",
|
|
30
|
+
"openminds.v4.computation.Visualization",
|
|
31
|
+
],
|
|
32
|
+
"launchConfiguration",
|
|
33
|
+
reverse="launch_configuration",
|
|
34
|
+
multiple=True,
|
|
35
|
+
description="reverse of 'launch_configuration'",
|
|
36
|
+
),
|
|
37
|
+
]
|
|
38
|
+
aliases = {"environment_variables": "environment_variable"}
|
|
39
|
+
existence_query_properties = ("executable", "name")
|
|
40
|
+
|
|
41
|
+
def __init__(
|
|
42
|
+
self,
|
|
43
|
+
name=None,
|
|
44
|
+
arguments=None,
|
|
45
|
+
description=None,
|
|
46
|
+
environment_variable=None,
|
|
47
|
+
environment_variables=None,
|
|
48
|
+
executable=None,
|
|
49
|
+
is_launch_configuration_of=None,
|
|
50
|
+
id=None,
|
|
51
|
+
data=None,
|
|
52
|
+
space=None,
|
|
53
|
+
release_status=None,
|
|
54
|
+
):
|
|
55
|
+
return KGObject.__init__(
|
|
56
|
+
self,
|
|
57
|
+
id=id,
|
|
58
|
+
space=space,
|
|
59
|
+
release_status=release_status,
|
|
60
|
+
data=data,
|
|
61
|
+
name=name,
|
|
62
|
+
arguments=arguments,
|
|
63
|
+
description=description,
|
|
64
|
+
environment_variable=environment_variable,
|
|
65
|
+
environment_variables=environment_variables,
|
|
66
|
+
executable=executable,
|
|
67
|
+
is_launch_configuration_of=is_launch_configuration_of,
|
|
68
|
+
)
|