forked from datacommonsorg/schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
genome_annotation_enum.mcf
1617 lines (1281 loc) · 66.6 KB
/
genome_annotation_enum.mcf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# AssociationTypeEnum
Node: dcid:AssociationTypeEnum
name: "AssociationTypeEnum"
typeOf: schema:Class
subClassOf: dcs:Enumeration
description: "The way by which an association between two entities is made."
Node: dcid:AssociationTypeExperiment
typeOf: dcs:AssociationTypeEnum
name: "Experiment"
description: "An association between two things was made as a result of a scientific experiment or screening."
Node: dcid:AssociationTypeManuallyCurated
typeOf: dcs:AssociationTypeEnum
name: "Manually Curated"
description: "An association between two things was made through manual curation of scientific literature or database annotations."
Node: dcid:AssociationTypeTextMining
typeOf: dcs:AssociationTypeEnum
name: "Text Mining"
description: "An association between two things was made through automated text mining of the scientific literature."
# BiologicalTaxonomyGroupEnum
Node: dcid:BiologicalTaxonomyGroupEnum
name: "BiologicalTaxonomyGroupEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Commonly used organism groups."
Node: dcid:BiologicalTaxonomyGroupArchaea
name: "Archaea"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "Archaea is a domain of single-celled organisms. These microorganisms lack cell nuclei and are therefore prokaryotes."
descriptionUrl: "https://en.wikipedia.org/wiki/Archaea"
Node: dcid:BiologicalTaxonomyGroupBacteria
name: "Bacteria"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "Bacteria are ubiquitous, mostly free-living organisms often consisting of one biological cell. They constitute a large domain of prokaryotic microorganisms. "
descriptionUrl: "https://en.wikipedia.org/wiki/Bacteria"
Node: dcid:BiologicalTaxonomyGroupFungi
name: "Fungi"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "A fungus is any member of the group of eukaryotic organisms that includes microorganisms such as yeasts and molds, as well as the more familiar mushrooms. These organisms are classified as one of the traditional eukaryotic kingdoms, along with Animalia, Plantae and either Protista or Protozoa and Chromista."
descriptionUrl: "https://en.wikipedia.org/wiki/Fungus"
Node: dcid:BiologicalTaxonomyGroupInvertebrate
name: "Invertebrate"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "Invertebrates an umbrella term describing animals that neither develop nor retain a vertebral column (commonly known as a spine or backbone), which evolved from the notochord. It is a paraphyletic grouping including all animals excluding the chordate subphylum Vertebrata, i.e. vertebrates."
descriptionUrl: "https://en.wikipedia.org/wiki/Invertebrate"
Node: dcid:BiologicalTaxonomyGroupMetagenomes
name: "Metagenomes"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "Metagenome is a sequence that comes from genetic material recovered directly from environmental or clinical samples."
Node: dcid:BiologicalTaxonomyGroupOther
name: "Other"
typeOf: dcs:BiologicalTaxonomyGroupEnum
Node: dcid:BiologicalTaxonomyGroupPlant
name: "Plant"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "Plants are the eukaryotes that form the kingdom Plantae; they are predominantly photosynthetic. This means that they obtain their energy from sunlight, using chloroplasts derived from endosymbiosis with cyanobacteria to produce sugars from carbon dioxide and water, using the green pigment chlorophyll. Exceptions are parasitic plants that have lost the genes for chlorophyll and photosynthesis, and obtain their energy from other plants or fungi."
descriptionUrl: "https://en.wikipedia.org/wiki/Plant"
Node: dcid:BiologicalTaxonomyGroupProtozoa
name: "Protozoa"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "Protozoa are a polyphyletic group of single-celled eukaryotes, either free-living or parasitic, that feed on organic matter such as other microorganisms or organic debris."
descriptionUrl: "https://en.wikipedia.org/wiki/Protozoa"
Node: dcid:BiologicalTaxonomyGroupVertebrateMammalian
name: "Vertebrate, Mammalian"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "A mammal (from Latin mamma 'breast') is a vertebrate animal of the class Mammalia (/məˈmeɪli.ə/). Mammals are characterized by the presence of milk-producing mammary glands for feeding their young, a neocortex region of the brain, fur or hair, and three middle ear bones."
descriptionUrl: "https://en.wikipedia.org/wiki/Mammal"
Node: dcid:BiologicalTaxonomyGroupVertebrateOther
name: "Vertebrate, Other"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "Vertebrates (/ˈvɜːrtəbrɪts, -ˌbreɪts/) are deuterostomal animals with bony or cartilaginous axial endoskeleton — known as the vertebral column, spine or backbone — around and along the spinal cord. This group specifically refers to all vertebrates except for the subgroup mammals."
descriptionUrl: "https://en.wikipedia.org/wiki/Vertebrate"
Node: dcid:BiologicalTaxonomyGroupViral
name: "viral"
typeOf: dcs:BiologicalTaxonomyGroupEnum
description: "A virus is a submicroscopic infectious agent that replicates only inside the living cells of an organism. Viruses infect all life forms, from animals and plants to microorganisms, including bacteria and archaea."
descriptionUrl: "https://en.wikipedia.org/wiki/Virus"
# ClinSigEnum
Node: dcid:ClinSigEnum
name: "ClinSigEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Clinical significance for this single variant: other, affects, uncertain significance, pathogenic, risk_factor, benign, conflicting interpretations of pathogenicity, association, likely pathogenic, protective, likely benign, not provided, association not found, drug response, pathogenic/likely pathogenic, benign/likely benign, unknown, untested, or histocompatibility."
Node: dcid:ClinSigOther
name: "Other"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigAffects
name: "Affects"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigUncertain
name: "Uncertain Significance"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigPathogenic
name: "Pathogenic"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigRiskFactor
name: "Risk Factor"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigBenign
name: "Benign"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigConflictingPathogenicity
name: "Conflicting Interpretations Of Pathogenicity"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigAssociation
name: "Association"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigLikelyPathogenic
name: "Likely Pathogenic"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigProtective
name: "Protective"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigLikelyBenign
name: "Likely Benign"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigNotProvided
name: "Not Provided"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigAssociationNotFound
name: "Association Not Found"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigDrugResponse
name: "Drug Response"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigPathogenicLikelyPathogenic
name: "Pathogenic/Likely Pathogenic"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigBenignLikelyBenign
name: "Benign/Likely Benign"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigUnknown
name: "Unknown"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigUntested
name: "Untested"
typeOf: dcs:ClinSigEnum
Node: dcid:ClinSigHistocompatability
name: "Histocompatibility"
typeOf: dcs:ClinSigEnum
# ClinVarReviewStatusEnum
Node: dcid:ClinVarReviewStatusEnum
name: "ClinVarReviewStatusEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "ClinVar review status: no assertion criteria provided, reviewed by expert panel, conflicting interpretations, criteria provided, non interpretation for the single variant, practice guideline, no conflicts, multiple submitters, or single_submitter."
Node: dcid:ClinVarReviewStatusNoCriteria
name: "No Assertion Criteria Provided"
typeOf: dcs:ClinVarReviewStatusEnum
Node: dcid:ClinVarReviewStatusReviewed
name: "Reviewed By Expert Panel"
typeOf: dcs:ClinVarReviewStatusEnum
Node: dcid:ClinVarReviewStatusConflictingInterpretations
name: "Conflicting Interpretations"
typeOf: dcs:ClinVarReviewStatusEnum
Node: dcid:ClinVarReviewStatusCriteriaProvided
name: "Criteria Provided"
typeOf: dcs:ClinVarReviewStatusEnum
Node: dcid:ClinVarReviewStatusNoInterpretation
name: "Non-interpretation For The Single Variant"
typeOf: dcs:ClinVarReviewStatusEnum
Node: dcid:ClinVarReviewStatusPracticeGuideline
name: "Practice Guideline"
typeOf: dcs:ClinVarReviewStatusEnum
Node: dcid:ClinVarReviewStatusNoConflicts
name: "No Conflicts"
typeOf: dcs:ClinVarReviewStatusEnum
Node: dcid:ClinVarReviewStatusMultipleSubmitters
name: "Multiple Submitters"
typeOf: dcs:ClinVarReviewStatusEnum
Node: dcid:ClinVarReviewStatusSingleSubmitter
name: "Single Submitter"
typeOf: dcs:ClinVarReviewStatusEnum
# DNASequenceRoleEnum
Node: dcid:DNASequenceRoleEnum
name: "DNASequenceRoleEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "The role a defined sequence of DNA has in a genome assembly."
Node: dcid:DNASequenceRoleAssembledMolecule
name: "Assembled-Molecule"
typeOf: dcs:DNASequenceRoleEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help"
description: "The object represents a chromosome, linkage-group, or plasmid."
Node: dcid:DNASequenceRoleChromosome
name: "Chromosome"
typeOf: dcs:DNASequenceRoleEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help"
description: "The object represents a chromosome, linkage-group, or plasmid."
Node: dcid:DNASequenceRoleUnlocalizedScaffold
name: "Unlocalized Scaffold"
typeOf: dcs:DNASequenceRoleEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help"
description: "The object is a scaffold that is associated with a particular chromosome but has not been localized to a specific position on the chromosome."
Node: dcid:DNASequenceRoleUnplacedScaffold
name: "Unplaced Scaffold"
typeOf: dcs:DNASequenceRoleEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help"
description: "The object is a scaffold that does not have a chromosome assignment."
Node: dcid:DNASequenceRoleAltScaffold
name: "Alt-Scaffold"
typeOf: dcs:DNASequenceRoleEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help"
description: "The object is either an alternate loci scaffold or a patch scaffold."
Node: dcid:DNASequenceRoleFixPatch
name: "Fix-Patch"
typeOf: dcs:DNASequenceRoleEnum
description: "The object is a fix patch to the assembly-unit scaffold."
Node: dcid:DNASequenceRoleNovelPatch
name: "Novel-Patch"
typeOf: dcs:DNASequenceRoleEnum
description: "The object is a novel patch to the assembly-unit scaffold."
# ExonFramesEnum
Node: dcid:ExonFramesEnum
name: "ExonFramesEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Denotes the exon frame {0,1,2}, or none if no frame for the exon."
Node: dcid:ExonFrame0
name: "Frame 0"
typeOf: dcs:ExonFramesEnum
Node: dcid:ExonFrame1
name: "Frame 1"
typeOf: dcs:ExonFramesEnum
Node: dcid:ExonFrame2
name: "Frame 2"
typeOf: dcs:ExonFramesEnum
Node: dcid:ExonFrameNone
name: "None"
typeOf: dcs:ExonFramesEnum
# GeneticVariantAlignmentQualityEnum
Node: dcid:GeneticVariantAlignmentQualityEnum
name: "GeneticVariantAlignmentQualityEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "The quality of the alignment: unique mapping, non-unique, and many matches (1, 2, or 3+)."
Node: dcid:GeneticVariantAlignmentQualityOne
name: "Unique Mapping"
typeOf: dcs:GeneticVariantAlignmentQualityEnum
Node: dcid:GeneticVariantAlignmentQualityTwo
name: "Non-unique Mapping"
typeOf: dcs:GeneticVariantAlignmentQualityEnum
Node: dcid:GeneticVariantAlignmentQualityThree
name: "Many Matches"
typeOf: dcs:GeneticVariantAlignmentQualityEnum
# GeneticVariantAttributeEnum
Node: dcid:GeneticVariantAttributeEnum
name: "GeneticVariantAttributeEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Genetic variant attributes extracted from dbSNP's SNP_bitfield table: clinically associated, MAF >5% in some populations, MAF >5% in all populations, has OMIM OMIA, microattribute tpa, submitted by locus-specific database, genotype conflict, rs cluster non-overlapping alleles, observed mismatch, reference present, pharmGKB, published, 3D structure, submitter link out, other variant with exact mapping, assembly specific, mutant, validated, included in high density kit, genotypes available, 1000 Genomes Phase 1, 1000 Genomes Phase 3, included in clinical diagnostic assay, withdrawn by some not all submitters, or common SNP."
Node: dcid:GeneticVariantAttributeClinicallyAssociated
name: "Clinically Associated"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Variant is Precious(Clinical,Pubmed Cited)."
Node: dcid:GeneticVariantAttributeMAF5SomePop
name: "MAF >5% In Some Populations"
typeOf: dcs:GeneticVariantAttributeEnum
description: ">5% minor allele frequency in 1+ populations."
Node: dcid:GeneticVariantAttributeMAF5AllPop
name: "MAF >5% In All Populations"
typeOf: dcs:GeneticVariantAttributeEnum
description: ">5% minor allele frequency in each and all populations."
Node: dcid:GeneticVariantAttributOMIMOMIA
name: "Has OMIM OMIA"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Has OMIM/OMIA."
Node: dcid:GeneticVariantAttributeMicroattributeTPA
name: "Microattribute TPA"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Microattribution/third-party annotation(TPA:GWAS,PAGE)."
Node: dcid:GeneticVariantAttrbuteSubmittedByLSDB
name: "Submitted By Locus Specific Database"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Submitted from a locus-specific database."
Node: dcid:GeneticVariantAttributeGenotypeConflict
name: "Genotype Conflict"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Has Assembly conflict. This is for non-unique and many matches that maps to different chromosomes on different assemblies."
Node: dcid:GeneticVariantAttributersCluster
name: "rs Cluster Non-overlapping Alleles"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Rs cluster has non-overlapping allele sets. True when rs set has more than 2 alleles from different submissions and these sets share no alleles in common."
Node: dcid:GeneticVariantAttributeObservedMismatch
name: "Observed Mismatch"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Contig allele not present in variant allele list. The reference sequence allele at the mapped position is not present in the variant allele list, adjusted for orientation."
Node: dcid:GeneticVariantAttributeReferencePresent
name: "Reference Present"
typeOf: dcs:GeneticVariantAttributeEnum
description: "A coding region variation where one allele in the set is identical to the reference sequence."
Node: dcid:GeneticVariantAttributePharmGKB
name: "PharmGKB"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Provisional Third Party Annotation(TPA) (currently rs from PHARMGKB who will give phenotype data)."
Node: dcid:GeneticVariantAttributePublished
name: "Published"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Links exist to PubMed Central article."
Node: dcid:GeneticVariantAttribute3DStructure
name: "3D Structure"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Has 3D structure - SNP3D table."
Node: dcid:GeneticVariantAttributeSubmitterLinkOut
name: "Submitter Link Out"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Has SubmitterLinkOut - From SNP->SubSNP->Batch.link_out."
Node: dcid:GeneticVariantAttributeOtherVariant
name: "Other Variant With Exact Mapping"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Has other variant with exactly the same set of mapped positions on NCBI reference assembly."
Node: dcid:GeneticVariantAttributeAssembly
name: "Assembly Specific"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Is Assembly specific. This is set if the variant only maps to one assembly."
Node: dcid:GeneticVariantAttributeMutant
name: "Mutant"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Is mutation (journal citation, explicit fact): a low frequency variation that is cited in journal and other reputable sources."
Node: dcid:GeneticVariantAttributeValidated
name: "Validated"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Is Validated. This bit is set if the variant has 2+ minor allele count based on frequency or genotype data."
Node: dcid:GeneticVariantAttributeHighDensityKit
name: "Included In High Density Kit(s)"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Marker is on high density genotyping kit (50K density or greater). The variant may have phenotype associations present in dbGaP."
Node: dcid:GeneticVariantAttributeGenotypesAvailable
name: "Genotypes Available"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Genotypes available. The variant has individual genotype (in SubInd table)."
Node: dcid:GeneticVariantAttribute1000GenomesPhase1
name: "1000 Genomes Phase 1"
typeOf: dcs:GeneticVariantAttributeEnum
description: "1000 Genome phase 1 (incl. June Interim phase 1)."
Node: dcid:GeneticVariantAttribute1000GenomesPhase3
name: "1000 Genomes Phase 3"
typeOf: dcs:GeneticVariantAttributeEnum
description: "1000 Genome phase 3."
Node: dcid:GeneticVariantAttributeSomeWithdrawn
name: "Withdrawn by some but not all submitters"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Is Withdrawn by submitter If one member ss is withdrawn by submitter, then this bit is set. If all member ss' are withdrawn, then the rs is deleted to SNPHistory."
Node: dcid:GeneticVariantAttributeClinicalDiagnosticAssay
name: "Included In Clinical Diagnostic Kit(s)"
typeOf: dcs:GeneticVariantAttributeEnum
description: "Variation is interrogated in a clinical diagnostic assay."
Node: dcid:GeneticVariantAttributeCommonSNP
name: "Common SNP"
typeOf: dcs:GeneticVariantAttributeEnum
description: "RS is a common SNP. A common SNP is one that has at least one 1000Genomes population with a minor allele of frequency >= 1% and for which 2 or more founders contribute to that minor allele frequency."
# GeneticVariantClassEnum
Node: dcid:GeneticVariantClassEnum
name: "GeneticVariantClassEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Class of variant: single nucleotide variant, deletion, insertion, in-del, named, mixed, mnp, het, microsatellite, inversion, copy number variation, variation, duplication, inversion, copy number loss, or copy number gain."
Node: dcid:GeneticVariantClassSingle
name: "Single Nucleotide Polymorphism"
typeOf: dcs:GeneticVariantClassEnum
abbreviation: "SNP","SNV"
Node: dcid:GeneticVariantClassDeletion
name: "Deletion"
typeOf: dcs:GeneticVariantClassEnum
Node: dcid:GeneticVariantClassInsertion
name: "Insertion"
typeOf: dcs:GeneticVariantClassEnum
Node: dcid:GeneticVariantClassIn-del
name: "InDel"
typeOf: dcs:GeneticVariantClassEnum
Node: dcid:GeneticVariantClassNamed
name: "Named"
typeOf: dcs:GeneticVariantClassEnum
Node: dcid:GeneticVariantClassMixed
name: "Mixed"
typeOf: dcs:GeneticVariantClassEnum
Node: dcid:GeneticVariantClassMNP
name: "Multiple Nucleotide Polymorphism"
typeOf: dcs:GeneticVariantClassEnum
abbreviation: "MNP","MNV"
Node: dcid:GeneticVariantClassHet
name: "Heterozygous"
typeOf: dcs:GeneticVariantClassEnum
abbreviation: "het"
Node: dcid:GeneticVariantClassMicrosatellite
name: "Microsatellite"
typeOf: dcs:GeneticVariantClassEnum
Node: dcid:GeneticVariantClassInversion
name: "Inversion"
typeOf: dcs:GeneticVariantClassEnum
Node: dcid:GeneticVariantClassCopyNumberVariation
name: "Copy Number Variation"
typeOf: dcs:GeneticVariantClassEnum
abbreviation: "CNV"
Node: dcid:GeneticVariantClassVariation
name: "Variation"
typeOf: dcs:GeneticVariantClassEnum
Node: dcid:GeneticVariantClassDuplication
name: "Duplication"
typeOf: dcs:GeneticVariantClassEnum
Node: dcid:GeneticVariantClassCopyNumberGain
name: "Copy Number Gain"
typeOf: dcs:GeneticVariantClassEnum
specializationOf: dcs:GeneticVariantCopyNumberVariation
Node: dcid:GeneticVariantClassCopyNumberLoss
name: "Copy Number Loss"
typeOf: dcs:GeneticVariantClassEnum
specializationOf: dcs:GeneticVariantCopyNumberVariation
# GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionEnum
name: "GeneticVariantExceptionEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Unusual conditions noted by UCSC that may indicate a problem with the data: RefAlleleMismatch, RefAlleleRevComp, DuplicateObserved, MixedObserved, FlankMismatchGenomeLonger, FlankMismatchGenomeEqual, FlankMismatchGenomeShorter, NamedDeletionZeroSpan, NamedInsertionNonzeroSpan, SingleClassLongerSpan, SingleClassZeroSpan, SingleClassTriAllelic, SingleClassQuadAllelic, ObservedWrongFormat, ObservedTooLong, ObservedContainsIupac, 'ObservedMismatch, MultipleAlignments, NonIntegerChromCount, AlleleFreqSumNot1, SingleAlleleFreq, or InconsistentAlleles."
Node: dcid:GeneticVariantExceptionRefAlleleMismatch
name: "Reference Allele Mismatch"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionRefAlleleRevComp
name: "Reference Allele Reverse Complement"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionDuplicateObserved
name: "Duplicate Observed"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionMixedObserved
name: "Mixed Observed"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionFlankMismatchGenomeLonger
name: "Flank Mismatch Genome Longer"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionFlankMismatchGenomeEqual
name: "Flank Mismatch Genome Equal"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionFlankMismatchGenomeShorter
name: "Flank Mismatch Genome Shorter"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionNamedDeletionZeroSpan
name: "Named Deletion Zero Span"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionNamedInsertionNonzeroSpan
name: "Named Insertion Non-Zero Span"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionSingleClassLongerSpan
name: "Single Class Longer Span"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionSingleClassZeroSpan
name: "Single Class Zero Span"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionSingleClassTriAllelic
name: "Single Class Tri-allelic"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionSingleClassQuadAllelic
name: "Single Class Quad-allelic"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionObservedWrongFormat
name: "Observed Wrong Format"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionObservedTooLong
name: "Observed Too Long"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionObservedContainsIUPAC
name: "Observed Contains IUPAC"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionObservedMismatch
name: "Observed Mismatch"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionMultipleAlignments
name: "Multiple Alignments"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionNonIntegerChromCount
name: "Non-integer Chomosome Count"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionAlleleFreqSumNot1
name: "Allele Frequency Sum Not 1"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionSingleAlleleFreq
name: "Single Allele Frequency"
typeOf: dcs:GeneticVariantExceptionEnum
Node: dcid:GeneticVariantExceptionInconsistentAlleles
name: "Inconsistent Alleles"
typeOf: dcs:GeneticVariantExceptionEnum
description: "Inconsistent genotype submission for at least one sample."
# GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryEnum
name: "GeneticVariantFunctionalCategoryEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Functional category of the genetic variant (coding-synon, splice_5', missense, frameshift, near_gene_5', 3'_UTR, near_gene_3', nonsense, splice_3', intron, cds_reference, 5'_UTR, unknown, cds_indel, stop_loss, 5' UTR, or ncRNA.)"
Node: dcid:GeneticVariantFunctionalCategoryncRNA
name: "ncRNA"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryCodingSynon
name: "Coding Synonomous"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategorySplice5
name: "Splice 5'"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
description: "In donor splice site"
Node: dcid:GeneticVariantFunctionalCategoryMissense
name: "Missense"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryFrameshift
name: "Frameshift"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryNearGene5
name: "Near Gene 5'"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryUTR3
name: "3' UTR"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryUTR5
name: "5' UTR"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryNearGene3
name: "Near Gene 3'"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryNonsense
name: "Nonsense"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategorySplice3
name: "Splice 3'"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
description: "In acceptor splice"
Node: dcid:GeneticVariantFunctionalCategoryIntron
name: "Intron"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryCDSReference
name: "cds Reference"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryUTR5
name: "5' UTR"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryUnknown
name: "Unknown"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCategoryStopLoss
name: "Stop Loss"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
Node: dcid:GeneticVariantFunctionalCDSIndel
name: "cds Indel"
typeOf: dcs:GeneticVariantFunctionalCategoryEnum
# GeneticVariantLocTypeEnum
Node: dcid:GeneticVariantLocTypeEnum
name: "GeneticVariantLocTypeEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Type of mapping inferred from size on reference; may not agree with class: between, exact, fuzzy, range, range deletion, range insertion, or range substitution."
Node: dcid:GeneticVariantLocTypeBetween
name: "Between"
typeOf: dcs:GeneticVariantLocTypeEnum
Node: dcid:GeneticVariantLocTypeExact
name: "Exact"
typeOf: dcs:GeneticVariantLocTypeEnum
Node: dcid:GeneticVariantLocTypeRange
name: "Range"
typeOf: dcs:GeneticVariantLocTypeEnum
Node: dcid:GeneticVariantLocTypeRangeDeletion
name: "Range Deletion"
typeOf: dcs:GeneticVariantLocTypeEnum
Node: dcid:GeneticVariantLocTypeRangeInsertion
name: "Range Insertion"
typeOf: dcs:GeneticVariantLocTypeEnum
Node: dcid:GeneticVariantLocTypeRangeSubstitution
name: "Range Substituation"
typeOf: dcs:GeneticVariantLocTypeEnum
Node: dcid:GeneticVariantLocTypeFuzzy
name: "Fuzzy"
typeOf: dcs:GeneticVariantLocTypeEnum
# GeneticVariantMolTypeEnum
Node: dcid:GeneticVariantMolTypeEnum
name: "GeneticVariantMolTypeEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Sample type from exemplar submitted GeneticVariants (cDNA, genomic, mitochondrial, or unknown)."
Node: dcid:GeneticVariantMolTypecDNA
name: "cDNA"
typeOf: dcs:GeneticVariantMolTypeEnum
Node: dcid:GeneticVariantMolTypeGenomic
name: "Genomic"
typeOf: dcs:GeneticVariantMolTypeEnum
Node: dcid:GeneticVariantMolTypeMitochondrial
name: "Mitochondrial"
typeOf: dcs:GeneticVariantMolTypeEnum
Node: dcid:GeneticVariantMolTypeUnknown
name: "Unknown"
typeOf: dcs:GeneticVariantMolTypeEnum
# NomenclatureStatusEnum
Node: dcid:NomenclatureStatusEnum
name: "NomenclatureStatusEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "The status of the name from the nomenclature committee: official, interim, or NCBI-supplied."
Node: dcid:NomenclatureStatusOfficial
name: "Official"
typeOf: dcs:NomenclatureStatusEnum
Node: dcid:NomenclatureStatusInterim
name: "Interim"
typeOf: dcs:NomenclatureStatusEnum
Node: dcid:NomenclatureStatusNCBIsupplied
name: "NCBI Supplied"
typeOf: dcs:NomenclatureStatusEnum
# GeneticVariantValidationStatusEnum
Node: dcid:GeneticVariantValidationStatusEnum
name: "GeneticVariantValidationStatusEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Validation status of the genetic variant: cluster, frequency, 1000genomes, HapMap, 2hit-2allele, submitter, or unknown."
Node: dcid:GeneticVariantValidationStatusFrequency
name: "Frequency"
typeOf: dcs:GeneticVariantValidationStatusEnum
Node: dcid:GeneticVariantValidationStatusCluster
name: "Cluster"
typeOf: dcs:GeneticVariantValidationStatusEnum
Node: dcid:GeneticVariantValidationStatus1000genomes
name: "1000 Genomes"
typeOf: dcs:GeneticVariantValidationStatusEnum
Node: dcid:GeneticVariantValidationStatusHapMap
name: "HapMap"
typeOf: dcs:GeneticVariantValidationStatusEnum
Node: dcid:GeneticVariantValidationStatusUnknown
name: "Unknown"
typeOf: dcs:GeneticVariantValidationStatusEnum
Node: dcid:GeneticVariantValidationStatus2hit-2allele
name: "2hit-2allele"
typeOf: dcs:GeneticVariantValidationStatusEnum
Node: dcid:GeneticVariantValidationStatusSubmitter
name: "Submitter"
typeOf: dcs:GeneticVariantValidationStatusEnum
# GenomeAssemblyDerivedFromEnum
Node: dcid:GenomeAssemblyDerivedFromEnum
name: "GenomeAssemblyDerivedFromEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Denotes the relation of the genome assembly with the type material from which it was derived."
Node: dcid:GenomeAssemblyDerivedFromTypeMaterial
name: “Assembly From Type Material”
typeOf: dcs:GenomeAssemblyDerivedFromEnum
description: “The sequences in the genome assembly were derived from type material.”
descriptionUrl: “https://ftp.ncbi.nlm.nih.gov/genomes/README_assembly_summary.txt”
Node: dcid:GenomeAssemblyDerivedFromSynonymTypeMaterial
name: “Assembly From Synonym Type Material”
typeOf: dcs:GenomeAssemblyDerivedFromEnum
description: “The sequences in the genome assembly were derived from synonym type material.”
descriptionUrl: “https://ftp.ncbi.nlm.nih.gov/genomes/README_assembly_summary.txt”
Node: dcid:GenomeAssemblyDerivedFromPathotypeMaterial
name: “Assembly From Pathotype Material”
typeOf: dcs:GenomeAssemblyDerivedFromEnum
description: “The sequences in the genome assembly were derived from pathovar material.”
descriptionUrl: “https://ftp.ncbi.nlm.nih.gov/genomes/README_assembly_summary.txt”
Node: dcid:GenomeAssemblyDerivedFromCladeExemplar
name: “Assembly Designated As Clade Exemplar”
typeOf: dcs:GenomeAssemblyDerivedFromEnum
description: “The sequences in the genome assembly were derived from clade exemplar material.”
Node: dcid:GenomeAssemblyDerivedFromNeotype
name: “Assembly Designated As Neotype”
typeOf: dcs:GenomeAssemblyDerivedFromEnum
description: “The sequences in the genome assembly were derived from neotype material.”
descriptionUrl: “https://ftp.ncbi.nlm.nih.gov/genomes/README_assembly_summary.txt”
Node: dcid:GenomeAssemblyDerivedFromReftype
name: “Assembly Designated As Reftype”
typeOf: dcs:GenomeAssemblyDerivedFromEnum
description: “The sequences in the genome assembly were derived from reference material where type material never was available and is not likely to ever be available.”
descriptionUrl: “https://ftp.ncbi.nlm.nih.gov/genomes/README_assembly_summary.txt”
Node: dcid:GenomeAssemblyDerivedFromIctvSpeciesExemplar
name: “ICTV Species Exemplar”
typeOf: dcs:GenomeAssemblyDerivedFromEnum
description: “ The International Committee on Taxonomy of Viruses (ICTV) designated the genome assembly as the exemplar for the virus species.”
descriptionUrl: “https://ftp.ncbi.nlm.nih.gov/genomes/README_assembly_summary.txt”
Node: dcid:GenomeAssemblyDerivedFromIctvAdditionalIsolate
name: “ICTV Additional Isolate”
typeOf: dcs:GenomeAssemblyDerivedFromEnum
description: “ The International Committee on Taxonomy of Viruses (ICTV) designated the genome assembly an additional isolate for the virus species.”
descriptionUrl: “https://ftp.ncbi.nlm.nih.gov/genomes/README_assembly_summary.txt”
# GenomeAssemblyLevelEnum
Node: dcid:GenomeAssemblyLevelEnum
name: "GenomeAssemblyLevelEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "The highest level of assembly for any object in the assembly."
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help/#level"
Node: dcid:GenomeAssemblyLevelCompleteGenome
name: "Complete Genome"
typeOf: dcs:GenomeAssemblyLevelEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help/#level"
description: "All chromosomes are gapless and have no runs of 10 or more ambiguous bases (Ns), there are no unplaced or unlocalized scaffolds, and all the expected chromosomes are present (i.e. the assembly is not noted as having partial genome representation). Plasmids and organelles may or may not be included in the assembly but if present then the sequences are gapless."
Node: dcid:GenomeAssemblyLevelChromosome
name: "Chromosome"
typeOf: dcs:GenomeAssemblyLevelEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help/#level"
description: "There is sequence for one or more chromosomes. This could be a completely sequenced chromosome without gaps or a chromosome containing scaffolds or contigs with gaps between them. There may also be unplaced or unlocalized scaffolds."
Node: dcid:GenomeAssemblyLevelScaffold
name: "Scaffold"
typeOf: dcs:GenomeAssemblyLevelEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help/#level"
description: "Some sequence contigs have been connected across gaps to create scaffolds, but the scaffolds are all unplaced or unlocalized."
Node: dcid:GenomeAssemblyLevelContig
name: "Contig"
typeOf: dcs:GenomeAssemblyLevelEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help/#level"
description: "Nothing is assembled beyond the level of sequence contigs."
# GenomeAssemblyReleaseTypeEnum
Node: dcid:GenomeAssemblyReleaseTypeEnum
name: "GenomeAssemblyReleaseTypeEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Defines the update type of this genome assembly version release."
Node: dcid:GenomeAssemblyReleaseTypeMajor
name: "Major"
typeOf: dcs:GenomeAssemblyReleaseTypeEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help/"
description: "Changes from the previous assembly version result in a significant change to the coordinate system. The first version of an assembly is always a major release. Most subsequent genome assembly updates are also major releases. [Field is not shown for major releases since this is the default type.]"
Node: dcid:GenomeAssemblyReleaseTypeMinor
name: "Minor"
typeOf: dcs:GenomeAssemblyReleaseTypeEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help/"
description: "Changes from the previous assembly version are limited to the following changes, none of which result in a significant change to the coordinate system of the primary assembly-unit: adding, removing or changing a non-nuclear assembly-unit; dropping unplaced or unlocalized scaffolds; adding up to 50 unplaced or unlocalized scaffolds which are shorter than the current scaffold-N50 value; or replacing a component with a gap of the same length."
Node: dcid:GenomeAssemblyReleaseTypePatch
name: "Patch"
typeOf: dcs:GenomeAssemblyReleaseTypeEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/help/"
description: "The only change from the previous assembly version is the addition or modification of a patch assembly-unit (relevant for assemblies maintained by the Genome Reference Consortium)"
# GenomeAssemblyTypeEnum
Node: dcid:GenomeAssemblyTypeEnum
name: "GenomeAssemblyTypeEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "The type of sequence model data defined in this genome assembly."
Node: dcid:GenomeAssemblyTypeAssembly
name: "Assembly"
typeOf: dcs:GenomeAssemblyTypeEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/model/#asmb_def"
description: "The set of chromosomes, unlocalized and unplaced (sometimes called 'random') and alternate sequences used to represent an organism's genome. Assemblies are constructed from 1 or more assembly units."
Node: dcid:GenomeAssemblyTypeHaploidAssembly
name: "Haploid Assembly"
typeOf: dcs:GenomeAssemblyTypeEnum
specializationOf: dcs:GenomeAssemblyTypeAssembly
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/model/#asmb_def"
description: "The collection of chromosome assemblies, unlocalized and unplaced sequences that represent an organism's genome. Any locus may be represented 0 or 1 time, and entire chromosomes are only represented 0 or 1 times."
Node: dcid:GenomeAssemblyTypeHaploidWithAltLoci
name: "Haploid with Alternate Loci"
typeOf: dcs:GenomeAssemblyTypeEnum
specializationOf: dcs:GenomeAssemblyTypeAssembly
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/model/#asmb_def"
description: "The collection of chromosome assemblies, unlocalized and unplaced sequences and alternate loci that represent an organism's genome. Any locus may be represented 0, 1 or >1 time, but entire chromosomes are only represented 0 or 1 times."
synonym: "haploid with alt loci"
Node: dcid:GenomeAssemblyTypeDiploidAssembly
name: "Diploid Assembly"
typeOf: dcs:GenomeAssemblyTypeEnum
specializationOf: dcs:GenomeAssemblyTypeAssembly
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/model/#asmb_def"
description: "A genome assembly for which a chromosome assembly is available for both sets of an individual's chromosomes. It is anticipated that a diploid genome assembly represents the genome of an individual, therefore, it is not expected that alternate loci will be defined for this assembly, although it is possible that unlocalized or unplaced sequences could be part of the assembly."
Node: dcid:GenomeAssemblyTypeUnresolvedDiploid
name: "Unresolved Diploid"
typeOf: dcs:GenomeAssemblyTypeEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/model/#asmb_def"
description: "A genome assembly from a diploid in which many of the haplotypic sequences have been resolved but the two haplotypes have not been separated. Consequently, the assembly will be much larger than the expected haploid genome size and many genes will be present in two copies."
Node: dcid:GenomeAssemblyTypeLinkedPseudohaplotypeAssemblies
name: "Pseudohaplotype Assemblies"
typeOf: dcs:GenomeAssemblyTypeEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/model/#asmb_def"
description: "A genome assembly from a diploid in which many of the haplotypic sequences have been resolved, phased and the two haplotypes have been separated. The current state of the technology is that most assemblers produce blocks that are phased, separated by blocks where the haplotype cannot be distinguished. The typical result is that the "Principal Pseudohaplotype" assembly is a mosaic of haplotype blocks linked by unresolved segments and the "Alternate Pseudohaplotype" assembly is the other haplotype wherever the haplotypes can be distinguished. A pair of pseudohaplotype assemblies derived from the same diploid individual can be linked with a cross-reference."
Node: dcid:GenomeAssemblyTypeAlternatePseudohaplotype
name: "Alternate Pseudohaplotype"
typeOf: dcs:GenomeAssemblyTypeEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/model/#asmb_def"
description: “A genome assembly from a diploid in which many of the haplotypic sequences have been resolved, phased and the two haplotypes have been separated and the resulting haplotypes can be distinguished.”
specializationOf: dcs:GenomeAssemblyTypeLinkedPseudohaplotypeAssemblies
Node: dcid:GenomeAssemblyTypePrincipalPseudohaplotype
name: "Principal Pseudohaplotype"
typeOf: dcs:GenomeAssemblyTypeEnum
descriptionUrl: "https://www.ncbi.nlm.nih.gov/assembly/model/#asmb_def"
description: “A genome assembly from a diploid in which many of the haplotypic sequences have been resolved, phased and the two haplotypes have been separated and the result is a mosaic of haplotype blocks linked by unresolved segments.“
specializationOf: dcs:GenomeAssemblyTypeLinkedPseudohaplotypeAssemblies
# GenVarSourceEnum
Node: dcid:GenVarSourceEnum
name: "GenVarSourceEnum"
typeOf: schema:Class
subClassOf: schema:Enumeration
description: "Sources for observations of genetic variant allele and population frequencies: GenVarSourceUCSCGenomeBrowser, GenVarSourceTheHumanGeneomeProject, GenVarSourceExomeAggregationConsortium, GenVarSourceGOExomeSequencingProject, GenVarSourceTOPMed, GenVarSource1000Genomes, GenVarSourceGnomAD, GenVarSourceGnomADexomes, or GenVarSourcePAGEstudy."
Node: dcid:GenVarSourceUCSCGenomeBrowser
name: "UCSC Genome Browser"
url: "https://genome.ucsc.edu/"
typeOf: dcs:GenVarSourceEnum