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,515 @@
|
|
|
1
|
+
name: sequencing_platforms
|
|
2
|
+
title: Sequencing Platform Value Sets
|
|
3
|
+
description: Value sets for DNA/RNA sequencing platforms, technologies, and methodologies
|
|
4
|
+
id: https://w3id.org/linkml/valuesets/bio/sequencing_platforms
|
|
5
|
+
imports:
|
|
6
|
+
- linkml:types
|
|
7
|
+
prefixes:
|
|
8
|
+
valuesets: https://w3id.org/valuesets/
|
|
9
|
+
OBI: http://purl.obolibrary.org/obo/OBI_
|
|
10
|
+
SO: http://purl.obolibrary.org/obo/SO_
|
|
11
|
+
EDAM: http://edamontology.org/
|
|
12
|
+
default_prefix: valuesets
|
|
13
|
+
slots:
|
|
14
|
+
sequencing_platform:
|
|
15
|
+
description: Major DNA/RNA sequencing platforms and instruments used in genomics research
|
|
16
|
+
range: SequencingPlatform
|
|
17
|
+
sequencing_chemistry:
|
|
18
|
+
description: Fundamental chemical methods used for DNA/RNA sequencing
|
|
19
|
+
range: SequencingChemistry
|
|
20
|
+
library_preparation:
|
|
21
|
+
description: Methods for preparing sequencing libraries from nucleic acid samples
|
|
22
|
+
range: LibraryPreparation
|
|
23
|
+
sequencing_application:
|
|
24
|
+
description: Primary applications or assays using DNA/RNA sequencing
|
|
25
|
+
range: SequencingApplication
|
|
26
|
+
read:
|
|
27
|
+
description: Configuration of sequencing reads generated by different platforms
|
|
28
|
+
range: ReadType
|
|
29
|
+
sequence_file_format:
|
|
30
|
+
description: Standard file formats used for storing sequence data
|
|
31
|
+
range: SequenceFileFormat
|
|
32
|
+
data_processing_level:
|
|
33
|
+
description: Levels of processing applied to raw sequencing data
|
|
34
|
+
range: DataProcessingLevel
|
|
35
|
+
enums:
|
|
36
|
+
SequencingPlatform:
|
|
37
|
+
title: Sequencing Platforms and Instruments
|
|
38
|
+
description: Major DNA/RNA sequencing platforms and instruments used in genomics research
|
|
39
|
+
permissible_values:
|
|
40
|
+
ILLUMINA_HISEQ_2000:
|
|
41
|
+
description: Illumina HiSeq 2000
|
|
42
|
+
meaning: OBI:0002001
|
|
43
|
+
annotations:
|
|
44
|
+
manufacturer: Illumina
|
|
45
|
+
read_type: short
|
|
46
|
+
chemistry: sequencing by synthesis
|
|
47
|
+
ILLUMINA_HISEQ_2500:
|
|
48
|
+
description: Illumina HiSeq 2500
|
|
49
|
+
meaning: OBI:0002002
|
|
50
|
+
annotations:
|
|
51
|
+
manufacturer: Illumina
|
|
52
|
+
read_type: short
|
|
53
|
+
chemistry: sequencing by synthesis
|
|
54
|
+
ILLUMINA_HISEQ_3000:
|
|
55
|
+
description: Illumina HiSeq 3000
|
|
56
|
+
meaning: OBI:0002048
|
|
57
|
+
annotations:
|
|
58
|
+
manufacturer: Illumina
|
|
59
|
+
read_type: short
|
|
60
|
+
chemistry: sequencing by synthesis
|
|
61
|
+
ILLUMINA_HISEQ_4000:
|
|
62
|
+
description: Illumina HiSeq 4000
|
|
63
|
+
meaning: OBI:0002049
|
|
64
|
+
annotations:
|
|
65
|
+
manufacturer: Illumina
|
|
66
|
+
read_type: short
|
|
67
|
+
chemistry: sequencing by synthesis
|
|
68
|
+
ILLUMINA_HISEQ_X:
|
|
69
|
+
description: Illumina HiSeq X
|
|
70
|
+
meaning: OBI:0002129
|
|
71
|
+
aliases:
|
|
72
|
+
- Illumina HiSeq X Ten
|
|
73
|
+
annotations:
|
|
74
|
+
manufacturer: Illumina
|
|
75
|
+
read_type: short
|
|
76
|
+
chemistry: sequencing by synthesis
|
|
77
|
+
ILLUMINA_NOVASEQ_6000:
|
|
78
|
+
description: Illumina NovaSeq 6000
|
|
79
|
+
meaning: OBI:0002630
|
|
80
|
+
annotations:
|
|
81
|
+
manufacturer: Illumina
|
|
82
|
+
read_type: short
|
|
83
|
+
chemistry: sequencing by synthesis
|
|
84
|
+
ILLUMINA_NEXTSEQ_500:
|
|
85
|
+
description: Illumina NextSeq 500
|
|
86
|
+
meaning: OBI:0002021
|
|
87
|
+
annotations:
|
|
88
|
+
manufacturer: Illumina
|
|
89
|
+
read_type: short
|
|
90
|
+
chemistry: sequencing by synthesis
|
|
91
|
+
ILLUMINA_NEXTSEQ_550:
|
|
92
|
+
description: Illumina NextSeq 550
|
|
93
|
+
meaning: OBI:0003387
|
|
94
|
+
annotations:
|
|
95
|
+
manufacturer: Illumina
|
|
96
|
+
read_type: short
|
|
97
|
+
chemistry: sequencing by synthesis
|
|
98
|
+
ILLUMINA_NEXTSEQ_1000:
|
|
99
|
+
description: Illumina NextSeq 1000
|
|
100
|
+
annotations:
|
|
101
|
+
manufacturer: Illumina
|
|
102
|
+
read_type: short
|
|
103
|
+
chemistry: sequencing by synthesis
|
|
104
|
+
ILLUMINA_NEXTSEQ_2000:
|
|
105
|
+
description: Illumina NextSeq 2000
|
|
106
|
+
annotations:
|
|
107
|
+
manufacturer: Illumina
|
|
108
|
+
read_type: short
|
|
109
|
+
chemistry: sequencing by synthesis
|
|
110
|
+
ILLUMINA_MISEQ:
|
|
111
|
+
description: Illumina MiSeq
|
|
112
|
+
meaning: OBI:0002003
|
|
113
|
+
annotations:
|
|
114
|
+
manufacturer: Illumina
|
|
115
|
+
read_type: short
|
|
116
|
+
chemistry: sequencing by synthesis
|
|
117
|
+
ILLUMINA_ISEQ_100:
|
|
118
|
+
description: Illumina iSeq 100
|
|
119
|
+
annotations:
|
|
120
|
+
manufacturer: Illumina
|
|
121
|
+
read_type: short
|
|
122
|
+
chemistry: sequencing by synthesis
|
|
123
|
+
PACBIO_RS:
|
|
124
|
+
description: PacBio RS
|
|
125
|
+
annotations:
|
|
126
|
+
manufacturer: Pacific Biosciences
|
|
127
|
+
read_type: long
|
|
128
|
+
chemistry: single molecule real time
|
|
129
|
+
PACBIO_RS_II:
|
|
130
|
+
description: PacBio RS II
|
|
131
|
+
meaning: OBI:0002012
|
|
132
|
+
annotations:
|
|
133
|
+
manufacturer: Pacific Biosciences
|
|
134
|
+
read_type: long
|
|
135
|
+
chemistry: single molecule real time
|
|
136
|
+
PACBIO_SEQUEL:
|
|
137
|
+
description: PacBio Sequel
|
|
138
|
+
meaning: OBI:0002632
|
|
139
|
+
annotations:
|
|
140
|
+
manufacturer: Pacific Biosciences
|
|
141
|
+
read_type: long
|
|
142
|
+
chemistry: single molecule real time
|
|
143
|
+
PACBIO_SEQUEL_II:
|
|
144
|
+
description: PacBio Sequel II
|
|
145
|
+
meaning: OBI:0002633
|
|
146
|
+
annotations:
|
|
147
|
+
manufacturer: Pacific Biosciences
|
|
148
|
+
read_type: long
|
|
149
|
+
chemistry: single molecule real time
|
|
150
|
+
PACBIO_REVIO:
|
|
151
|
+
description: PacBio Revio
|
|
152
|
+
annotations:
|
|
153
|
+
manufacturer: Pacific Biosciences
|
|
154
|
+
read_type: long
|
|
155
|
+
chemistry: single molecule real time
|
|
156
|
+
NANOPORE_MINION:
|
|
157
|
+
description: Oxford Nanopore MinION
|
|
158
|
+
meaning: OBI:0002750
|
|
159
|
+
aliases:
|
|
160
|
+
- Oxford Nanopore MinION
|
|
161
|
+
annotations:
|
|
162
|
+
manufacturer: Oxford Nanopore Technologies
|
|
163
|
+
read_type: long
|
|
164
|
+
chemistry: nanopore sequencing
|
|
165
|
+
NANOPORE_GRIDION:
|
|
166
|
+
description: Oxford Nanopore GridION
|
|
167
|
+
meaning: OBI:0002751
|
|
168
|
+
aliases:
|
|
169
|
+
- Oxford Nanopore GridION Mk1
|
|
170
|
+
annotations:
|
|
171
|
+
manufacturer: Oxford Nanopore Technologies
|
|
172
|
+
read_type: long
|
|
173
|
+
chemistry: nanopore sequencing
|
|
174
|
+
NANOPORE_PROMETHION:
|
|
175
|
+
description: Oxford Nanopore PromethION
|
|
176
|
+
meaning: OBI:0002752
|
|
177
|
+
aliases:
|
|
178
|
+
- Oxford Nanopore PromethION
|
|
179
|
+
annotations:
|
|
180
|
+
manufacturer: Oxford Nanopore Technologies
|
|
181
|
+
read_type: long
|
|
182
|
+
chemistry: nanopore sequencing
|
|
183
|
+
NANOPORE_FLONGLE:
|
|
184
|
+
description: Oxford Nanopore Flongle
|
|
185
|
+
annotations:
|
|
186
|
+
manufacturer: Oxford Nanopore Technologies
|
|
187
|
+
read_type: long
|
|
188
|
+
chemistry: nanopore sequencing
|
|
189
|
+
ELEMENT_AVITI:
|
|
190
|
+
description: Element Biosciences AVITI
|
|
191
|
+
annotations:
|
|
192
|
+
manufacturer: Element Biosciences
|
|
193
|
+
read_type: short
|
|
194
|
+
chemistry: sequencing by avidity
|
|
195
|
+
MGI_DNBSEQ_T7:
|
|
196
|
+
description: MGI DNBSEQ-T7
|
|
197
|
+
annotations:
|
|
198
|
+
manufacturer: MGI/BGI
|
|
199
|
+
read_type: short
|
|
200
|
+
chemistry: DNA nanoball sequencing
|
|
201
|
+
MGI_DNBSEQ_G400:
|
|
202
|
+
description: MGI DNBSEQ-G400
|
|
203
|
+
annotations:
|
|
204
|
+
manufacturer: MGI/BGI
|
|
205
|
+
read_type: short
|
|
206
|
+
chemistry: DNA nanoball sequencing
|
|
207
|
+
MGI_DNBSEQ_G50:
|
|
208
|
+
description: MGI DNBSEQ-G50
|
|
209
|
+
annotations:
|
|
210
|
+
manufacturer: MGI/BGI
|
|
211
|
+
read_type: short
|
|
212
|
+
chemistry: DNA nanoball sequencing
|
|
213
|
+
SANGER_SEQUENCING:
|
|
214
|
+
description: Sanger chain termination sequencing
|
|
215
|
+
meaning: OBI:0000695
|
|
216
|
+
aliases:
|
|
217
|
+
- chain termination sequencing assay
|
|
218
|
+
annotations:
|
|
219
|
+
manufacturer: Various
|
|
220
|
+
read_type: short
|
|
221
|
+
chemistry: chain termination
|
|
222
|
+
ROCHE_454_GS:
|
|
223
|
+
description: Roche 454 Genome Sequencer
|
|
224
|
+
meaning: OBI:0000702
|
|
225
|
+
aliases:
|
|
226
|
+
- 454 Genome Sequencer FLX
|
|
227
|
+
annotations:
|
|
228
|
+
manufacturer: Roche/454
|
|
229
|
+
read_type: short
|
|
230
|
+
chemistry: pyrosequencing
|
|
231
|
+
status: discontinued
|
|
232
|
+
LIFE_TECHNOLOGIES_ION_TORRENT:
|
|
233
|
+
description: Life Technologies Ion Torrent
|
|
234
|
+
annotations:
|
|
235
|
+
manufacturer: Life Technologies/Thermo Fisher
|
|
236
|
+
read_type: short
|
|
237
|
+
chemistry: semiconductor sequencing
|
|
238
|
+
ABI_SOLID:
|
|
239
|
+
description: ABI SOLiD
|
|
240
|
+
annotations:
|
|
241
|
+
manufacturer: Life Technologies/Applied Biosystems
|
|
242
|
+
read_type: short
|
|
243
|
+
chemistry: sequencing by ligation
|
|
244
|
+
status: discontinued
|
|
245
|
+
SequencingChemistry:
|
|
246
|
+
title: Sequencing Chemistry Methods
|
|
247
|
+
description: Fundamental chemical methods used for DNA/RNA sequencing
|
|
248
|
+
permissible_values:
|
|
249
|
+
SEQUENCING_BY_SYNTHESIS:
|
|
250
|
+
title: SEQUENCING_BY_SYNTHESIS
|
|
251
|
+
description: Sequencing by synthesis (Illumina)
|
|
252
|
+
meaning: OBI:0000734
|
|
253
|
+
aliases:
|
|
254
|
+
- DNA sequencing by synthesis assay
|
|
255
|
+
SINGLE_MOLECULE_REAL_TIME:
|
|
256
|
+
title: SINGLE_MOLECULE_REAL_TIME
|
|
257
|
+
description: Single molecule real-time sequencing (PacBio)
|
|
258
|
+
NANOPORE_SEQUENCING:
|
|
259
|
+
title: NANOPORE_SEQUENCING
|
|
260
|
+
description: Nanopore sequencing (Oxford Nanopore)
|
|
261
|
+
PYROSEQUENCING:
|
|
262
|
+
title: PYROSEQUENCING
|
|
263
|
+
description: Pyrosequencing (454)
|
|
264
|
+
SEQUENCING_BY_LIGATION:
|
|
265
|
+
title: SEQUENCING_BY_LIGATION
|
|
266
|
+
description: Sequencing by ligation (SOLiD)
|
|
267
|
+
meaning: OBI:0000723
|
|
268
|
+
aliases:
|
|
269
|
+
- DNA sequencing by ligation assay
|
|
270
|
+
CHAIN_TERMINATION:
|
|
271
|
+
title: CHAIN_TERMINATION
|
|
272
|
+
description: Chain termination method (Sanger)
|
|
273
|
+
meaning: OBI:0000695
|
|
274
|
+
aliases:
|
|
275
|
+
- chain termination sequencing assay
|
|
276
|
+
SEMICONDUCTOR_SEQUENCING:
|
|
277
|
+
description: Semiconductor/Ion semiconductor sequencing
|
|
278
|
+
DNA_NANOBALL_SEQUENCING:
|
|
279
|
+
description: DNA nanoball sequencing (MGI/BGI)
|
|
280
|
+
SEQUENCING_BY_AVIDITY:
|
|
281
|
+
description: Sequencing by avidity (Element Biosciences)
|
|
282
|
+
LibraryPreparation:
|
|
283
|
+
title: Library Preparation Methods
|
|
284
|
+
description: Methods for preparing sequencing libraries from nucleic acid samples
|
|
285
|
+
permissible_values:
|
|
286
|
+
GENOMIC_DNA:
|
|
287
|
+
description: Genomic DNA library preparation
|
|
288
|
+
WHOLE_GENOME_AMPLIFICATION:
|
|
289
|
+
description: Whole genome amplification (WGA)
|
|
290
|
+
PCR_AMPLICON:
|
|
291
|
+
description: PCR amplicon sequencing
|
|
292
|
+
RNA_SEQ:
|
|
293
|
+
description: RNA sequencing library prep
|
|
294
|
+
SMALL_RNA_SEQ:
|
|
295
|
+
description: Small RNA sequencing
|
|
296
|
+
SINGLE_CELL_RNA_SEQ:
|
|
297
|
+
description: Single-cell RNA sequencing
|
|
298
|
+
ATAC_SEQ:
|
|
299
|
+
description: ATAC-seq (chromatin accessibility)
|
|
300
|
+
CHIP_SEQ:
|
|
301
|
+
description: ChIP-seq (chromatin immunoprecipitation)
|
|
302
|
+
BISULFITE_SEQ:
|
|
303
|
+
description: Bisulfite sequencing (methylation)
|
|
304
|
+
HI_C:
|
|
305
|
+
description: Hi-C (chromosome conformation capture)
|
|
306
|
+
CUT_AND_RUN:
|
|
307
|
+
description: CUT&RUN (chromatin profiling)
|
|
308
|
+
CUT_AND_TAG:
|
|
309
|
+
description: CUT&Tag (chromatin profiling)
|
|
310
|
+
CAPTURE_SEQUENCING:
|
|
311
|
+
description: Target capture/enrichment sequencing
|
|
312
|
+
EXOME_SEQUENCING:
|
|
313
|
+
description: Whole exome sequencing
|
|
314
|
+
METAGENOMICS:
|
|
315
|
+
description: Metagenomic sequencing
|
|
316
|
+
AMPLICON_SEQUENCING:
|
|
317
|
+
description: 16S/ITS amplicon sequencing
|
|
318
|
+
DIRECT_RNA:
|
|
319
|
+
description: Direct RNA sequencing (nanopore)
|
|
320
|
+
CDNA_SEQUENCING:
|
|
321
|
+
description: cDNA sequencing
|
|
322
|
+
RIBOSOME_PROFILING:
|
|
323
|
+
description: Ribosome profiling (Ribo-seq)
|
|
324
|
+
SequencingApplication:
|
|
325
|
+
title: Sequencing Applications
|
|
326
|
+
description: Primary applications or assays using DNA/RNA sequencing
|
|
327
|
+
permissible_values:
|
|
328
|
+
WHOLE_GENOME_SEQUENCING:
|
|
329
|
+
title: WHOLE_GENOME_SEQUENCING
|
|
330
|
+
description: Whole genome sequencing (WGS)
|
|
331
|
+
meaning: EDAM:topic_3673
|
|
332
|
+
WHOLE_EXOME_SEQUENCING:
|
|
333
|
+
title: WHOLE_EXOME_SEQUENCING
|
|
334
|
+
description: Whole exome sequencing (WES)
|
|
335
|
+
meaning: EDAM:topic_3676
|
|
336
|
+
aliases:
|
|
337
|
+
- Exome sequencing
|
|
338
|
+
TRANSCRIPTOME_SEQUENCING:
|
|
339
|
+
title: TRANSCRIPTOME_SEQUENCING
|
|
340
|
+
description: RNA sequencing (RNA-seq)
|
|
341
|
+
meaning: EDAM:topic_3170
|
|
342
|
+
aliases:
|
|
343
|
+
- RNA-Seq
|
|
344
|
+
TARGETED_SEQUENCING:
|
|
345
|
+
description: Targeted gene panel sequencing
|
|
346
|
+
EPIGENOMICS:
|
|
347
|
+
description: Epigenomic profiling
|
|
348
|
+
METAGENOMICS:
|
|
349
|
+
title: METAGENOMICS
|
|
350
|
+
description: Metagenomic sequencing
|
|
351
|
+
meaning: EDAM:topic_3837
|
|
352
|
+
aliases:
|
|
353
|
+
- Metagenomic sequencing
|
|
354
|
+
SINGLE_CELL_GENOMICS:
|
|
355
|
+
description: Single-cell genomics
|
|
356
|
+
SINGLE_CELL_TRANSCRIPTOMICS:
|
|
357
|
+
title: SINGLE_CELL_TRANSCRIPTOMICS
|
|
358
|
+
description: Single-cell transcriptomics
|
|
359
|
+
meaning: EDAM:topic_4028
|
|
360
|
+
aliases:
|
|
361
|
+
- Single-cell sequencing
|
|
362
|
+
CHROMATIN_IMMUNOPRECIPITATION:
|
|
363
|
+
title: CHROMATIN_IMMUNOPRECIPITATION
|
|
364
|
+
description: ChIP-seq
|
|
365
|
+
meaning: EDAM:topic_3656
|
|
366
|
+
aliases:
|
|
367
|
+
- Immunoprecipitation experiment
|
|
368
|
+
CHROMATIN_ACCESSIBILITY:
|
|
369
|
+
description: ATAC-seq/FAIRE-seq
|
|
370
|
+
DNA_METHYLATION:
|
|
371
|
+
description: Bisulfite/methylation sequencing
|
|
372
|
+
CHROMOSOME_CONFORMATION:
|
|
373
|
+
description: Hi-C/3C-seq
|
|
374
|
+
VARIANT_CALLING:
|
|
375
|
+
description: Genetic variant discovery
|
|
376
|
+
PHARMACOGENOMICS:
|
|
377
|
+
description: Pharmacogenomic sequencing
|
|
378
|
+
CLINICAL_DIAGNOSTICS:
|
|
379
|
+
description: Clinical diagnostic sequencing
|
|
380
|
+
POPULATION_GENOMICS:
|
|
381
|
+
description: Population-scale genomics
|
|
382
|
+
ReadType:
|
|
383
|
+
title: Sequencing Read Types
|
|
384
|
+
description: Configuration of sequencing reads generated by different platforms
|
|
385
|
+
permissible_values:
|
|
386
|
+
SINGLE_END:
|
|
387
|
+
title: SINGLE_END
|
|
388
|
+
description: Single-end reads
|
|
389
|
+
PAIRED_END:
|
|
390
|
+
title: PAIRED_END
|
|
391
|
+
description: Paired-end reads
|
|
392
|
+
MATE_PAIR:
|
|
393
|
+
description: Mate-pair reads (large insert)
|
|
394
|
+
LONG_READ:
|
|
395
|
+
description: Long reads (>1kb typical)
|
|
396
|
+
ULTRA_LONG_READ:
|
|
397
|
+
description: Ultra-long reads (>10kb)
|
|
398
|
+
CONTINUOUS_LONG_READ:
|
|
399
|
+
description: Continuous long reads (nanopore)
|
|
400
|
+
SequenceFileFormat:
|
|
401
|
+
title: Sequence File Formats
|
|
402
|
+
description: Standard file formats used for storing sequence data
|
|
403
|
+
permissible_values:
|
|
404
|
+
FASTA:
|
|
405
|
+
description: FASTA sequence format
|
|
406
|
+
meaning: EDAM:format_1929
|
|
407
|
+
annotations:
|
|
408
|
+
extensions: .fa, .fasta, .fna, .ffn, .faa, .frn
|
|
409
|
+
content: sequences only
|
|
410
|
+
FASTQ:
|
|
411
|
+
description: FASTQ sequence with quality format
|
|
412
|
+
meaning: EDAM:format_1930
|
|
413
|
+
annotations:
|
|
414
|
+
extensions: .fq, .fastq
|
|
415
|
+
content: sequences and quality scores
|
|
416
|
+
SAM:
|
|
417
|
+
description: Sequence Alignment Map format
|
|
418
|
+
meaning: EDAM:format_2573
|
|
419
|
+
annotations:
|
|
420
|
+
extensions: .sam
|
|
421
|
+
content: aligned sequences (text)
|
|
422
|
+
BAM:
|
|
423
|
+
description: Binary Alignment Map format
|
|
424
|
+
meaning: EDAM:format_2572
|
|
425
|
+
annotations:
|
|
426
|
+
extensions: .bam
|
|
427
|
+
content: aligned sequences (binary)
|
|
428
|
+
CRAM:
|
|
429
|
+
description: Compressed Reference-oriented Alignment Map
|
|
430
|
+
annotations:
|
|
431
|
+
extensions: .cram
|
|
432
|
+
content: compressed aligned sequences
|
|
433
|
+
VCF:
|
|
434
|
+
description: Variant Call Format
|
|
435
|
+
meaning: EDAM:format_3016
|
|
436
|
+
annotations:
|
|
437
|
+
extensions: .vcf
|
|
438
|
+
content: genetic variants
|
|
439
|
+
BCF:
|
|
440
|
+
description: Binary Variant Call Format
|
|
441
|
+
meaning: EDAM:format_3020
|
|
442
|
+
annotations:
|
|
443
|
+
extensions: .bcf
|
|
444
|
+
content: genetic variants (binary)
|
|
445
|
+
GFF3:
|
|
446
|
+
description: Generic Feature Format version 3
|
|
447
|
+
annotations:
|
|
448
|
+
extensions: .gff, .gff3
|
|
449
|
+
content: genomic annotations
|
|
450
|
+
GTF:
|
|
451
|
+
description: Gene Transfer Format
|
|
452
|
+
annotations:
|
|
453
|
+
extensions: .gtf
|
|
454
|
+
content: gene annotations
|
|
455
|
+
BED:
|
|
456
|
+
description: Browser Extensible Data format
|
|
457
|
+
annotations:
|
|
458
|
+
extensions: .bed
|
|
459
|
+
content: genomic intervals
|
|
460
|
+
BIGWIG:
|
|
461
|
+
description: BigWig format for continuous data
|
|
462
|
+
annotations:
|
|
463
|
+
extensions: .bw, .bigwig
|
|
464
|
+
content: continuous genomic data
|
|
465
|
+
BIGBED:
|
|
466
|
+
description: BigBed format for interval data
|
|
467
|
+
annotations:
|
|
468
|
+
extensions: .bb, .bigbed
|
|
469
|
+
content: genomic intervals (indexed)
|
|
470
|
+
HDF5:
|
|
471
|
+
description: Hierarchical Data Format 5
|
|
472
|
+
annotations:
|
|
473
|
+
extensions: .h5, .hdf5
|
|
474
|
+
content: multi-dimensional arrays
|
|
475
|
+
SFF:
|
|
476
|
+
description: Standard Flowgram Format (454)
|
|
477
|
+
meaning: EDAM:format_3284
|
|
478
|
+
annotations:
|
|
479
|
+
extensions: .sff
|
|
480
|
+
content: 454 sequencing data
|
|
481
|
+
status: legacy
|
|
482
|
+
FAST5:
|
|
483
|
+
description: Fast5 format (Oxford Nanopore)
|
|
484
|
+
annotations:
|
|
485
|
+
extensions: .fast5
|
|
486
|
+
content: nanopore raw signal data
|
|
487
|
+
POD5:
|
|
488
|
+
description: POD5 format (Oxford Nanopore, newer)
|
|
489
|
+
annotations:
|
|
490
|
+
extensions: .pod5
|
|
491
|
+
content: nanopore raw signal data (compressed)
|
|
492
|
+
DataProcessingLevel:
|
|
493
|
+
title: Sequence Data Processing Levels
|
|
494
|
+
description: Levels of processing applied to raw sequencing data
|
|
495
|
+
permissible_values:
|
|
496
|
+
RAW:
|
|
497
|
+
description: Raw unprocessed sequencing reads
|
|
498
|
+
QUALITY_FILTERED:
|
|
499
|
+
description: Quality filtered reads
|
|
500
|
+
TRIMMED:
|
|
501
|
+
description: Adapter/quality trimmed reads
|
|
502
|
+
ALIGNED:
|
|
503
|
+
description: Aligned to reference genome
|
|
504
|
+
DEDUPLICATED:
|
|
505
|
+
description: PCR duplicates removed
|
|
506
|
+
RECALIBRATED:
|
|
507
|
+
description: Base quality score recalibrated
|
|
508
|
+
VARIANT_CALLED:
|
|
509
|
+
description: Variants called from alignments
|
|
510
|
+
NORMALIZED:
|
|
511
|
+
description: Expression normalized (RNA-seq)
|
|
512
|
+
ASSEMBLED:
|
|
513
|
+
description: De novo assembled sequences
|
|
514
|
+
ANNOTATED:
|
|
515
|
+
description: Functionally annotated sequences
|