valuesets 0.3.1__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.
Potentially problematic release.
This version of valuesets might be problematic. Click here for more details.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Academic and Research Value Sets
|
|
3
|
+
|
|
4
|
+
Value sets for academic publishing, research, and scholarly communication
|
|
5
|
+
|
|
6
|
+
Generated from: academic/research.yaml
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
from typing import Dict, Any, Optional
|
|
12
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
13
|
+
|
|
14
|
+
class PublicationType(RichEnum):
|
|
15
|
+
"""
|
|
16
|
+
Types of academic and research publications
|
|
17
|
+
"""
|
|
18
|
+
# Enum members
|
|
19
|
+
JOURNAL_ARTICLE = "JOURNAL_ARTICLE"
|
|
20
|
+
REVIEW_ARTICLE = "REVIEW_ARTICLE"
|
|
21
|
+
RESEARCH_ARTICLE = "RESEARCH_ARTICLE"
|
|
22
|
+
SHORT_COMMUNICATION = "SHORT_COMMUNICATION"
|
|
23
|
+
EDITORIAL = "EDITORIAL"
|
|
24
|
+
LETTER = "LETTER"
|
|
25
|
+
COMMENTARY = "COMMENTARY"
|
|
26
|
+
PERSPECTIVE = "PERSPECTIVE"
|
|
27
|
+
CASE_REPORT = "CASE_REPORT"
|
|
28
|
+
TECHNICAL_NOTE = "TECHNICAL_NOTE"
|
|
29
|
+
BOOK = "BOOK"
|
|
30
|
+
BOOK_CHAPTER = "BOOK_CHAPTER"
|
|
31
|
+
EDITED_BOOK = "EDITED_BOOK"
|
|
32
|
+
REFERENCE_BOOK = "REFERENCE_BOOK"
|
|
33
|
+
TEXTBOOK = "TEXTBOOK"
|
|
34
|
+
CONFERENCE_PAPER = "CONFERENCE_PAPER"
|
|
35
|
+
CONFERENCE_ABSTRACT = "CONFERENCE_ABSTRACT"
|
|
36
|
+
CONFERENCE_POSTER = "CONFERENCE_POSTER"
|
|
37
|
+
CONFERENCE_PROCEEDINGS = "CONFERENCE_PROCEEDINGS"
|
|
38
|
+
PHD_THESIS = "PHD_THESIS"
|
|
39
|
+
MASTERS_THESIS = "MASTERS_THESIS"
|
|
40
|
+
BACHELORS_THESIS = "BACHELORS_THESIS"
|
|
41
|
+
TECHNICAL_REPORT = "TECHNICAL_REPORT"
|
|
42
|
+
WORKING_PAPER = "WORKING_PAPER"
|
|
43
|
+
WHITE_PAPER = "WHITE_PAPER"
|
|
44
|
+
POLICY_BRIEF = "POLICY_BRIEF"
|
|
45
|
+
DATASET = "DATASET"
|
|
46
|
+
SOFTWARE = "SOFTWARE"
|
|
47
|
+
DATA_PAPER = "DATA_PAPER"
|
|
48
|
+
SOFTWARE_PAPER = "SOFTWARE_PAPER"
|
|
49
|
+
PROTOCOL = "PROTOCOL"
|
|
50
|
+
PREPRINT = "PREPRINT"
|
|
51
|
+
POSTPRINT = "POSTPRINT"
|
|
52
|
+
PUBLISHED_VERSION = "PUBLISHED_VERSION"
|
|
53
|
+
PATENT = "PATENT"
|
|
54
|
+
STANDARD = "STANDARD"
|
|
55
|
+
BLOG_POST = "BLOG_POST"
|
|
56
|
+
PRESENTATION = "PRESENTATION"
|
|
57
|
+
LECTURE = "LECTURE"
|
|
58
|
+
ANNOTATION = "ANNOTATION"
|
|
59
|
+
|
|
60
|
+
# Set metadata after class creation
|
|
61
|
+
PublicationType._metadata = {
|
|
62
|
+
"JOURNAL_ARTICLE": {'description': 'Peer-reviewed journal article', 'meaning': 'FABIO:JournalArticle'},
|
|
63
|
+
"REVIEW_ARTICLE": {'description': 'Review article synthesizing existing research', 'meaning': 'FABIO:ReviewArticle'},
|
|
64
|
+
"RESEARCH_ARTICLE": {'description': 'Original research article', 'meaning': 'FABIO:ResearchPaper'},
|
|
65
|
+
"SHORT_COMMUNICATION": {'description': 'Brief communication or short report', 'meaning': 'FABIO:BriefCommunication'},
|
|
66
|
+
"EDITORIAL": {'description': 'Editorial or opinion piece', 'meaning': 'FABIO:Editorial'},
|
|
67
|
+
"LETTER": {'description': 'Letter to the editor', 'meaning': 'FABIO:Letter'},
|
|
68
|
+
"COMMENTARY": {'description': 'Commentary on existing work', 'meaning': 'FABIO:Comment'},
|
|
69
|
+
"PERSPECTIVE": {'description': 'Perspective or viewpoint article', 'meaning': 'FABIO:Comment'},
|
|
70
|
+
"CASE_REPORT": {'description': 'Clinical or scientific case report', 'meaning': 'FABIO:CaseReport'},
|
|
71
|
+
"TECHNICAL_NOTE": {'description': 'Technical or methodological note', 'meaning': 'FABIO:BriefCommunication'},
|
|
72
|
+
"BOOK": {'description': 'Complete book or monograph', 'meaning': 'FABIO:Book'},
|
|
73
|
+
"BOOK_CHAPTER": {'description': 'Chapter in an edited book', 'meaning': 'FABIO:BookChapter'},
|
|
74
|
+
"EDITED_BOOK": {'description': 'Edited collection or anthology', 'meaning': 'FABIO:EditedBook'},
|
|
75
|
+
"REFERENCE_BOOK": {'description': 'Reference work or encyclopedia', 'meaning': 'FABIO:ReferenceBook'},
|
|
76
|
+
"TEXTBOOK": {'description': 'Educational textbook', 'meaning': 'FABIO:Textbook'},
|
|
77
|
+
"CONFERENCE_PAPER": {'description': 'Full conference paper', 'meaning': 'FABIO:ConferencePaper'},
|
|
78
|
+
"CONFERENCE_ABSTRACT": {'description': 'Conference abstract', 'meaning': 'FABIO:ConferenceAbstract'},
|
|
79
|
+
"CONFERENCE_POSTER": {'description': 'Conference poster', 'meaning': 'FABIO:ConferencePoster'},
|
|
80
|
+
"CONFERENCE_PROCEEDINGS": {'description': 'Complete conference proceedings', 'meaning': 'FABIO:ConferenceProceedings'},
|
|
81
|
+
"PHD_THESIS": {'description': 'Doctoral dissertation', 'meaning': 'FABIO:DoctoralThesis'},
|
|
82
|
+
"MASTERS_THESIS": {'description': "Master's thesis", 'meaning': 'FABIO:MastersThesis'},
|
|
83
|
+
"BACHELORS_THESIS": {'description': "Bachelor's or undergraduate thesis", 'meaning': 'FABIO:BachelorsThesis'},
|
|
84
|
+
"TECHNICAL_REPORT": {'description': 'Technical or research report', 'meaning': 'FABIO:TechnicalReport'},
|
|
85
|
+
"WORKING_PAPER": {'description': 'Working paper or discussion paper', 'meaning': 'FABIO:WorkingPaper'},
|
|
86
|
+
"WHITE_PAPER": {'description': 'White paper or position paper', 'meaning': 'FABIO:WhitePaper'},
|
|
87
|
+
"POLICY_BRIEF": {'description': 'Policy brief or recommendation', 'meaning': 'FABIO:PolicyBrief'},
|
|
88
|
+
"DATASET": {'description': 'Research dataset', 'meaning': 'DCMITYPE:Dataset'},
|
|
89
|
+
"SOFTWARE": {'description': 'Research software or code', 'meaning': 'DCMITYPE:Software'},
|
|
90
|
+
"DATA_PAPER": {'description': 'Data descriptor or data paper', 'meaning': 'FABIO:DataPaper'},
|
|
91
|
+
"SOFTWARE_PAPER": {'description': 'Software or tools paper', 'meaning': 'FABIO:ResearchPaper'},
|
|
92
|
+
"PROTOCOL": {'description': 'Research protocol or methodology', 'meaning': 'FABIO:Protocol'},
|
|
93
|
+
"PREPRINT": {'description': 'Preprint or unrefereed manuscript', 'meaning': 'FABIO:Preprint'},
|
|
94
|
+
"POSTPRINT": {'description': 'Accepted manuscript after peer review', 'meaning': 'FABIO:Preprint'},
|
|
95
|
+
"PUBLISHED_VERSION": {'description': 'Final published version', 'meaning': 'IAO:0000311'},
|
|
96
|
+
"PATENT": {'description': 'Patent or patent application', 'meaning': 'FABIO:Patent'},
|
|
97
|
+
"STANDARD": {'description': 'Technical standard or specification', 'meaning': 'FABIO:Standard'},
|
|
98
|
+
"BLOG_POST": {'description': 'Academic blog post', 'meaning': 'FABIO:BlogPost'},
|
|
99
|
+
"PRESENTATION": {'description': 'Presentation slides or talk', 'meaning': 'FABIO:Presentation'},
|
|
100
|
+
"LECTURE": {'description': 'Lecture or educational material', 'meaning': 'FABIO:Presentation'},
|
|
101
|
+
"ANNOTATION": {'description': 'Annotation or scholarly note', 'meaning': 'FABIO:Annotation'},
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
class PeerReviewStatus(RichEnum):
|
|
105
|
+
"""
|
|
106
|
+
Status of peer review process
|
|
107
|
+
"""
|
|
108
|
+
# Enum members
|
|
109
|
+
NOT_PEER_REVIEWED = "NOT_PEER_REVIEWED"
|
|
110
|
+
SUBMITTED = "SUBMITTED"
|
|
111
|
+
UNDER_REVIEW = "UNDER_REVIEW"
|
|
112
|
+
REVIEW_COMPLETE = "REVIEW_COMPLETE"
|
|
113
|
+
MAJOR_REVISION = "MAJOR_REVISION"
|
|
114
|
+
MINOR_REVISION = "MINOR_REVISION"
|
|
115
|
+
ACCEPTED = "ACCEPTED"
|
|
116
|
+
ACCEPTED_WITH_REVISIONS = "ACCEPTED_WITH_REVISIONS"
|
|
117
|
+
REJECTED = "REJECTED"
|
|
118
|
+
WITHDRAWN = "WITHDRAWN"
|
|
119
|
+
PUBLISHED = "PUBLISHED"
|
|
120
|
+
|
|
121
|
+
# Set metadata after class creation
|
|
122
|
+
PeerReviewStatus._metadata = {
|
|
123
|
+
"NOT_PEER_REVIEWED": {'description': 'Not peer reviewed'},
|
|
124
|
+
"SUBMITTED": {'description': 'Submitted for review'},
|
|
125
|
+
"UNDER_REVIEW": {'description': 'Currently under peer review', 'meaning': 'SIO:000035'},
|
|
126
|
+
"REVIEW_COMPLETE": {'description': 'Peer review complete', 'meaning': 'SIO:000034'},
|
|
127
|
+
"MAJOR_REVISION": {'description': 'Major revisions requested'},
|
|
128
|
+
"MINOR_REVISION": {'description': 'Minor revisions requested'},
|
|
129
|
+
"ACCEPTED": {'description': 'Accepted for publication'},
|
|
130
|
+
"ACCEPTED_WITH_REVISIONS": {'description': 'Conditionally accepted pending revisions'},
|
|
131
|
+
"REJECTED": {'description': 'Rejected after review'},
|
|
132
|
+
"WITHDRAWN": {'description': 'Withdrawn by authors'},
|
|
133
|
+
"PUBLISHED": {'description': 'Published after review', 'meaning': 'IAO:0000311'},
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
class AcademicDegree(RichEnum):
|
|
137
|
+
"""
|
|
138
|
+
Academic degrees and qualifications
|
|
139
|
+
"""
|
|
140
|
+
# Enum members
|
|
141
|
+
BA = "BA"
|
|
142
|
+
BS = "BS"
|
|
143
|
+
BSC = "BSC"
|
|
144
|
+
BENG = "BENG"
|
|
145
|
+
BFA = "BFA"
|
|
146
|
+
LLB = "LLB"
|
|
147
|
+
MBBS = "MBBS"
|
|
148
|
+
MA = "MA"
|
|
149
|
+
MS = "MS"
|
|
150
|
+
MSC = "MSC"
|
|
151
|
+
MBA = "MBA"
|
|
152
|
+
MFA = "MFA"
|
|
153
|
+
MPH = "MPH"
|
|
154
|
+
MENG = "MENG"
|
|
155
|
+
MED = "MED"
|
|
156
|
+
LLM = "LLM"
|
|
157
|
+
MPHIL = "MPHIL"
|
|
158
|
+
PHD = "PHD"
|
|
159
|
+
MD = "MD"
|
|
160
|
+
JD = "JD"
|
|
161
|
+
EDD = "EDD"
|
|
162
|
+
PSYD = "PSYD"
|
|
163
|
+
DBA = "DBA"
|
|
164
|
+
DPHIL = "DPHIL"
|
|
165
|
+
SCD = "SCD"
|
|
166
|
+
POSTDOC = "POSTDOC"
|
|
167
|
+
|
|
168
|
+
# Set metadata after class creation
|
|
169
|
+
AcademicDegree._metadata = {
|
|
170
|
+
"BA": {'meaning': 'NCIT:C71345', 'annotations': {'level': 'undergraduate'}},
|
|
171
|
+
"BS": {'description': 'Bachelor of Science', 'meaning': 'NCIT:C71351', 'annotations': {'level': 'undergraduate'}, 'aliases': ['Bachelor of Science']},
|
|
172
|
+
"BSC": {'description': 'Bachelor of Science (British)', 'meaning': 'NCIT:C71351', 'annotations': {'level': 'undergraduate'}, 'aliases': ['Bachelor of Science']},
|
|
173
|
+
"BENG": {'description': 'Bachelor of Engineering', 'meaning': 'NCIT:C71347', 'annotations': {'level': 'undergraduate'}, 'aliases': ['Bachelor of Engineering']},
|
|
174
|
+
"BFA": {'description': 'Bachelor of Fine Arts', 'meaning': 'NCIT:C71349', 'annotations': {'level': 'undergraduate'}, 'aliases': ['Bachelor of Fine Arts']},
|
|
175
|
+
"LLB": {'description': 'Bachelor of Laws', 'meaning': 'NCIT:C71352', 'annotations': {'level': 'undergraduate'}, 'aliases': ['Bachelor of Science in Law']},
|
|
176
|
+
"MBBS": {'description': 'Bachelor of Medicine, Bachelor of Surgery', 'meaning': 'NCIT:C39383', 'annotations': {'level': 'undergraduate'}, 'aliases': ['Doctor of Medicine']},
|
|
177
|
+
"MA": {'description': 'Master of Arts', 'meaning': 'NCIT:C71364', 'annotations': {'level': 'graduate'}, 'aliases': ['Master of Arts']},
|
|
178
|
+
"MS": {'description': 'Master of Science', 'meaning': 'NCIT:C39452', 'annotations': {'level': 'graduate'}, 'aliases': ['Master of Science']},
|
|
179
|
+
"MSC": {'description': 'Master of Science (British)', 'meaning': 'NCIT:C39452', 'annotations': {'level': 'graduate'}, 'aliases': ['Master of Science']},
|
|
180
|
+
"MBA": {'description': 'Master of Business Administration', 'meaning': 'NCIT:C39449', 'annotations': {'level': 'graduate'}, 'aliases': ['Master of Business Administration']},
|
|
181
|
+
"MFA": {'description': 'Master of Fine Arts', 'annotations': {'level': 'graduate'}},
|
|
182
|
+
"MPH": {'description': 'Master of Public Health', 'meaning': 'NCIT:C39451', 'annotations': {'level': 'graduate'}, 'aliases': ['Master of Public Health']},
|
|
183
|
+
"MENG": {'description': 'Master of Engineering', 'meaning': 'NCIT:C71368', 'annotations': {'level': 'graduate'}, 'aliases': ['Master of Engineering']},
|
|
184
|
+
"MED": {'description': 'Master of Education', 'meaning': 'NCIT:C71369', 'annotations': {'level': 'graduate'}, 'aliases': ['Master of Education']},
|
|
185
|
+
"LLM": {'description': 'Master of Laws', 'meaning': 'NCIT:C71363', 'annotations': {'level': 'graduate'}, 'aliases': ['Master of Law']},
|
|
186
|
+
"MPHIL": {'description': 'Master of Philosophy', 'annotations': {'level': 'graduate'}},
|
|
187
|
+
"PHD": {'description': 'Doctor of Philosophy', 'meaning': 'NCIT:C39387', 'annotations': {'level': 'doctoral'}, 'aliases': ['Doctor of Philosophy']},
|
|
188
|
+
"MD": {'description': 'Doctor of Medicine', 'meaning': 'NCIT:C39383', 'annotations': {'level': 'doctoral'}, 'aliases': ['Doctor of Medicine']},
|
|
189
|
+
"JD": {'description': 'Juris Doctor', 'meaning': 'NCIT:C71361', 'annotations': {'level': 'doctoral'}, 'aliases': ['Doctor of Law']},
|
|
190
|
+
"EDD": {'description': 'Doctor of Education', 'meaning': 'NCIT:C71359', 'annotations': {'level': 'doctoral'}, 'aliases': ['Doctor of Education']},
|
|
191
|
+
"PSYD": {'description': 'Doctor of Psychology', 'annotations': {'level': 'doctoral'}},
|
|
192
|
+
"DBA": {'description': 'Doctor of Business Administration', 'annotations': {'level': 'doctoral'}},
|
|
193
|
+
"DPHIL": {'description': 'Doctor of Philosophy (Oxford/Sussex)', 'meaning': 'NCIT:C39387', 'annotations': {'level': 'doctoral'}, 'aliases': ['Doctor of Philosophy']},
|
|
194
|
+
"SCD": {'description': 'Doctor of Science', 'meaning': 'NCIT:C71379', 'annotations': {'level': 'doctoral'}, 'aliases': ['Doctor of Science']},
|
|
195
|
+
"POSTDOC": {'description': 'Postdoctoral researcher', 'annotations': {'level': 'postdoctoral'}},
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
class LicenseType(RichEnum):
|
|
199
|
+
"""
|
|
200
|
+
Common software and content licenses
|
|
201
|
+
"""
|
|
202
|
+
# Enum members
|
|
203
|
+
MIT = "MIT"
|
|
204
|
+
APACHE_2_0 = "APACHE_2_0"
|
|
205
|
+
BSD_3_CLAUSE = "BSD_3_CLAUSE"
|
|
206
|
+
BSD_2_CLAUSE = "BSD_2_CLAUSE"
|
|
207
|
+
ISC = "ISC"
|
|
208
|
+
GPL_3_0 = "GPL_3_0"
|
|
209
|
+
GPL_2_0 = "GPL_2_0"
|
|
210
|
+
LGPL_3_0 = "LGPL_3_0"
|
|
211
|
+
LGPL_2_1 = "LGPL_2_1"
|
|
212
|
+
AGPL_3_0 = "AGPL_3_0"
|
|
213
|
+
MPL_2_0 = "MPL_2_0"
|
|
214
|
+
CC_BY_4_0 = "CC_BY_4_0"
|
|
215
|
+
CC_BY_SA_4_0 = "CC_BY_SA_4_0"
|
|
216
|
+
CC_BY_NC_4_0 = "CC_BY_NC_4_0"
|
|
217
|
+
CC_BY_NC_SA_4_0 = "CC_BY_NC_SA_4_0"
|
|
218
|
+
CC_BY_ND_4_0 = "CC_BY_ND_4_0"
|
|
219
|
+
CC0_1_0 = "CC0_1_0"
|
|
220
|
+
UNLICENSE = "UNLICENSE"
|
|
221
|
+
PROPRIETARY = "PROPRIETARY"
|
|
222
|
+
CUSTOM = "CUSTOM"
|
|
223
|
+
|
|
224
|
+
# Set metadata after class creation
|
|
225
|
+
LicenseType._metadata = {
|
|
226
|
+
"MIT": {'description': 'MIT License', 'meaning': 'SPDX:MIT'},
|
|
227
|
+
"APACHE_2_0": {'description': 'Apache License 2.0', 'meaning': 'SPDX:Apache-2.0'},
|
|
228
|
+
"BSD_3_CLAUSE": {'description': 'BSD 3-Clause License', 'meaning': 'SPDX:BSD-3-Clause'},
|
|
229
|
+
"BSD_2_CLAUSE": {'description': 'BSD 2-Clause License', 'meaning': 'SPDX:BSD-2-Clause'},
|
|
230
|
+
"ISC": {'description': 'ISC License', 'meaning': 'SPDX:ISC'},
|
|
231
|
+
"GPL_3_0": {'description': 'GNU General Public License v3.0', 'meaning': 'SPDX:GPL-3.0'},
|
|
232
|
+
"GPL_2_0": {'description': 'GNU General Public License v2.0', 'meaning': 'SPDX:GPL-2.0'},
|
|
233
|
+
"LGPL_3_0": {'description': 'GNU Lesser General Public License v3.0', 'meaning': 'SPDX:LGPL-3.0'},
|
|
234
|
+
"LGPL_2_1": {'description': 'GNU Lesser General Public License v2.1', 'meaning': 'SPDX:LGPL-2.1'},
|
|
235
|
+
"AGPL_3_0": {'description': 'GNU Affero General Public License v3.0', 'meaning': 'SPDX:AGPL-3.0'},
|
|
236
|
+
"MPL_2_0": {'description': 'Mozilla Public License 2.0', 'meaning': 'SPDX:MPL-2.0'},
|
|
237
|
+
"CC_BY_4_0": {'description': 'Creative Commons Attribution 4.0', 'meaning': 'SPDX:CC-BY-4.0'},
|
|
238
|
+
"CC_BY_SA_4_0": {'description': 'Creative Commons Attribution-ShareAlike 4.0', 'meaning': 'SPDX:CC-BY-SA-4.0'},
|
|
239
|
+
"CC_BY_NC_4_0": {'description': 'Creative Commons Attribution-NonCommercial 4.0', 'meaning': 'SPDX:CC-BY-NC-4.0'},
|
|
240
|
+
"CC_BY_NC_SA_4_0": {'description': 'Creative Commons Attribution-NonCommercial-ShareAlike 4.0', 'meaning': 'SPDX:CC-BY-NC-SA-4.0'},
|
|
241
|
+
"CC_BY_ND_4_0": {'description': 'Creative Commons Attribution-NoDerivatives 4.0', 'meaning': 'SPDX:CC-BY-ND-4.0'},
|
|
242
|
+
"CC0_1_0": {'description': 'Creative Commons Zero v1.0 Universal', 'meaning': 'SPDX:CC0-1.0'},
|
|
243
|
+
"UNLICENSE": {'description': 'The Unlicense', 'meaning': 'SPDX:Unlicense'},
|
|
244
|
+
"PROPRIETARY": {'description': 'Proprietary/All rights reserved'},
|
|
245
|
+
"CUSTOM": {'description': 'Custom license terms'},
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
class ResearchField(RichEnum):
|
|
249
|
+
"""
|
|
250
|
+
Major research fields and disciplines
|
|
251
|
+
"""
|
|
252
|
+
# Enum members
|
|
253
|
+
PHYSICS = "PHYSICS"
|
|
254
|
+
CHEMISTRY = "CHEMISTRY"
|
|
255
|
+
BIOLOGY = "BIOLOGY"
|
|
256
|
+
MATHEMATICS = "MATHEMATICS"
|
|
257
|
+
EARTH_SCIENCES = "EARTH_SCIENCES"
|
|
258
|
+
ASTRONOMY = "ASTRONOMY"
|
|
259
|
+
MEDICINE = "MEDICINE"
|
|
260
|
+
NEUROSCIENCE = "NEUROSCIENCE"
|
|
261
|
+
GENETICS = "GENETICS"
|
|
262
|
+
ECOLOGY = "ECOLOGY"
|
|
263
|
+
MICROBIOLOGY = "MICROBIOLOGY"
|
|
264
|
+
BIOCHEMISTRY = "BIOCHEMISTRY"
|
|
265
|
+
COMPUTER_SCIENCE = "COMPUTER_SCIENCE"
|
|
266
|
+
ENGINEERING = "ENGINEERING"
|
|
267
|
+
MATERIALS_SCIENCE = "MATERIALS_SCIENCE"
|
|
268
|
+
ARTIFICIAL_INTELLIGENCE = "ARTIFICIAL_INTELLIGENCE"
|
|
269
|
+
ROBOTICS = "ROBOTICS"
|
|
270
|
+
PSYCHOLOGY = "PSYCHOLOGY"
|
|
271
|
+
SOCIOLOGY = "SOCIOLOGY"
|
|
272
|
+
ECONOMICS = "ECONOMICS"
|
|
273
|
+
POLITICAL_SCIENCE = "POLITICAL_SCIENCE"
|
|
274
|
+
ANTHROPOLOGY = "ANTHROPOLOGY"
|
|
275
|
+
EDUCATION = "EDUCATION"
|
|
276
|
+
HISTORY = "HISTORY"
|
|
277
|
+
PHILOSOPHY = "PHILOSOPHY"
|
|
278
|
+
LITERATURE = "LITERATURE"
|
|
279
|
+
LINGUISTICS = "LINGUISTICS"
|
|
280
|
+
ART = "ART"
|
|
281
|
+
MUSIC = "MUSIC"
|
|
282
|
+
BIOINFORMATICS = "BIOINFORMATICS"
|
|
283
|
+
COMPUTATIONAL_BIOLOGY = "COMPUTATIONAL_BIOLOGY"
|
|
284
|
+
DATA_SCIENCE = "DATA_SCIENCE"
|
|
285
|
+
COGNITIVE_SCIENCE = "COGNITIVE_SCIENCE"
|
|
286
|
+
ENVIRONMENTAL_SCIENCE = "ENVIRONMENTAL_SCIENCE"
|
|
287
|
+
PUBLIC_HEALTH = "PUBLIC_HEALTH"
|
|
288
|
+
|
|
289
|
+
# Set metadata after class creation
|
|
290
|
+
ResearchField._metadata = {
|
|
291
|
+
"PHYSICS": {'description': 'Physics', 'meaning': 'NCIT:C16989'},
|
|
292
|
+
"CHEMISTRY": {'description': 'Chemistry', 'meaning': 'NCIT:C16414'},
|
|
293
|
+
"BIOLOGY": {'description': 'Biology', 'meaning': 'NCIT:C16345'},
|
|
294
|
+
"MATHEMATICS": {'description': 'Mathematics', 'meaning': 'NCIT:C16825'},
|
|
295
|
+
"EARTH_SCIENCES": {'description': 'Earth sciences and geology'},
|
|
296
|
+
"ASTRONOMY": {'description': 'Astronomy and astrophysics'},
|
|
297
|
+
"MEDICINE": {'description': 'Medicine and health sciences', 'meaning': 'NCIT:C16833'},
|
|
298
|
+
"NEUROSCIENCE": {'description': 'Neuroscience', 'meaning': 'NCIT:C15817'},
|
|
299
|
+
"GENETICS": {'description': 'Genetics and genomics', 'meaning': 'NCIT:C16624'},
|
|
300
|
+
"ECOLOGY": {'description': 'Ecology and environmental science', 'meaning': 'NCIT:C16526'},
|
|
301
|
+
"MICROBIOLOGY": {'meaning': 'NCIT:C16851'},
|
|
302
|
+
"BIOCHEMISTRY": {'meaning': 'NCIT:C16337'},
|
|
303
|
+
"COMPUTER_SCIENCE": {'description': 'Computer science'},
|
|
304
|
+
"ENGINEERING": {'description': 'Engineering'},
|
|
305
|
+
"MATERIALS_SCIENCE": {'description': 'Materials science'},
|
|
306
|
+
"ARTIFICIAL_INTELLIGENCE": {'description': 'Artificial intelligence and machine learning'},
|
|
307
|
+
"ROBOTICS": {'description': 'Robotics'},
|
|
308
|
+
"PSYCHOLOGY": {'description': 'Psychology'},
|
|
309
|
+
"SOCIOLOGY": {'description': 'Sociology'},
|
|
310
|
+
"ECONOMICS": {'description': 'Economics'},
|
|
311
|
+
"POLITICAL_SCIENCE": {'description': 'Political science'},
|
|
312
|
+
"ANTHROPOLOGY": {'description': 'Anthropology'},
|
|
313
|
+
"EDUCATION": {'description': 'Education'},
|
|
314
|
+
"HISTORY": {'description': 'History'},
|
|
315
|
+
"PHILOSOPHY": {'description': 'Philosophy'},
|
|
316
|
+
"LITERATURE": {'description': 'Literature'},
|
|
317
|
+
"LINGUISTICS": {'description': 'Linguistics'},
|
|
318
|
+
"ART": {'description': 'Art and art history'},
|
|
319
|
+
"MUSIC": {'description': 'Music and musicology'},
|
|
320
|
+
"BIOINFORMATICS": {'description': 'Bioinformatics'},
|
|
321
|
+
"COMPUTATIONAL_BIOLOGY": {'description': 'Computational biology'},
|
|
322
|
+
"DATA_SCIENCE": {'description': 'Data science'},
|
|
323
|
+
"COGNITIVE_SCIENCE": {'description': 'Cognitive science'},
|
|
324
|
+
"ENVIRONMENTAL_SCIENCE": {'description': 'Environmental science'},
|
|
325
|
+
"PUBLIC_HEALTH": {'description': 'Public health'},
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
class FundingType(RichEnum):
|
|
329
|
+
"""
|
|
330
|
+
Types of research funding
|
|
331
|
+
"""
|
|
332
|
+
# Enum members
|
|
333
|
+
GRANT = "GRANT"
|
|
334
|
+
CONTRACT = "CONTRACT"
|
|
335
|
+
FELLOWSHIP = "FELLOWSHIP"
|
|
336
|
+
AWARD = "AWARD"
|
|
337
|
+
GIFT = "GIFT"
|
|
338
|
+
INTERNAL = "INTERNAL"
|
|
339
|
+
INDUSTRY = "INDUSTRY"
|
|
340
|
+
GOVERNMENT = "GOVERNMENT"
|
|
341
|
+
FOUNDATION = "FOUNDATION"
|
|
342
|
+
CROWDFUNDING = "CROWDFUNDING"
|
|
343
|
+
|
|
344
|
+
# Set metadata after class creation
|
|
345
|
+
FundingType._metadata = {
|
|
346
|
+
"GRANT": {'description': 'Research grant'},
|
|
347
|
+
"CONTRACT": {'description': 'Research contract'},
|
|
348
|
+
"FELLOWSHIP": {'description': 'Fellowship or scholarship', 'meaning': 'NCIT:C20003'},
|
|
349
|
+
"AWARD": {'description': 'Prize or award'},
|
|
350
|
+
"GIFT": {'description': 'Gift or donation'},
|
|
351
|
+
"INTERNAL": {'description': 'Internal/institutional funding'},
|
|
352
|
+
"INDUSTRY": {'description': 'Industry sponsorship'},
|
|
353
|
+
"GOVERNMENT": {'description': 'Government funding'},
|
|
354
|
+
"FOUNDATION": {'description': 'Foundation or charity funding'},
|
|
355
|
+
"CROWDFUNDING": {'description': 'Crowdfunded research'},
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
class ManuscriptSection(RichEnum):
|
|
359
|
+
"""
|
|
360
|
+
Sections of a scientific manuscript or publication
|
|
361
|
+
"""
|
|
362
|
+
# Enum members
|
|
363
|
+
TITLE = "TITLE"
|
|
364
|
+
AUTHORS = "AUTHORS"
|
|
365
|
+
ABSTRACT = "ABSTRACT"
|
|
366
|
+
KEYWORDS = "KEYWORDS"
|
|
367
|
+
INTRODUCTION = "INTRODUCTION"
|
|
368
|
+
LITERATURE_REVIEW = "LITERATURE_REVIEW"
|
|
369
|
+
METHODS = "METHODS"
|
|
370
|
+
RESULTS = "RESULTS"
|
|
371
|
+
DISCUSSION = "DISCUSSION"
|
|
372
|
+
CONCLUSIONS = "CONCLUSIONS"
|
|
373
|
+
RESULTS_AND_DISCUSSION = "RESULTS_AND_DISCUSSION"
|
|
374
|
+
ACKNOWLEDGMENTS = "ACKNOWLEDGMENTS"
|
|
375
|
+
REFERENCES = "REFERENCES"
|
|
376
|
+
APPENDICES = "APPENDICES"
|
|
377
|
+
SUPPLEMENTARY_MATERIAL = "SUPPLEMENTARY_MATERIAL"
|
|
378
|
+
DATA_AVAILABILITY = "DATA_AVAILABILITY"
|
|
379
|
+
CODE_AVAILABILITY = "CODE_AVAILABILITY"
|
|
380
|
+
AUTHOR_CONTRIBUTIONS = "AUTHOR_CONTRIBUTIONS"
|
|
381
|
+
CONFLICT_OF_INTEREST = "CONFLICT_OF_INTEREST"
|
|
382
|
+
FUNDING = "FUNDING"
|
|
383
|
+
ETHICS_STATEMENT = "ETHICS_STATEMENT"
|
|
384
|
+
SYSTEMATIC_REVIEW_METHODS = "SYSTEMATIC_REVIEW_METHODS"
|
|
385
|
+
META_ANALYSIS = "META_ANALYSIS"
|
|
386
|
+
STUDY_PROTOCOL = "STUDY_PROTOCOL"
|
|
387
|
+
CONSORT_FLOW_DIAGRAM = "CONSORT_FLOW_DIAGRAM"
|
|
388
|
+
HIGHLIGHTS = "HIGHLIGHTS"
|
|
389
|
+
GRAPHICAL_ABSTRACT = "GRAPHICAL_ABSTRACT"
|
|
390
|
+
LAY_SUMMARY = "LAY_SUMMARY"
|
|
391
|
+
BOX = "BOX"
|
|
392
|
+
CASE_PRESENTATION = "CASE_PRESENTATION"
|
|
393
|
+
LIMITATIONS = "LIMITATIONS"
|
|
394
|
+
FUTURE_DIRECTIONS = "FUTURE_DIRECTIONS"
|
|
395
|
+
GLOSSARY = "GLOSSARY"
|
|
396
|
+
ABBREVIATIONS = "ABBREVIATIONS"
|
|
397
|
+
OTHER_MAIN_TEXT = "OTHER_MAIN_TEXT"
|
|
398
|
+
OTHER_SUPPLEMENTARY = "OTHER_SUPPLEMENTARY"
|
|
399
|
+
|
|
400
|
+
# Set metadata after class creation
|
|
401
|
+
ManuscriptSection._metadata = {
|
|
402
|
+
"TITLE": {'meaning': 'IAO:0000305', 'annotations': {'order': 1}},
|
|
403
|
+
"AUTHORS": {'description': 'Authors and affiliations', 'meaning': 'IAO:0000321', 'annotations': {'order': 2}},
|
|
404
|
+
"ABSTRACT": {'description': 'Abstract', 'meaning': 'IAO:0000315', 'annotations': {'order': 3, 'typical_length': '150-300 words'}},
|
|
405
|
+
"KEYWORDS": {'meaning': 'IAO:0000630', 'annotations': {'order': 4}},
|
|
406
|
+
"INTRODUCTION": {'description': 'Introduction/Background', 'meaning': 'IAO:0000316', 'annotations': {'order': 5}, 'aliases': ['Background']},
|
|
407
|
+
"LITERATURE_REVIEW": {'description': 'Literature review', 'meaning': 'IAO:0000639', 'annotations': {'order': 6, 'optional': True}},
|
|
408
|
+
"METHODS": {'description': 'Methods/Materials and Methods', 'meaning': 'IAO:0000317', 'annotations': {'order': 7}, 'aliases': ['Materials and Methods', 'Methodology', 'Experimental']},
|
|
409
|
+
"RESULTS": {'meaning': 'IAO:0000318', 'annotations': {'order': 8}, 'aliases': ['Findings']},
|
|
410
|
+
"DISCUSSION": {'meaning': 'IAO:0000319', 'annotations': {'order': 9}},
|
|
411
|
+
"CONCLUSIONS": {'description': 'Conclusions', 'meaning': 'IAO:0000615', 'annotations': {'order': 10}, 'aliases': ['Conclusion']},
|
|
412
|
+
"RESULTS_AND_DISCUSSION": {'description': 'Combined Results and Discussion', 'annotations': {'order': 8, 'note': 'alternative to separate sections'}},
|
|
413
|
+
"ACKNOWLEDGMENTS": {'description': 'Acknowledgments', 'meaning': 'IAO:0000324', 'annotations': {'order': 11}, 'aliases': ['Acknowledgements']},
|
|
414
|
+
"REFERENCES": {'description': 'References/Bibliography', 'meaning': 'IAO:0000320', 'annotations': {'order': 12}, 'aliases': ['Bibliography', 'Literature Cited', 'Works Cited']},
|
|
415
|
+
"APPENDICES": {'description': 'Appendices', 'meaning': 'IAO:0000326', 'annotations': {'order': 13}, 'aliases': ['Appendix']},
|
|
416
|
+
"SUPPLEMENTARY_MATERIAL": {'description': 'Supplementary material', 'meaning': 'IAO:0000326', 'annotations': {'order': 14, 'location': 'often online-only'}, 'aliases': ['Supporting Information', 'Supplemental Data']},
|
|
417
|
+
"DATA_AVAILABILITY": {'description': 'Data availability statement', 'meaning': 'IAO:0000611', 'annotations': {'order': 11.1, 'required_by': 'many journals'}},
|
|
418
|
+
"CODE_AVAILABILITY": {'description': 'Code availability statement', 'meaning': 'IAO:0000611', 'annotations': {'order': 11.2}},
|
|
419
|
+
"AUTHOR_CONTRIBUTIONS": {'description': 'Author contributions', 'meaning': 'IAO:0000323', 'annotations': {'order': 11.3}, 'aliases': ['CRediT statement']},
|
|
420
|
+
"CONFLICT_OF_INTEREST": {'description': 'Conflict of interest statement', 'meaning': 'IAO:0000616', 'annotations': {'order': 11.4}, 'aliases': ['Competing Interests', 'Declaration of Interests']},
|
|
421
|
+
"FUNDING": {'description': 'Funding information', 'meaning': 'IAO:0000623', 'annotations': {'order': 11.5}, 'aliases': ['Financial Support', 'Grant Information']},
|
|
422
|
+
"ETHICS_STATEMENT": {'description': 'Ethics approval statement', 'meaning': 'IAO:0000620', 'annotations': {'order': 11.6}},
|
|
423
|
+
"SYSTEMATIC_REVIEW_METHODS": {'description': 'Systematic review methodology (PRISMA)', 'annotations': {'specific_to': 'systematic reviews'}},
|
|
424
|
+
"META_ANALYSIS": {'description': 'Meta-analysis section', 'annotations': {'specific_to': 'meta-analyses'}},
|
|
425
|
+
"STUDY_PROTOCOL": {'description': 'Study protocol', 'annotations': {'specific_to': 'clinical trials'}},
|
|
426
|
+
"CONSORT_FLOW_DIAGRAM": {'description': 'CONSORT flow diagram', 'annotations': {'specific_to': 'randomized trials'}},
|
|
427
|
+
"HIGHLIGHTS": {'description': 'Highlights/Key points', 'annotations': {'order': 3.5, 'typical_length': '3-5 bullet points'}},
|
|
428
|
+
"GRAPHICAL_ABSTRACT": {'description': 'Graphical abstract', 'meaning': 'IAO:0000707', 'annotations': {'order': 3.6, 'format': 'visual'}},
|
|
429
|
+
"LAY_SUMMARY": {'description': 'Lay summary/Plain language summary', 'meaning': 'IAO:0000609', 'annotations': {'order': 3.7, 'audience': 'general public'}},
|
|
430
|
+
"BOX": {'description': 'Box/Sidebar with supplementary information', 'annotations': {'placement': 'variable'}},
|
|
431
|
+
"CASE_PRESENTATION": {'description': 'Case presentation (for case reports)', 'meaning': 'IAO:0000613', 'annotations': {'specific_to': 'case reports'}},
|
|
432
|
+
"LIMITATIONS": {'description': 'Limitations section', 'meaning': 'IAO:0000631', 'annotations': {'often_part_of': 'Discussion'}},
|
|
433
|
+
"FUTURE_DIRECTIONS": {'description': 'Future directions/Future work', 'meaning': 'IAO:0000625', 'annotations': {'often_part_of': 'Discussion or Conclusions'}},
|
|
434
|
+
"GLOSSARY": {'description': 'Glossary of terms', 'annotations': {'placement': 'front or back matter'}},
|
|
435
|
+
"ABBREVIATIONS": {'description': 'List of abbreviations', 'meaning': 'IAO:0000606', 'annotations': {'placement': 'front matter'}},
|
|
436
|
+
"OTHER_MAIN_TEXT": {'description': 'Other main text section', 'annotations': {'catch_all': True}},
|
|
437
|
+
"OTHER_SUPPLEMENTARY": {'description': 'Other supplementary section', 'annotations': {'catch_all': True}},
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
class ResearchRole(RichEnum):
|
|
441
|
+
"""
|
|
442
|
+
Roles in research and authorship
|
|
443
|
+
"""
|
|
444
|
+
# Enum members
|
|
445
|
+
CONCEPTUALIZATION = "CONCEPTUALIZATION"
|
|
446
|
+
DATA_CURATION = "DATA_CURATION"
|
|
447
|
+
FORMAL_ANALYSIS = "FORMAL_ANALYSIS"
|
|
448
|
+
FUNDING_ACQUISITION = "FUNDING_ACQUISITION"
|
|
449
|
+
INVESTIGATION = "INVESTIGATION"
|
|
450
|
+
METHODOLOGY = "METHODOLOGY"
|
|
451
|
+
PROJECT_ADMINISTRATION = "PROJECT_ADMINISTRATION"
|
|
452
|
+
RESOURCES = "RESOURCES"
|
|
453
|
+
SOFTWARE = "SOFTWARE"
|
|
454
|
+
SUPERVISION = "SUPERVISION"
|
|
455
|
+
VALIDATION = "VALIDATION"
|
|
456
|
+
VISUALIZATION = "VISUALIZATION"
|
|
457
|
+
WRITING_ORIGINAL = "WRITING_ORIGINAL"
|
|
458
|
+
WRITING_REVIEW = "WRITING_REVIEW"
|
|
459
|
+
FIRST_AUTHOR = "FIRST_AUTHOR"
|
|
460
|
+
CORRESPONDING_AUTHOR = "CORRESPONDING_AUTHOR"
|
|
461
|
+
SENIOR_AUTHOR = "SENIOR_AUTHOR"
|
|
462
|
+
CO_AUTHOR = "CO_AUTHOR"
|
|
463
|
+
PRINCIPAL_INVESTIGATOR = "PRINCIPAL_INVESTIGATOR"
|
|
464
|
+
CO_INVESTIGATOR = "CO_INVESTIGATOR"
|
|
465
|
+
COLLABORATOR = "COLLABORATOR"
|
|
466
|
+
|
|
467
|
+
# Set metadata after class creation
|
|
468
|
+
ResearchRole._metadata = {
|
|
469
|
+
"CONCEPTUALIZATION": {'description': 'Ideas; formulation of research goals', 'meaning': 'CRediT:conceptualization'},
|
|
470
|
+
"DATA_CURATION": {'description': 'Data management and annotation', 'meaning': 'CRediT:data-curation'},
|
|
471
|
+
"FORMAL_ANALYSIS": {'description': 'Statistical and mathematical analysis', 'meaning': 'CRediT:formal-analysis'},
|
|
472
|
+
"FUNDING_ACQUISITION": {'description': 'Acquisition of financial support', 'meaning': 'CRediT:funding-acquisition'},
|
|
473
|
+
"INVESTIGATION": {'description': 'Conducting research and data collection', 'meaning': 'CRediT:investigation'},
|
|
474
|
+
"METHODOLOGY": {'description': 'Development of methodology', 'meaning': 'CRediT:methodology'},
|
|
475
|
+
"PROJECT_ADMINISTRATION": {'description': 'Project management and coordination', 'meaning': 'CRediT:project-administration'},
|
|
476
|
+
"RESOURCES": {'description': 'Provision of materials and tools', 'meaning': 'CRediT:resources'},
|
|
477
|
+
"SOFTWARE": {'description': 'Programming and software development', 'meaning': 'CRediT:software'},
|
|
478
|
+
"SUPERVISION": {'description': 'Oversight and mentorship', 'meaning': 'CRediT:supervision'},
|
|
479
|
+
"VALIDATION": {'description': 'Verification of results', 'meaning': 'CRediT:validation'},
|
|
480
|
+
"VISUALIZATION": {'description': 'Data presentation and visualization', 'meaning': 'CRediT:visualization'},
|
|
481
|
+
"WRITING_ORIGINAL": {'description': 'Writing - original draft', 'meaning': 'CRediT:writing-original-draft'},
|
|
482
|
+
"WRITING_REVIEW": {'description': 'Writing - review and editing', 'meaning': 'CRediT:writing-review-editing'},
|
|
483
|
+
"FIRST_AUTHOR": {'description': 'First/lead author', 'meaning': 'MS:1002034'},
|
|
484
|
+
"CORRESPONDING_AUTHOR": {'meaning': 'NCIT:C164481'},
|
|
485
|
+
"SENIOR_AUTHOR": {'description': 'Senior/last author', 'annotations': {'note': 'Often the PI or lab head'}},
|
|
486
|
+
"CO_AUTHOR": {'description': 'Co-author', 'meaning': 'NCIT:C42781'},
|
|
487
|
+
"PRINCIPAL_INVESTIGATOR": {'description': 'Principal investigator (PI)', 'meaning': 'NCIT:C19924'},
|
|
488
|
+
"CO_INVESTIGATOR": {'meaning': 'NCIT:C51812'},
|
|
489
|
+
"COLLABORATOR": {'meaning': 'NCIT:C84336'},
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
class OpenAccessType(RichEnum):
|
|
493
|
+
"""
|
|
494
|
+
Types of open access publishing
|
|
495
|
+
"""
|
|
496
|
+
# Enum members
|
|
497
|
+
GOLD = "GOLD"
|
|
498
|
+
GREEN = "GREEN"
|
|
499
|
+
HYBRID = "HYBRID"
|
|
500
|
+
DIAMOND = "DIAMOND"
|
|
501
|
+
BRONZE = "BRONZE"
|
|
502
|
+
CLOSED = "CLOSED"
|
|
503
|
+
EMBARGO = "EMBARGO"
|
|
504
|
+
|
|
505
|
+
# Set metadata after class creation
|
|
506
|
+
OpenAccessType._metadata = {
|
|
507
|
+
"GOLD": {'description': 'Gold open access (published OA)'},
|
|
508
|
+
"GREEN": {'description': 'Green open access (self-archived)'},
|
|
509
|
+
"HYBRID": {'description': 'Hybrid journal with OA option'},
|
|
510
|
+
"DIAMOND": {'description': 'Diamond/platinum OA (no fees)'},
|
|
511
|
+
"BRONZE": {'description': 'Free to read but no license'},
|
|
512
|
+
"CLOSED": {'description': 'Closed access/subscription only'},
|
|
513
|
+
"EMBARGO": {'description': 'Under embargo period'},
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
class CitationStyle(RichEnum):
|
|
517
|
+
"""
|
|
518
|
+
Common citation and reference styles
|
|
519
|
+
"""
|
|
520
|
+
# Enum members
|
|
521
|
+
APA = "APA"
|
|
522
|
+
MLA = "MLA"
|
|
523
|
+
CHICAGO = "CHICAGO"
|
|
524
|
+
HARVARD = "HARVARD"
|
|
525
|
+
VANCOUVER = "VANCOUVER"
|
|
526
|
+
IEEE = "IEEE"
|
|
527
|
+
ACS = "ACS"
|
|
528
|
+
AMA = "AMA"
|
|
529
|
+
NATURE = "NATURE"
|
|
530
|
+
SCIENCE = "SCIENCE"
|
|
531
|
+
CELL = "CELL"
|
|
532
|
+
|
|
533
|
+
# Set metadata after class creation
|
|
534
|
+
CitationStyle._metadata = {
|
|
535
|
+
"APA": {'description': 'American Psychological Association'},
|
|
536
|
+
"MLA": {'description': 'Modern Language Association'},
|
|
537
|
+
"CHICAGO": {'description': 'Chicago Manual of Style'},
|
|
538
|
+
"HARVARD": {'description': 'Harvard referencing'},
|
|
539
|
+
"VANCOUVER": {'description': 'Vancouver style (biomedical)'},
|
|
540
|
+
"IEEE": {'description': 'Institute of Electrical and Electronics Engineers'},
|
|
541
|
+
"ACS": {'description': 'American Chemical Society'},
|
|
542
|
+
"AMA": {'description': 'American Medical Association'},
|
|
543
|
+
"NATURE": {'description': 'Nature style'},
|
|
544
|
+
"SCIENCE": {'description': 'Science style'},
|
|
545
|
+
"CELL": {'description': 'Cell Press style'},
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
__all__ = [
|
|
549
|
+
"PublicationType",
|
|
550
|
+
"PeerReviewStatus",
|
|
551
|
+
"AcademicDegree",
|
|
552
|
+
"LicenseType",
|
|
553
|
+
"ResearchField",
|
|
554
|
+
"FundingType",
|
|
555
|
+
"ManuscriptSection",
|
|
556
|
+
"ResearchRole",
|
|
557
|
+
"OpenAccessType",
|
|
558
|
+
"CitationStyle",
|
|
559
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Auto-generated package."""
|