diff --git a/clinvar_data/conversion/dict_to_pb.py b/clinvar_data/conversion/dict_to_pb.py
index 60eed4c..4688b47 100644
--- a/clinvar_data/conversion/dict_to_pb.py
+++ b/clinvar_data/conversion/dict_to_pb.py
@@ -1375,6 +1375,9 @@ def convert_trait_relationship(cls, value: dict[str, Any]) -> Trait.TraitRelatio
tag_trait_relationship["Name"], dict
), "never seen more than once in XML"
names = [ConvertGenericSetElement.xmldict_data_to_pb(tag_trait_relationship, "Name")]
+ sources: list[str] = []
+ if "Source" in tag_trait_relationship:
+ sources = cls.ensure_list(tag_trait_relationship["Source"])
# Parse out Citation, XRef, Comment tags.
cxcs = cls.parse_citations_xrefs_comments(tag_trait_relationship)
@@ -1384,6 +1387,7 @@ def convert_trait_relationship(cls, value: dict[str, Any]) -> Trait.TraitRelatio
citations=cxcs.citations,
xrefs=cxcs.xrefs,
comments=cxcs.comments,
+ sources=sources,
)
@classmethod
@@ -1928,14 +1932,11 @@ def xmldict_data_to_pb(cls, value: dict[str, Any]) -> AggregateClassificationSet
germline_classification = ConvertAggregatedGermlineClassification.xmldict_data_to_pb(
{"GermlineClassification": tag_classifications["GermlineClassification"]}
)
- somatic_clinical_impacts: list[AggregatedSomaticClinicalImpact] | None = None
+ somatic_clinical_impact: AggregatedSomaticClinicalImpact | None = None
if "SomaticClinicalImpact" in tag_classifications:
- somatic_clinical_impacts = [
- ConvertAggregatedSomaticClinicalImpact.xmldict_data_to_pb(
- {"SomaticClinicalImpact": element}
- )
- for element in cls.ensure_list(tag_classifications["SomaticClinicalImpact"])
- ]
+ somatic_clinical_impact = ConvertAggregatedSomaticClinicalImpact.xmldict_data_to_pb(
+ {"SomaticClinicalImpact": tag_classifications["SomaticClinicalImpact"]}
+ )
oncogenicity_classification: AggregatedOncogenicityClassification | None = None
if "OncogenicityClassification" in tag_classifications:
oncogenicity_classification = (
@@ -1950,7 +1951,7 @@ def xmldict_data_to_pb(cls, value: dict[str, Any]) -> AggregateClassificationSet
return AggregateClassificationSet(
germline_classification=germline_classification,
- somatic_clinical_impacts=somatic_clinical_impacts,
+ somatic_clinical_impact=somatic_clinical_impact,
oncogenicity_classification=oncogenicity_classification,
)
@@ -2187,9 +2188,9 @@ def xmldict_data_to_pb(cls, value: dict[str, Any]) -> ClassificationScv:
)
)
germline_classification: str | None = tag_classification.get("GermlineClassification")
- somatic_clinical_impacts: ClassificationScv.SomaticClinicalImpact | None = None
+ somatic_clinical_impact: ClassificationScv.SomaticClinicalImpact | None = None
if "SomaticClinicalImpact" in tag_classification:
- somatic_clinical_impacts = cls.convert_somatic_clinical_impact(
+ somatic_clinical_impact = cls.convert_somatic_clinical_impact(
{"SomaticClinicalImpact": tag_classification["SomaticClinicalImpact"]}
)
oncogenicity_classification: str | None = tag_classification.get(
@@ -2217,7 +2218,7 @@ def xmldict_data_to_pb(cls, value: dict[str, Any]) -> ClassificationScv:
return ClassificationScv(
review_status=review_status,
germline_classification=germline_classification,
- somatic_clinical_impacts=somatic_clinical_impacts,
+ somatic_clinical_impact=somatic_clinical_impact,
oncogenicity_classification=oncogenicity_classification,
explanation_of_classification=explanation_of_classification,
classification_scores=classification_scores,
@@ -3457,12 +3458,10 @@ def xmldict_data_to_pb(cls, value: dict[str, Any]) -> AlleleScv: # noqa: C901
cls.convert_gene({"Gene": entry})
for entry in cls.ensure_list(tag_sa["GeneList"]["Gene"])
]
- names: list[OtherName] | None = None
+ name: OtherName | None = None
if "Name" in tag_sa:
- names = [
- ConvertOtherName.xmldict_data_to_pb({"Name": entry})
- for entry in cls.ensure_list(tag_sa["Name"])
- ]
+ assert isinstance(tag_sa["Name"], (dict, str)), f"is: {tag_sa['Name']}"
+ name = ConvertOtherName.xmldict_data_to_pb({"Name": tag_sa["Name"]})
variant_type: str | None = tag_sa.get("VariantType")
location: Location | None = None
if "Location" in tag_sa:
@@ -3545,7 +3544,7 @@ def xmldict_data_to_pb(cls, value: dict[str, Any]) -> AlleleScv: # noqa: C901
return AlleleScv(
genes=genes,
- names=names,
+ name=name,
variant_type=variant_type,
location=location,
other_names=other_names,
@@ -3589,9 +3588,9 @@ def xmldict_data_to_pb(cls, tag: dict[str, Any]) -> HaplotypeScv:
ConvertOtherName.xmldict_data_to_pb({"Name": entry})
for entry in cls.ensure_list(tag_genotype["OtherNameList"]["Name"])
]
- classification: AggregateClassificationSet | None = None
+ classifications: AggregateClassificationSet | None = None
if "Classification" in tag_genotype:
- classification = ConvertAggregateClassificationSet.xmldict_data_to_pb(
+ classifications = ConvertAggregateClassificationSet.xmldict_data_to_pb(
tag_genotype["Classification"]
)
functional_consequences: list[FunctionalConsequence] | None = None
@@ -3638,7 +3637,7 @@ def xmldict_data_to_pb(cls, tag: dict[str, Any]) -> HaplotypeScv:
simple_alleles=simple_alleles,
name=name,
other_names=other_names,
- classification=classification,
+ classifications=classifications,
functional_consequences=functional_consequences,
attributes=attributes,
citations=citations,
@@ -4105,12 +4104,12 @@ def xmldict_data_to_pb(cls, tag: dict[str, Any]) -> ClinicalAssertion: # noqa:
ConvertClinicalAssertionRecordHistory.xmldict_data_to_pb({"Replaced": entry})
for entry in cls.ensure_list(tag_ca["ReplacedList"]["Replaced"])
]
- classifications: list[ClassificationScv] | None = None
+ classifications: ClassificationScv | None = None
if "Classification" in tag_ca:
- classifications = [
- ConvertClassificationScv.xmldict_data_to_pb({"Classification": entry})
- for entry in cls.ensure_list(tag_ca["Classification"])
- ]
+ assert isinstance(tag_ca["Classification"], dict)
+ classifications = ConvertClassificationScv.xmldict_data_to_pb(
+ {"Classification": tag_ca["Classification"]}
+ )
assertion: Assertion.ValueType = ConvertAssertion.xmldict_data_to_pb(tag_ca["Assertion"])
attributes: list[ClinicalAssertion.AttributeSetElement] | None = None
if "AttributeSet" in tag_ca:
diff --git a/clinvar_data/extract_vars.py b/clinvar_data/extract_vars.py
index 677f070..3724cc4 100644
--- a/clinvar_data/extract_vars.py
+++ b/clinvar_data/extract_vars.py
@@ -84,9 +84,9 @@ def thin_out_aggregate_classification_set(
if result.HasField("germline_classification"):
for key in ("xrefs", "citations", "history_records", "conditions"):
result.germline_classification.ClearField(key)
- for somatic_clinical_impacts in result.somatic_clinical_impacts:
+ if result.HasField("somatic_clinical_impact"):
for key in ("xrefs", "citations", "history_records", "conditions"):
- somatic_clinical_impacts.ClearField(key)
+ result.somatic_clinical_impact.ClearField(key)
if result.HasField("oncogenicity_classification"):
for key in ("xrefs", "citations", "history_records", "conditions"):
result.oncogenicity_classification.ClearField(key)
diff --git a/clinvar_data/models.py b/clinvar_data/models.py
deleted file mode 100644
index 48d25b1..0000000
--- a/clinvar_data/models.py
+++ /dev/null
@@ -1,2878 +0,0 @@
-"""Support for representing ClinVar data from XSD file using pydantic"""
-
-import datetime
-import enum
-import typing
-
-from dateutil.parser import parse as parse_datetime
-from pydantic import BaseModel, ConfigDict
-
-T = typing.TypeVar("T")
-
-
-def extract_text(element: typing.Any) -> typing.Optional[str]:
- """Extract text from a string or dict with ``#text`` key"""
- if element is None:
- return element
- elif isinstance(element, str):
- return element
- else:
- return element["#text"]
-
-
-def force_list(value: typing.Union[T, typing.List[T]]) -> typing.List[T]:
- """Helper value that wraps atomic values in a list"""
- if isinstance(value, list):
- return value
- else:
- return [value]
-
-
-@enum.unique
-class ClinVarAccessionType(enum.Enum):
- """ClinVar accession type"""
-
- RCV = "RCV"
-
-
-@enum.unique
-class RecordStatus(enum.Enum):
- """Enumeration with ``ClinVarSet.record_status``"""
-
- CURRENT = "current"
- REPLACED = "replaced"
- REMOVED = "removed"
-
-
-@enum.unique
-class Status(enum.Enum):
- """Corresponds to ``typeStatus``"""
-
- CURRENT = "current"
- COMPLETED_AND_RETIRED = "completed and retired"
- DELETE = "delete"
- IN_DEVELOPMENT = "in development"
- RECLASSIFIED = "reclassified"
- REJECT = "reject"
- SECONDARY = "secondary"
- SUPPRESSED = "suppressed"
- UNDER_REVIEW = "under review"
-
-
-class Xref(BaseModel):
- """This structure is used to represent how an object described in the submission relates to
- objects in other databases.
- """
-
- model_config = ConfigDict(frozen=True)
-
- #: The database name
- db: str
- #: The ID of the xref
- id: str
- #: Optional type of the xref
- type: typing.Optional[str] = None
- #: Optional URL of the xref
- url: typing.Optional[str] = None
- #: Optional status of the xref
- status: typing.Optional[Status] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Xref":
- return Xref(
- db=json_data["@DB"],
- id=json_data["@ID"],
- type=json_data.get("@Type"),
- url=json_data.get("@URL"),
- status=Status(json_data["@Status"]) if json_data.get("@Status") else None,
- )
-
-
-@enum.unique
-class ReviewStatus(enum.Enum):
- """The values of review status are used to build the 'star ratings' displayed on the
- ClinVar public site.
-
- - 0 stars: a conflict or not classified by submitter
- - 1 star: classified by single submitter
- - 2 stars: classified by multiple submitters
- - 3 stars: reviewed by expert panel
- - 4 stars: reviewed by professional society
-
- In the case that a submission was flagged as duplicate, ``FLAGGED_SUBMISSION`` is used.
- When no unflagged submission is found, ``NO_UNFLAGGED_CLASSIFICATION`` is used.
- """
-
- NO_ASSERTION_PROVIDED = "no assertion provided"
- NO_ASSERTION_CRITERIA_PROVIDED = "no assertion criteria provided"
- CRITERIA_PROVIDED_SINGLE_SUBMITTER = "criteria provided, single submitter"
- CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS = "criteria provided, multiple submitters, no conflicts"
- CRITERIA_PROVIDED_CONFLICTING_INTERPRETATIONS = "criteria provided, conflicting interpretations"
- REVIEWED_BY_EXPERT_PANEL = "reviewed by expert panel"
- PRACTICE_GUIDELINE = "practice guideline"
- FLAGGED_SUBMISSION = "flagged submission"
- NO_UNFLAGGED_CLASSIFICATION = "no classifications from unflagged records"
-
-
-@enum.unique
-class ClinicalSignificanceDescription(enum.Enum):
- """Allowed values for clinical significance description"""
-
- AFFECTS = "affects"
- BENIGN = "benign"
- ESTABLISHED_RISK_ALLELE = "established risk allele"
- LIKELY_BENIGN = "likely benign"
- LIKELY_PATHOGENIC = "likely pathogenic"
- LIKELY_PATHOGENIC_LOW_PENETRANCE = "likely pathogenic, low penetrance"
- LIKELY_RISK_ALLELE = "likely risk allele"
- PATHOGENIC = "pathogenic"
- PATHOGENIC_LOW_PENETRANCE = "pathogenic, low penetrance"
- UNCERTAIN_RISK_ALLELE = "uncertain risk allele"
- UNCERTAIN_SIGNIFICANCE = "uncertain significance"
- ASSOCIATION = "association"
- ASSOCIATION_NOT_FOUND = "association not found"
- CONFERS_SENSITIVITY = "confers sensitivity"
- CONFLICTING_DATA_FROM_SUBMITTERS = "conflicting data from submitters"
- DRUG_RESPONSE = "drug response"
- NOT_PROVIDED = "not provided"
- OTHER = "other"
- PROTECTIVE = "protective"
- RISK_FACTOR = "risk factor"
-
- @property
- def is_canonical_acmg(self) -> bool:
- return self in (
- ClinicalSignificanceDescription.BENIGN,
- ClinicalSignificanceDescription.LIKELY_BENIGN,
- ClinicalSignificanceDescription.UNCERTAIN_SIGNIFICANCE,
- ClinicalSignificanceDescription.LIKELY_PATHOGENIC,
- ClinicalSignificanceDescription.PATHOGENIC,
- )
-
- @property
- def acmg_code(self) -> typing.Optional[int]:
- return {
- ClinicalSignificanceDescription.BENIGN: 1,
- ClinicalSignificanceDescription.LIKELY_BENIGN: 2,
- ClinicalSignificanceDescription.UNCERTAIN_SIGNIFICANCE: 3,
- ClinicalSignificanceDescription.LIKELY_PATHOGENIC: 4,
- ClinicalSignificanceDescription.PATHOGENIC: 5,
- }.get(self)
-
- @classmethod
- def from_the_wild(cls, str) -> "ClinicalSignificanceDescription":
- """Convert values "from the wild" where sometimes invalid values are used.
-
- These are converted to ``Other``.
- """
- try:
- return ClinicalSignificanceDescription(str)
- except ValueError:
- return ClinicalSignificanceDescription.OTHER
-
-
-@enum.unique
-class CommentType(enum.Enum):
- """Types of comments"""
-
- PUBLIC = "public"
- CONVERTED_BY_NCBI = "ConvertedByNCBI"
- MISSING_FROM_ASSEMBLY = "MissingFromAssembly"
- GENOMIC_LOCATION_NOT_ESTABLISHED = "GenomicLocationNotEstablished"
- LOCATION_ON_GENOME_AND_PRODUCT_NOT_ALIGNED = "LocationOnGenomeAndProductNotAligned"
- DELETION_COMMENT = "DeletionComment"
- MERGE_COMMENT = "MergeComment"
- ASSEMBLY_SPECIFIC_ALLELE_DEFINITON = "AssemblySpecificAlleleDefinition"
- ALIGNMENT_GAP_MAKES_APPEAR_INCONSISTENT = "AlignmentGapMakesAppearInconsistent"
- EXPLANATION_OF_INTERPRETATION = "ExplanationOfInterpretation"
- FLAGGED_COMMENT = "FlaggedComment"
-
-
-class Comment(BaseModel):
- """A structure to support reporting unformatted content"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The comment's content.
- text: str
- #: An optional type of the comment.
- type: typing.Optional[CommentType] = None
- #: An optional datasource name.
- datasource: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Comment":
- if isinstance(json_data, str):
- return Comment(text=json_data)
- else:
- return Comment(
- type=CommentType(json_data["@Type"]) if json_data.get("@Type") else None,
- datasource=json_data.get("@DataSource"),
- text=json_data["#text"],
- )
-
-
-class CitationIdentifier(BaseModel):
- """Type for a citation identifier"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The identifier source.
- source: str
- #: The identifier value.
- value: str
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "CitationIdentifier":
- return CitationIdentifier(
- source=json_data["@Source"],
- value=json_data["#text"],
- )
-
-
-class Citation(BaseModel):
- """Type for a citation"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Citation identifiers.
- ids: typing.List[CitationIdentifier] = []
- #: Citation type.
- type: typing.Optional[str] = None
- #: Corresponds to the abbreviation reported by GTR
- abbrev: typing.Optional[str] = None
- #: Optional citation URL
- url: typing.Optional[str] = None
- #: Optional citation text.
- citation_text: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Citation":
- return Citation(
- ids=[
- CitationIdentifier.from_json_data(raw_identifier)
- for raw_identifier in force_list(json_data.get("ID", []))
- ],
- type=json_data.get("@Type"),
- abbrev=json_data.get("@Abbrev"),
- url=json_data.get("URL"),
- citation_text=json_data.get("CitationText"),
- )
-
-
-@enum.unique
-class AssertionTypeSCV(enum.Enum):
- """The assertion types available for SCV records"""
-
- VARIATION_TO_DISEASE = "variation to disease"
- VARIATION_IN_MODIFIER_GENE_TO_DISEASE = "variation in modifier gene to disease"
- CONFERS_SENSITIVITY = "confers sensitivity"
- CONFERS_RESISTANCE = "confers resistance"
- VARIANT_TO_NAMED_PROTEIN_EFFECT = "variant to named protein"
- VARIATION_TO_INCLUDED_DISEASE = "variation to included disease"
-
-
-class CustomAssertionScore(BaseModel):
- """A custom assertion score"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Score value
- value: float
- #: Scoring scheme
- type: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "CustomAssertionScore":
- return CustomAssertionScore(
- value=float(json_data["#text"]),
- type=json_data.get("@type"),
- )
-
-
-class ClinicalSignificanceTypeSCV(BaseModel):
- """The clinical significance from the SCV"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The review status
- review_status: typing.Optional[ReviewStatus] = None
- #: We are not providing an enumeration for the values we report for clinical significance within the xsd.
- #: The values are maintained here: ftp://ftp.ncbi.nlm.nih.gov/pub/GTR/standard_terms/Clinical_significance.txt.
- descriptions: typing.List[ClinicalSignificanceDescription] = []
- #: Explanation is used only when the description is 'conflicting data from submitters'.
- #: The element summarizes the conflict.
- explanation: typing.Optional[Comment] = None
- #: Explanation for interpretation.
- explanation_of_interpretation: typing.Optional[str] = None
- #: Custom asertion scores.
- custom_assertion_score: typing.List[CustomAssertionScore] = []
- #: Cross-references.
- xrefs: typing.List[Xref] = []
- #: Citations
- citations: typing.List[Citation] = []
- #: Comments.
- comments: typing.List[Comment] = []
- #: Date of last evaluation.
- date_last_evaluated: typing.Optional[datetime.date] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinicalSignificanceTypeSCV":
- # Handle case of the following::
- #
- # \
- # criteria provided, single submitter
- #
- # In contrast to::
- #
- # criteria provided, single submitter
- review_status = None
- if "ReviewStatus" in json_data:
- review_status = ReviewStatus(extract_text(json_data["ReviewStatus"]))
-
- # Same for the descriptions.
- descriptions = []
- for raw_description in force_list(json_data.get("Description", [])):
- value = extract_text(raw_description)
- if value:
- descriptions.append(ClinicalSignificanceDescription.from_the_wild(value.lower()))
-
- return ClinicalSignificanceTypeSCV(
- review_status=review_status,
- descriptions=descriptions,
- explanation=(
- Comment.from_json_data(json_data["Explanation"])
- if json_data.get("Explanation")
- else None
- ),
- explanation_of_interpretation=json_data.get("ExplanationOfInterpretation"),
- custom_assertion_score=[
- CustomAssertionScore(
- value=float(raw_score["#text"]),
- type=raw_score.get("@Type"),
- )
- for raw_score in force_list(json_data.get("CustomAssertionScore", []))
- if "#text" in raw_score
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- date_last_evaluated=(
- parse_datetime(
- json_data["@DateLastEvaluated"],
- ).date()
- if json_data.get("@DateLastEvaluated")
- else None
- ),
- )
-
-
-class ClinicalSignificanceRCV(BaseModel):
- """The clinical significance from the RCV"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The review status
- review_status: typing.Optional[ReviewStatus] = None
- #: We are not providing an enumeration for the values we report for clinical significance within the xsd.
- #: The values are maintained here: ftp://ftp.ncbi.nlm.nih.gov/pub/GTR/standard_terms/Clinical_significance.txt.
- description: typing.Optional[ClinicalSignificanceDescription] = None
- #: Explanation is used only when the description is 'conflicting data from submitters'.
- #: The element summarizes the conflict.
- explanation: typing.Optional[Comment] = None
- #: Explanation for interpretation.
- explanation_of_interpretation: typing.Optional[str] = None
- #: Cross-references.
- xrefs: typing.List[Xref] = []
- #: Citations
- citations: typing.List[Citation] = []
- #: Comments.
- comments: typing.List[Comment] = []
- #: Date of last evaluation.
- date_last_evaluated: typing.Optional[datetime.date] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinicalSignificanceRCV":
- # Handle case of the following::
- #
- # \
- # criteria provided, single submitter
- #
- # In contrast to::
- #
- # criteria provided, single submitter
- review_status = None
- if "ReviewStatus" in json_data:
- review_status = ReviewStatus(extract_text(json_data["ReviewStatus"]))
-
- # Same for the optional description.
- raw_description = extract_text(json_data.get("Description", None))
- description = None
- if raw_description:
- description = ClinicalSignificanceDescription.from_the_wild(raw_description.lower())
-
- return ClinicalSignificanceRCV(
- review_status=review_status,
- description=description,
- explanation=(
- Comment.from_json_data(json_data["Explanation"])
- if "Explanation" in json_data
- else None
- ),
- explanation_of_interpretation=json_data.get("ExplanationOfInterpretation"),
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- date_last_evaluated=(
- parse_datetime(
- json_data["@DateLastEvaluated"],
- ).date()
- if json_data.get("@DateLastEvaluated")
- else None
- ),
- )
-
-
-class ReferenceClinVarAccession(BaseModel):
- """Accession for a reference ClinVar record"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The accession assigned by ClinVar
- acc: str
- #: A new version of an SCV accession is assigned with an update from the submitter.
- #: A new version of an RCV accession is assigned when the set of ClinVarAssertions is
- #: changed, either by a change in version or by addition of a new submission.
- version: int
- #: The accession type
- type: ClinVarAccessionType
- #: Date of previous update
- date_updated: datetime.date
- #: Date of record creation.
- date_created: datetime.date
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ReferenceClinVarAccession":
- return ReferenceClinVarAccession(
- acc=json_data["@Acc"],
- version=int(json_data["@Version"]),
- type=ClinVarAccessionType(json_data["@Type"]),
- date_updated=parse_datetime(json_data["@DateUpdated"]).date(),
- date_created=parse_datetime(json_data["@DateCreated"]).date(),
- )
-
-
-@enum.unique
-class ReferenceClinVarAssertionAttributeType(enum.Enum):
- """Type for an attribute in a ``ReferenceClinVarAssertion``"""
-
- MODE_OF_INHERITANCE = "ModeOfInheritance"
- PENETRANCE = "Penetrance"
- AGE_OF_ONSET = "AgeOfOnset"
-
-
-class ReferenceClinVarAssertionAttribute(BaseModel):
- """Attribute for ``ReferenceClnVarAssertion``
-
- Corresponds to the ```` elements.
- """
-
- model_config = ConfigDict(frozen=True)
-
- #: The attribute's value
- value: str
- #: The attribute's type
- type: ReferenceClinVarAssertionAttributeType
- #: The optional integer value provided in ClinVar public XML
- integer_value: typing.Optional[int] = None
- #: The optional date value provided in ClinVar public XML
- date_value: typing.Optional[datetime.date] = None
- #: Optional list of citations for this attribute
- citations: typing.List[Citation] = []
- #: Optional list of cross-references for this attribute
- xrefs: typing.List[Xref] = []
- #: Optional list of comments for this attribute
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ReferenceClinVarAssertionAttribute":
- attribute = json_data["Attribute"]
- return ReferenceClinVarAssertionAttribute(
- # value of tag
- value=attribute["#text"],
- type=ReferenceClinVarAssertionAttributeType(attribute["@Type"]),
- integer_value=int(attribute["@integerValue"]) if "@integerValue" in attribute else None,
- date_value=(
- parse_datetime(attribute["@dateValue"]) if "@dateValue" in attribute else None
- ),
- # other data in lists
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-@enum.unique
-class Zygosity(enum.Enum):
- """Zygosity options"""
-
- HOMOZYGOTE = "Homozygote"
- SINGLE_HETEROZYGOTE = "SingleHeterozygote"
- COMPOUND_HETEROZYGOTE = "CompoundHeterozygote"
- HEMIZYGOTE = "Hemizygote"
- NOT_PROVIDED = "not provided"
-
-
-@enum.unique
-class RelativeOrientation(enum.Enum):
- """Relative orientation of two variants"""
-
- CIS = "cis"
- TRANS = "trans"
- UNKNOWN = "unknown"
-
-
-class AlleleDescription(BaseModel):
- """Description of one allele for use in co-occurence description"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Name of the allele
- name: str
- #: Relative orientation in variant co-occurence
- relative_orientation: typing.Optional[RelativeOrientation]
- #: Zygosity information
- zygosity: typing.Optional[Zygosity] = None
- #: Clinical significance description of variant
- clinical_significance: typing.Optional[ClinicalSignificanceRCV] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "AlleleDescription":
- return AlleleDescription(
- name=json_data["Name"],
- relative_orientation=(
- RelativeOrientation(json_data["RelativeOrientation"])
- if "RelativeOrientation" in json_data
- else None
- ),
- zygosity=Zygosity(json_data["Zygosity"]) if "Zygosity" in json_data else None,
- clinical_significance=(
- ClinicalSignificanceRCV.from_json_data(json_data["ClinicalSignificance"])
- if "ClinicalSignificance" in json_data
- else None
- ),
- )
-
-
-class Cooccurrence(BaseModel):
- """Describes co-ocurrence of variants"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The overall zygosity
- zygosity: typing.Optional[Zygosity] = None
- #: The description of the alleles
- allele_descriptions: typing.List[AlleleDescription] = []
- #: A count (undocumented in ClinVar XML)
- count: typing.Optional[int] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Cooccurrence":
- return Cooccurrence(
- zygosity=Zygosity(json_data["Zygosity"]) if "Zygosity" in json_data else None,
- allele_descriptions=[
- AlleleDescription.from_json_data(raw_allele_description)
- for raw_allele_description in force_list(json_data.get("AlleleDescSet", []))
- ],
- count=int(json_data["Count"]) if "Count" in json_data else None,
- )
-
-
-@enum.unique
-class ObservationMethod(enum.Enum):
- """Method for generating an observation"""
-
- CURATION = "curation"
- LITERATURE_ONLY = "literature only"
- REFERENCE_POPULATION = "reference population"
- RE_INTERPRETATION = "re-interpretation"
- CASE_CONTROL = "case-control"
- CLINICAL_TESTING = "clinical testing"
- IN_VITRO = "in vitro"
- IN_VIVO = "in vivo"
- INFERRED_FROM_SOURCE = "inferred from source"
- RESEARCH = "research"
- NOT_PROVIDED = "not provided"
- OTHER = "other"
-
- @classmethod
- def from_the_wild(cls, str) -> "ObservationMethod":
- """Convert values "from the wild" where sometimes invalid values are used.
-
- These are converted to ``Other``.
- """
- try:
- return ObservationMethod(str)
- except ValueError:
- return cls.OTHER
-
-
-@enum.unique
-class ObservedDataAttributeType(enum.Enum):
- """Type for an attribute in a ``ObservedData``"""
-
- DESCRIPTION = "Description"
- VARIANT_ALLELES = "VariantAlleles"
- SUBJECTS_WITH_VARIANT = "SubjectsWithVariant"
- SUBJECTS_WITH_DIFFERENT_CAUSATIVE_VARIANT = "SubjectsWithDifferentCausativeVariant"
- VARIANT_CHROMOSOMES = "VariantChromosomes"
- INDEPENDENT_OBSERVATIONS = "IndependentObservations"
- SINGLE_HETEROZYGOTE = "SingleHeterozygote"
- COMPOUND_HETEROZYGOTE = "CompoundHeterozygote"
- HOMOZYGOTE = "Homozygote"
- HEMIZYGOTE = "Hemizygote"
- NUMBER_MOSAIC = "NumberMosaic"
- OBSERVED_UNSPECIFIED = "ObservedUnspecified"
- ALLELE_FREQUENCY = "AlleleFrequency"
- SECONDARY_FINDING = "SecondaryFinding"
- GENOTYPE_AND_MOI_CONSISTENT = "GenotypeAndMOIConsistent"
- UNAFFECTED_FAMILY_MEMBER_WITH_CAUSATIVE_VARIANT = "UnaffectedFamilyMemberWithCausativeVariant"
- HET_PARENT_TRANSMIT_NORMAL_ALLELE = "HetParentTransmitNormalAllele"
- COSEGREGATING_FAMILY = "CosegregatingFamilies"
- INFORMATIVE_MEIOSES = "InformativeMeioses"
- SAMPLE_LOCAL_ID = "SampleLocalID"
- SAMPLE_VARIANT_ID = "SampleVariantID"
- FAMILY_HISTORY = "FamilyHistory"
- NUM_FAMILIES_WITH_VARIANT = "NumFamiliesWithVariant"
- NUM_FAMILIES_WITH_SEGREGATION_OBSERVED = "NumFamiliesWithSegregationObserved"
- SEGREGATION_OBSERVED = "SegregationObserved"
-
-
-class ObservedDataAttribute(BaseModel):
- """Attribute for ``ObservedData``"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The type of the attribute
- type: ObservedDataAttributeType
- #: The attribute's value
- value: typing.Optional[str] = None
- #: The optional integer value provided in ClinVar public XML
- integer_value: typing.Optional[int] = None
- #: The optional date value provided in ClinVar public XML
- date_value: typing.Optional[datetime.date] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ObservedDataAttribute":
- return ObservedDataAttribute(
- type=ObservedDataAttributeType(json_data["@Type"]),
- value=json_data.get("#text"),
- integer_value=int(json_data["@integerValue"]) if "@integerValue" in json_data else None,
- date_value=(
- parse_datetime(json_data["@dateValue"]) if "@dateValue" in json_data else None
- ),
- )
-
-
-@enum.unique
-class Severity(enum.Enum):
- """Severity of a condition"""
-
- MILD = "mild"
- MODERATE = "moderate"
- SEVERE = "severe"
-
-
-class ObservedData(BaseModel):
- """Store structured observed data"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The core observation data
- attribute: ObservedDataAttribute
- #: Optional description of severity
- severity: typing.Optional[Severity] = None
- #: Optional list of citations
- citations: typing.List[Citation] = []
- #: Optional list of cross-references
- xrefs: typing.List[Xref] = []
- #: Optional list of comments
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ObservedData":
- return ObservedData(
- attribute=ObservedDataAttribute.from_json_data(json_data["Attribute"]),
- severity=Severity(json_data["Severity"]) if "Severity" in json_data else None,
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-class SampleDescription(BaseModel):
- """Description of a sample with optional citation"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The sample's description
- description: typing.Optional[Comment] = None
- #: A citation for the sample
- citation: typing.Optional[Citation] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "SampleDescription":
- return SampleDescription(
- description=(
- Comment.from_json_data(json_data["Description"])
- if "Description" in json_data
- else None
- ),
- citation=(
- Citation.from_json_data(json_data["Citation"]) if "Citation" in json_data else None
- ),
- )
-
-
-class FamilyInfo(BaseModel):
- """Description of a family in an observation.
-
- If the details of the number of families and the de-identified pedigree id are not available,
- use FamilyHistory to describe what type of family data is available. Can also be used to report
- 'Yes' or 'No' if there are no more details.
- """
-
- model_config = ConfigDict(frozen=True)
-
- #: Family history description
- family_history: typing.Optional[str] = None
- #: Number of families with observations
- num_families: typing.Optional[int] = None
- #: Number of families with a varaint
- num_families_with_variant: typing.Optional[int] = None
- #: Number of families with observed segregation
- num_families_with_segregation_observed: typing.Optional[int] = None
- #: Pedigree identifier
- pedigree_id: typing.Optional[str] = None
- #: Whether segration was observeds
- segregation_observed: typing.Optional[bool] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "FamilyInfo":
- return FamilyInfo(
- family_history=json_data.get("FamilyHistory"),
- num_families=int(json_data["@NumFamilies"]) if "@NumFamilies" in json_data else None,
- num_families_with_variant=(
- int(json_data["@NumFamiliesWithVariant"])
- if "@NumFamiliesWithVariant" in json_data
- else None
- ),
- num_families_with_segregation_observed=(
- int(json_data["@NumFamiliesWithSegregationObserved"])
- if "@NumFamiliesWithSegregationObserved" in json_data
- else None
- ),
- pedigree_id=json_data.get("@PedigreeID"),
- segregation_observed=(
- json_data["@SegregationObserved"] == "yes"
- if "@SegregationObserved" in json_data
- else None
- ),
- )
-
-
-@enum.unique
-class SampleOrigin(enum.Enum):
- """Origin of a sample"""
-
- GERMLINE = "germline"
- SOMATIC = "somatic"
- DE_NOVO = "de novo"
- UNKNOWN = "unknown"
- NOT_PROVIDED = "not provided"
- INHERITED = "inherited"
- MATERNAL = "maternal"
- PATERNAL = "paternal"
- BIPARENTAL = "biparental"
- NOT_REPORTED = "not reported"
- TESTED_INCONCLUSIVE = "tested inconclusive"
- NOT_APPLICABLE = "not applicable"
- EXPERIMENTALLY_GENERATED = "experimentally generated"
-
- @classmethod
- def from_the_wild(cls, s: str) -> "SampleOrigin":
- """Convert values "from the wild" where sometimes invalid values are used.
-
- These are converted to ``Other``.
- """
- try:
- return SampleOrigin(s.replace("-", " ").lower())
- except ValueError:
- return SampleOrigin.UNKNOWN
-
-
-class Species(BaseModel):
- """Definition of the species of a sample"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The species name
- value: str
- #: The taxonomy id
- taxonomy_id: typing.Optional[int] = None
-
- @classmethod
- def from_json_data(cls, json_data: typing.Union[dict, str]) -> "Species":
- if isinstance(json_data, str):
- return Species(
- value=json_data,
- )
- else:
- return Species(
- value=json_data["#text"],
- taxonomy_id=int(json_data["@TaxonomyId"]),
- )
-
-
-@enum.unique
-class AgeType(enum.Enum):
- """Type of an age or side of an age range"""
-
- MINIMUM = "minimum"
- MAXIMUM = "maximum"
- SINGLE = "single"
-
-
-class Age(BaseModel):
- """Description of an age or a side of an age range"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The unit of the age
- age_unit: str
- #: The age value
- value: int
- #: The type of the age (side of a range or single age)
- type: AgeType
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Age":
- return Age(
- age_unit=json_data["@age_unit"],
- value=int(json_data["#text"]),
- type=AgeType(json_data["@Type"]),
- )
-
-
-@enum.unique
-class AffectedStatus(enum.Enum):
- """Affected status of a sample"""
-
- YES = "yes"
- NO = "no"
- NOT_PROVIDED = "not provided"
- UNKNOWN = "unknown"
- NOT_APPLICABLE = "not applicable"
-
-
-@enum.unique
-class Gender(enum.Enum):
- """Gender of a sample"""
-
- MALE = "male"
- FEMALE = "female"
- MIXED = "mixed"
-
-
-@enum.unique
-class SampleSource(enum.Enum):
- """Source of a sample"""
-
- SUBMITTER_GENERATED = "submitter generated"
- DATA_MINING = "data mining"
-
-
-class TypedValue(BaseModel):
- """A typed value in a value set"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The type description
- type: str
- #: The value
- value: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "TypedValue":
- return TypedValue(
- type=json_data["@Type"],
- value=json_data.get("#text"),
- )
-
-
-class AnnotatedTypedValue(BaseModel):
- """A further annotated ``TypedValue``"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The inner typed value
- value: TypedValue
- #: Optional list of citations
- citations: typing.List[Citation] = []
- #: Optional list of cross-references
- xrefs: typing.List[Xref] = []
- #: Optional list of comments
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "AnnotatedTypedValue":
- if "ElementValue" in json_data:
- value = TypedValue.from_json_data(json_data["ElementValue"])
- elif "Attribute" in json_data:
- value = TypedValue.from_json_data(json_data["Attribute"])
- else:
- raise TypeError(f"Expected ElementValue or Attribute in {json_data}")
- return AnnotatedTypedValue(
- value=value,
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-@enum.unique
-class ClinicalFeaturesAffectedStatus(enum.Enum):
- """Affected status of a clinical feature"""
-
- PRESENT = "present"
- ABSENT = "absent"
- NOT_TESTED = "not tested"
-
-
-@enum.unique
-class SourceType(enum.Enum):
- """Type of a source"""
-
- LABORATORY = "laboratory"
- LSDB = "locus-specific database (LSDB)"
- CONSORTIUM = "consortium"
- RESOURCE = "resource"
- PATIENT_REGISTRY = "patient registry"
- OTHER = "other"
-
-
-class Source(BaseModel):
- """Source information of some data"""
-
- model_config = ConfigDict(frozen=True)
-
- #: A standard term for the source of the information
- data_source: str
- #: The identifier used by the data source
- id: typing.Optional[str] = None
- #: Controlled terms to categorize the source of the information
- source_type: typing.Optional[SourceType] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Source":
- return Source(
- data_source=json_data["@DataSource"],
- id=json_data.get("@ID"),
- source_type=(
- SourceType(json_data["@SourceType"]) if json_data.get("@SourceType") else None
- ),
- )
-
-
-@enum.unique
-class TraitRelationshipType(enum.Enum):
- """Type of a trait relationship"""
-
- PHENOCOPY = "phenocopy"
- SUBPHENOTYPE = "Subphenotype"
- DRUG_RESPONSE_AND_DIASEASE = "DrugResponseAndDisease"
- CO_OCCURRING_CONDITION = "co-occurring condition"
- FINDING_MEMBER = "Finding member"
-
-
-class TraitRelationship(BaseModel):
- """Describe relations between two types"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The type of the relationship
- type: TraitRelationshipType
- #: An optional identifier of the relationship
- id: typing.Optional[int] = None
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[AnnotatedTypedValue] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- source: typing.List[Source] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "TraitRelationship":
- return TraitRelationship(
- type=TraitRelationshipType(json_data["@Type"]),
- id=int(json_data["@ID"]) if "@ID" in json_data else None,
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- AnnotatedTypedValue.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- source=[
- Source.from_json_data(raw_source)
- for raw_source in force_list(json_data.get("Source", []))
- ],
- )
-
-
-class ClinVarAssertionTraitRelationship(BaseModel):
- """Trait relationship for ``ClinVarAssertionTrait`` records"""
-
- model_config = ConfigDict(frozen=True)
-
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[AnnotatedTypedValue] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
- #: List of sources
- sources: typing.List[Source] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinVarAssertionTraitRelationship":
- return ClinVarAssertionTraitRelationship(
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- AnnotatedTypedValue.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- sources=[
- Source.from_json_data(raw_source)
- for raw_source in force_list(json_data.get("Source", []))
- ],
- )
-
-
-class ClinVarAssertionTrait(BaseModel):
- """Trait description for a ClinVar assertion"""
-
- model_config = ConfigDict(frozen=True)
-
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[AnnotatedTypedValue] = []
- #: List of trait relationships
- trait_relationships: typing.List[TraitRelationship] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
- #: List of sources
- sources: typing.List[Source] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinVarAssertionTrait":
- return ClinVarAssertionTrait(
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- AnnotatedTypedValue.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- trait_relationships=[
- TraitRelationship.from_json_data(raw_trait_relationship)
- for raw_trait_relationship in force_list(json_data.get("TraitRelationship", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- sources=[
- Source.from_json_data(raw_source)
- for raw_source in force_list(json_data.get("Source", []))
- ],
- )
-
-
-@enum.unique
-class TraitType(enum.Enum):
- """Type of a trait"""
-
- DISEASE = "Disease"
- DRUG_RESPONSE = "DrugResponse"
- BLOOD_GROUP = "BloodGroup"
- FINDING = "Finding"
- NAMED_PROTEIN_VARIANT = "NamedProteinVariant"
- PHENOTYPE_INSTRUCTION = "PhenotypeInstruction"
-
-
-class Trait(BaseModel):
- """Trait description for trait sets"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Type of the trait
- type: TraitType
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[AnnotatedTypedValue] = []
- #: List of trait relationships
- trait_relationships: typing.List[TraitRelationship] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
- #: List of sources
- sources: typing.List[Source] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Trait":
- return Trait(
- type=TraitType(json_data["@Type"]),
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- AnnotatedTypedValue.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- trait_relationships=[
- TraitRelationship.from_json_data(raw_trait_relationship)
- for raw_trait_relationship in force_list(json_data.get("TraitRelationship", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- sources=[
- Source.from_json_data(raw_source)
- for raw_source in force_list(json_data.get("Source", []))
- ],
- )
-
-
-@enum.unique
-class IndicationType(enum.Enum):
- """Type of an indication"""
-
- INDICATION = "Indication"
-
-
-class Indication(BaseModel):
- """Connect trait to test"""
-
- model_config = ConfigDict(frozen=True)
-
- #: List of traits
- traits: typing.List[ClinVarAssertionTrait] = []
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[AnnotatedTypedValue] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comment: typing.Optional[Comment] = None
- #: The type of the indication
- type: typing.Optional[IndicationType] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Indication":
- return Indication(
- type=IndicationType(json_data["@Type"]),
- traits=[
- ClinVarAssertionTrait.from_json_data(raw_trait)
- for raw_trait in force_list(json_data.get("Trait", []))
- ],
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- AnnotatedTypedValue.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("Attribute", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comment=(
- Comment.from_json_data(json_data["Comment"]) if "Comment" in json_data else None
- ),
- )
-
-
-class Sample(BaseModel):
- """A sample from a ClinVar XML file"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Sample description
- description: typing.Optional[SampleDescription] = None
- #: Sample origin
- origin: typing.Optional[SampleOrigin] = None
- #: Proband's ethnicity
- ethnicity: typing.Optional[str] = None
- #: Geographic origin
- geographic_origin: typing.Optional[str] = None
- #: Tissue
- tissue: typing.Optional[str] = None
- #: Cell line
- cell_line: typing.Optional[str] = None
- #: Species
- species: typing.Optional[Species] = None
- #: Age
- age: typing.List[Age] = []
- #: Strain
- strain: typing.Optional[str] = None
- #: Affected status
- affected_status: AffectedStatus = AffectedStatus.NOT_PROVIDED
- #: Denominator, total individuals included in this observation set.
- number_tested: typing.Optional[int] = None
- #: Denominator, total males included in this observation set.
- number_males: typing.Optional[int] = None
- #: Denominator, total females included in this observation set.
- number_females: typing.Optional[int] = None
- #: Denominator, total number chromosomes tested. Number affected and
- #: unaffected are captured in the element NumberObserved.
- number_chr_tested: typing.Optional[int] = None
- #: Gender should be used ONLY if explicit values are not available for number
- #: of males or females, and there is a need to indicate that the genders in
- #: the sample are known.
- gender: typing.Optional[Gender] = None
- #: Family data
- family_data: typing.Optional[FamilyInfo] = None
- #: Proband
- proband: typing.Optional[str] = None
- #: Indication
- indication: typing.Optional[Indication] = None
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
- #: Sample source
- source: typing.Optional[SampleSource] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Sample":
- origin = None
- if "Origin" in json_data:
- raw_origin = extract_text(json_data["Origin"])
- if raw_origin:
- origin = SampleOrigin.from_the_wild(raw_origin)
- return Sample(
- description=(
- SampleDescription.from_json_data(json_data["SampleDescription"])
- if "SampleDescription" in json_data
- else None
- ),
- origin=origin,
- ethnicity=json_data.get("Ethnicity"),
- geographic_origin=json_data.get("GeographicOrigin"),
- tissue=extract_text(json_data["Tissue"]) if "Tissue" in json_data else None,
- cell_line=json_data["CellLine"] if "CellLine" in json_data else None,
- species=(
- Species.from_json_data(json_data["Species"])
- if ("Species" in json_data and json_data.get("Species"))
- else None
- ),
- age=[Age.from_json_data(raw_age) for raw_age in force_list(json_data.get("Age", []))],
- strain=json_data.get("Strain"),
- affected_status=(
- AffectedStatus(extract_text(json_data["AffectedStatus"]))
- if "AffectedStatus" in json_data
- else AffectedStatus.NOT_PROVIDED
- ),
- number_tested=(
- int(extract_text(json_data["NumberTested"]) or 0)
- if "NumberTested" in json_data
- else None
- ),
- number_males=(
- int(extract_text(json_data["NumberMales"]) or 0)
- if "NumberMales" in json_data
- else None
- ),
- number_females=(
- int(extract_text(json_data["NumberFemales"]) or 0)
- if "NumberFemales" in json_data
- else None
- ),
- number_chr_tested=(
- int(extract_text(json_data["NumberChrTested"]) or 0)
- if "NumberChrTested" in json_data
- else None
- ),
- gender=Gender(extract_text(json_data["Gender"])) if "Gender" in json_data else None,
- family_data=(
- FamilyInfo.from_json_data(json_data["FamilyData"])
- if "FamilyData" in json_data
- else None
- ),
- proband=json_data.get("Proband"),
- indication=(
- Indication.from_json_data(json_data["Indication"])
- if "Indication" in json_data
- else None
- ),
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- source=SampleSource(json_data["SourceType"]) if "SourceType" in json_data else None,
- )
-
-
-@enum.unique
-class TraitSetType(enum.Enum):
- """Type of a trait set"""
-
- DISEASE = "Disease"
- DRUG_RESPONSE = "DrugResponse"
- FINDING = "Finding"
- PHENOTYPE_INSTRUCTION = "PhenotypeInstruction"
- TRAIT_CHOICE = "TraitChoice"
-
-
-class TraitSet(BaseModel):
- """Description of a trait set"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Type of the trait set
- type: TraitSetType
- #: List of traits
- traits: typing.List[Trait] = []
- #: Optional identifier
- id: typing.Optional[int] = None
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[AnnotatedTypedValue] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "TraitSet":
- return cls(
- type=TraitSetType(json_data["@Type"]),
- traits=[
- Trait.from_json_data(raw_trait)
- for raw_trait in force_list(json_data.get("Trait", []))
- ],
- id=int(json_data["@ID"]) if json_data.get("@ID") else None,
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- AnnotatedTypedValue.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-class ObservationSet(BaseModel):
- """Documents in what populations or samples an allele or genotype has been observed
- relative to the described trait.
-
- Summary observations can be registered per submitted assertion, grouped by common
- citation, study type, origin, ethnicity, tissue, cell line, and species data. Not
- all options are valid per study type, but these will not be validated in the xsd.
- """
-
- model_config = ConfigDict(frozen=True)
-
- #: Sample in observation
- sample: Sample
- #: List of observation methods
- methods: typing.List[ObservationMethod] = []
- #: List of observed data
- observed_data: typing.List[ObservedData] = []
- #: Traits
- traits: typing.Optional[TraitSet] = None
- #: List of co-occurrences
- cooccurrences: typing.List[Cooccurrence] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ObservationSet":
- return ObservationSet(
- sample=Sample.from_json_data(json_data["Sample"]),
- methods=[
- ObservationMethod.from_the_wild(method["MethodType"])
- for method in force_list(json_data.get("Method", []))
- ],
- observed_data=[
- ObservedData.from_json_data(raw_observed_data)
- for raw_observed_data in force_list(json_data.get("ObservedData", []))
- ],
- traits=(
- TraitSet.from_json_data(json_data["TraitSet"]) if "TraitSet" in json_data else None
- ),
- cooccurrences=[
- Cooccurrence.from_json_data(raw_cooccurrence)
- for raw_cooccurrence in force_list(json_data.get("Coocurrence", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-@enum.unique
-class AssertionType(enum.Enum):
- """The assertion types for RCV records"""
-
- VARIATION_TO_DISEASE = "variation to disease"
- VARIATION_IN_MODIFIER_GENE_TO_DISEASE = "variation in modifier gene to disease"
- CONFERS_SENSITIVITY = "confers sensitivity"
- CONFERS_RESISTANCE = "confers resistance"
- VARIANT_TO_NAMED_PROTEIN_EFFECT = "variant to named protein"
-
-
-@enum.unique
-class MeasureSetAttributeType(enum.Enum):
- """Type of an attribute in a measure set"""
-
- DESCRIPTION = "Description"
- MOLECULAR_CONSEQUENCE = "MolecularConsequence"
- HGVS = "HGVS"
- HGVS_GENOMIC_TOP_LEVEL = "HGVS, genomic, top level"
- HGVS_GENOMIC_TOP_LEVEL_PREVIOUS = "HGVS, genomic, top level, previous"
- HGVS_GENOMIC_TOP_LEVEL_OTHER = "HGVS, genomic, top level, other"
- HGVS_GENOMIC_REFSEQGENE = "HGVS, genomic, RefSeqGene"
- HGVS_GENOMIC_LRG = "HGVS, genomic, LRG"
- HGVS_CODING_REFSEQGENE = "HGVS, coding, RefSeq"
- HGVS_CODING_LRG = "HGVS, coding, LRG"
- HGVS_CODING = "HGVS, coding"
- HGVS_RNA = "HGVS, RNA"
- HGVS_PREVIOUS = "HGVS, previous"
- HGVS_PROTEIN = "HGVS, protein"
- HGVS_PROTEIN_REFSEQ = "HGVS, protein, RefSeq"
- HGVS_NUCLEOTIDE = "HGVS, nucleotide"
- HGVS_NON_VALIDATED = "HGVS, non-validated"
- HGVS_LEGACY = "HGVS, legacy"
- HGVS_UNCERTAIN = "HGVS, uncertain"
- FUNCTIONAL_CONSEQUENCE = "FunctionalConsequence"
- ISCN_COORDINATES = "ISCNCoordinates"
- SUBMITTER_VARIANT_ID = "SubmitterVariantId"
-
-
-class MeasureSetAttribute(BaseModel):
- """An attribute in a MeasureSet"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Type of the attribute
- type: MeasureSetAttributeType
- #: Value of the attribute
- value: str
- #: Described change
- change: typing.Optional[str] = None
- #: Whether the attribute is MANE select
- mane_select: typing.Optional[bool] = None
- #: Whether the attribute is in MANE plus clinical
- mane_plus_clinical: typing.Optional[bool] = None
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "MeasureSetAttribute":
- attribute = json_data["Attribute"]
- return MeasureSetAttribute(
- type=MeasureSetAttributeType(attribute["@Type"]),
- value=attribute["#text"],
- change=attribute.get("@Change"),
- mane_select=attribute["@ManeSelect"] == "yes" if "@ManeSelect" in attribute else None,
- mane_plus_clinical=(
- attribute["@ManePlusClinical"] == "yes"
- if "@ManePlusClinical" in attribute
- else None
- ),
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-@enum.unique
-class MeasureAttributeType(enum.Enum):
- """Type of an attribute in a measure type"""
-
- HGVS_GENOMIC_TOP_LEVEL = "HGVS, genomic, top level"
- HGVS_GENOMIC_TOP_LEVEL_PREVIOUS = "HGVS, genomic, top level, previous"
- HGVS_GENOMIC_TOP_LEVEL_OTHER = "HGVS, genomic, top level, other"
- HGVS_GENOMIC_REFSEQGENE = "HGVS, genomic, RefSeqGene"
- HGVS_GENOMIC_LRG = "HGVS, genomic, LRG"
- HGVS_GENOMIC = "HGVS, genomic"
- HGVS_CODING_REFSEQGENE = "HGVS, coding, RefSeq"
- HGVS_CODING_LRG = "HGVS, coding, LRG"
- HGVS_CODING = "HGVS, coding"
- HGVS_INCOMPLETE = "HGVS, incomplete"
- HGVS_PREVIOUS = "HGVS, previous"
- HGVS_PROTEIN = "HGVS, protein"
- HGVS_PROTEIN_REFSEQ = "HGVS, protein, RefSeq"
- HGVS_NON_CODING = "HGVS, non-coding"
- HGVS_NON_VALIDATED = "HGVS, non-validated"
- HGVS_RNA = "HGVS, RNA"
- HGVS_LEGACY = "HGVS, legacy"
- HGVS_UNCERTAIN = "HGVS, uncertain"
- HGVS = "HGVS"
- NON_HGVS = "NonHGVS"
- LOCATION = "Location"
- MISCELLANEOUS_DESCRIPTION = "MiscellaneousDescription"
- DESCRIPTION = "Description"
- FUNCTIONAL_CONCESEQUENCE = "FunctionalConsequence"
- MOLECULAR_CONSEQUENCE = "MolecularConsequence"
- PROTEIN_CHANGE_1_LETTER_CODE = "ProteinChange1LetterCode"
- PROTEIN_CHANGE_3_LETTER_CODE = "ProteinChange3LetterCode"
- ACTIVITY_LEVEL = "ActivityLevel"
- SUSPECT = "Suspect"
- ALLELIC_VARIANT_PREVIOUS = "Allelic Variant, previous"
- ACCEPTOR_SPLICE_SITE = "acceptor splice site"
- DONOR_SPLICE_SITE = "donor splice site"
- NUCLEOTIDE_CHANGE = "nucleotide change"
- PROTEIN_CHANGE_HISTORICAL = "protein change, historical"
- TRANSCRIPT_VARIANT = "transcript variant"
- ABSOLUTE_COPY_NUMBER = "AbsoluteCopyNumber"
- REFERENCE_COPY_NUMBER = "ReferenceCopyNumber"
- COPY_NUMBER_TUPLE = "CopyNumberTuple"
- COSMIC = "COSMIC"
- SUBMITTER_VARIANT_ID = "SubmitterVariantId"
- ISCN_COORDINATES = "ISCNCoordinates"
-
-
-class MeasureAttribute(BaseModel):
- """An attribute in a MeasureType"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The type of the attribute
- type: MeasureAttributeType
- #: Value of the attribute
- value: typing.Optional[str] = None
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
- #: The optional integer value provided in ClinVar public XML
- integer_value: typing.Optional[int] = None
- #: The optional date value provided in ClinVar public XML
- date_value: typing.Optional[datetime.date] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "MeasureAttribute":
- attribute = json_data["Attribute"]
- return MeasureAttribute(
- type=MeasureAttributeType(attribute["@Type"]),
- value=attribute.get("#text"),
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- integer_value=int(attribute["@integerValue"]) if "@integerValue" in attribute else None,
- date_value=(
- parse_datetime(attribute["@dateValue"]) if "@dateValue" in attribute else None
- ),
- )
-
-
-class AlleleFrequency(BaseModel):
- """Description of an allele frequency"""
-
- model_config = ConfigDict(frozen=True)
-
- #: AF value
- value: float
- #: AF source
- source: str
- #: URL
- url: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "AlleleFrequency":
- return AlleleFrequency(
- value=float(json_data["@Value"]),
- source=json_data["@Source"],
- url=json_data.get("@URL"),
- )
-
-
-class GlobalMinorAlleleFrequency(BaseModel):
- """Description of a global minor allele frequency"""
-
- model_config = ConfigDict(frozen=True)
-
- #: MAF value
- value: float
- #: MAF source
- source: str
- #: Minor allele string
- minor_allele: typing.Optional[str] = None
- #: URL
- url: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "GlobalMinorAlleleFrequency":
- return GlobalMinorAlleleFrequency(
- value=float(json_data["@Value"]),
- source=json_data["@Source"],
- minor_allele=json_data.get("@MinorAllele"),
- url=json_data.get("@URL"),
- )
-
-
-@enum.unique
-class AssemblyStatus(enum.Enum):
- """Status of an assembly"""
-
- CURRENT = "current"
- PREVIOUS = "previous"
-
-
-class SequenceLocation(BaseModel):
- """Description of a location on a sequence"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Assembly of the location
- assembly: str
- #: Chromosome
- chr: str
- #: Accession
- accession: typing.Optional[str] = None
- #: Outer start position (1-based)
- outer_start: typing.Optional[int] = None
- #: Inner start position (1-based)
- inner_start: typing.Optional[int] = None
- #: Start position (1-based)
- start: typing.Optional[int] = None
- #: Stop position (1-based)
- stop: typing.Optional[int] = None
- #: Inner stop position (1-based)
- inner_stop: typing.Optional[int] = None
- #: Outer stop position (1-based)
- outer_stop: typing.Optional[int] = None
- #: Display start position (1-based)
- display_start: typing.Optional[int] = None
- #: Display stop position (1-based)
- display_stop: typing.Optional[int] = None
- #: Strand
- strand: typing.Optional[str] = None
- #: Variant length
- variant_length: typing.Optional[int] = None
- #: Reference allele
- reference_allele: typing.Optional[str] = None
- #: Alternate allele
- alternate_allele: typing.Optional[str] = None
- #: Assembly accession and version
- assembly_accession_version: typing.Optional[str] = None
- #: Assembly status
- assembly_status: typing.Optional[AssemblyStatus] = None
- #: Position in VCF
- position_vcf: typing.Optional[int] = None
- #: Reference allele in VCF
- reference_allele_vcf: typing.Optional[str] = None
- #: Alternate allele in VCF
- alternate_allele_vcf: typing.Optional[str] = None
- #: Whether the location is for display length
- for_display_length: typing.Optional[bool] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "SequenceLocation":
- return SequenceLocation(
- assembly=json_data["@Assembly"],
- chr=json_data["@Chr"],
- accession=json_data.get("@Accession"),
- outer_start=int(json_data["@outerStart"]) if "@outerStart" in json_data else None,
- inner_start=int(json_data["@innerStart"]) if "@innerStart" in json_data else None,
- start=int(json_data["@start"]) if "@start" in json_data else None,
- stop=int(json_data["@stop"]) if "@stop" in json_data else None,
- inner_stop=int(json_data["@innerStop"]) if "@innerStop" in json_data else None,
- outer_stop=int(json_data["@outerStop"]) if "@outerStop" in json_data else None,
- display_start=(
- int(json_data["@display_start"]) if "@display_start" in json_data else None
- ),
- display_stop=int(json_data["@display_stop"]) if "@display_stop" in json_data else None,
- strand=json_data.get("@Strand"),
- variant_length=(
- int(json_data["@variantLength"]) if "@variantLength" in json_data else None
- ),
- reference_allele=json_data.get("@referenceAllele"),
- alternate_allele=json_data.get("@alternateAllele"),
- assembly_accession_version=json_data.get("@AssemblyAccessionVersion"),
- assembly_status=(
- AssemblyStatus(json_data["@AssemblyStatus"])
- if "@AssemblyStatus" in json_data
- else None
- ),
- position_vcf=int(json_data["@positionVCF"]) if "@positionVCF" in json_data else None,
- reference_allele_vcf=json_data.get("@referenceAlleleVCF"),
- alternate_allele_vcf=json_data.get("@alternateAlleleVCF"),
- for_display_length=(
- json_data["@forDisplayLength"] == "true"
- if "@forDisplayLength" in json_data
- else None
- ),
- )
-
-
-@enum.unique
-class MeasureRelationshipAttributeType(enum.Enum):
- """Type of an attribute in ``MeasureRelationship``"""
-
- HGVS = "HGVS"
- GENOTYPE = "genotype"
- HAPLOINSUFFICIENCY = "Haploinsufficiency"
- TRIPLOSENSITIVITY = "Triplosensitivity"
- GENE_RELATIONSHIPS = "gene relationships"
-
-
-class MeasureRelationshipAttribute(BaseModel):
- """Attribute of a measure releationship"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The attribute's value
- value: str
- #: The attribute's type
- type: MeasureRelationshipAttributeType
- #: The optional integer value provided in ClinVar public XML
- integer_value: typing.Optional[int] = None
- #: The optional date value provided in ClinVar public XML
- date_value: typing.Optional[datetime.date] = None
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "MeasureRelationshipAttribute":
- attribute = json_data["Attribute"]
- return MeasureRelationshipAttribute(
- # value of tag
- value=attribute["#text"],
- type=MeasureRelationshipAttributeType(attribute["@Type"]),
- integer_value=int(attribute["@integerValue"]) if "@integerValue" in attribute else None,
- date_value=(
- parse_datetime(attribute["@dateValue"]) if "@dateValue" in attribute else None
- ),
- # other data in lists
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-@enum.unique
-class MeasureRelationshipType(enum.Enum):
- VARIANT_IN_GENE = "variant in gene"
- COOCURRING_VARIANT = "co-occurring variant"
- WITHIN_SNIGLE_GENE = "within single gene"
- WITHIN_MULTIPLE_GENES_BY_OVERLAP = "within multiple genes by overlap"
- GENES_OVERLAPPED_BY_VARIANT = "genes overlapped by variant"
- NEAR_GENE_UPSTREAM = "near gene, upstream"
- NEAR_GENE_DOWNSTREAM = "near gene, downstream"
- ASSERTED_BUT_NOT_COMPUTED = "asserted, but not computed"
-
-
-class MeasureRelationship(BaseModel):
- """Description of a measure relationship"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Type of the measure relationship
- type: typing.Optional[MeasureRelationshipType] = None
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[MeasureRelationshipAttribute] = []
- #: Sequence locations
- sequence_locations: typing.List[SequenceLocation] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "MeasureRelationship":
- return MeasureRelationship(
- type=MeasureRelationshipType(json_data["@Type"]) if "@Type" in json_data else None,
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- MeasureRelationshipAttribute.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("Attribute", []))
- ],
- sequence_locations=[
- SequenceLocation.from_json_data(raw_sequence_location)
- for raw_sequence_location in force_list(json_data.get("SequenceLocation", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-@enum.unique
-class MeasureType(enum.Enum):
- GENE = "gene"
- VARIATION = "variation"
- INSERTION = "insertion"
- DELETION = "deletion"
- SNV = "single nucleotide variant"
- INDEL = "indel"
- DUPLICATION = "duplication"
- TANDEM_DUPLICATION = "tandem duplication"
- STRUCTURAL_VARIANT = "structural variant"
- COPY_NUMBER_GAIN = "copy number gain"
- COPY_NUMBER_LOSS = "copy number loss"
- PROTEIN_ONLY = "protein only"
- MICROSATELLITE = "microsatellite"
- FUSION = "fusion"
- INVERSION = "inversion"
- TRANSLOCATION = "translocation"
- QTL = "qtl"
- COMPLEX = "complex"
- OTHER = "other"
-
- @classmethod
- def from_the_wild(cls, value: str) -> "MeasureType":
- """Convert values "from the wild" where sometimes invalid values are used.
-
- These are converted to ``Other``.
- """
- try:
- return MeasureType(value.lower().replace("-", " "))
- except ValueError:
- return MeasureType.OTHER
-
-
-class Measure(BaseModel):
- """Description of a measures"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Type of the measure
- type: typing.Optional[MeasureType] = None
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: Canonical SPDI
- canonical_spdi: typing.Optional[str] = None
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[MeasureAttribute] = []
- #: List of allele frequencies
- allele_frequencies: typing.List[AlleleFrequency] = []
- #: Global minor allele frequency
- global_minor_allele_frequency: typing.Optional[GlobalMinorAlleleFrequency] = None
- #: Cytogenic location
- cytogenic_locations: typing.List[str] = []
- #: Sequence location
- sequence_locations: typing.List[SequenceLocation] = []
- #: Measure relationship
- measure_relationship: typing.List[MeasureRelationship] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
- #: List of sources
- source: typing.List[Source] = []
- #: Optional identifier
- id: typing.Optional[int] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Measure":
- return Measure(
- type=MeasureType.from_the_wild(json_data["@Type"]) if "@Type" in json_data else None,
- id=int(json_data["@ID"]) if "@ID" in json_data else None,
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- canonical_spdi=json_data.get("CanonicalSPDI"),
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- MeasureAttribute.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- allele_frequencies=[
- AlleleFrequency.from_json_data(raw_allele_frequency)
- for raw_allele_frequency in force_list(json_data.get("AlleleFrequency", []))
- ],
- global_minor_allele_frequency=(
- GlobalMinorAlleleFrequency.from_json_data(json_data["GlobalMinorAlleleFrequency"])
- if "GlobalMinorAlleleFrequency" in json_data
- else None
- ),
- cytogenic_locations=[
- raw_cytogenic_location
- for raw_cytogenic_location in force_list(json_data.get("CytogeneticLocation", []))
- ],
- sequence_locations=[
- SequenceLocation.from_json_data(raw_sequence_location)
- for raw_sequence_location in force_list(json_data.get("SequenceLocation", []))
- ],
- measure_relationship=[
- MeasureRelationship.from_json_data(raw_measure_relationship)
- for raw_measure_relationship in force_list(json_data.get("MeasureRelationship", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- source=[
- Source.from_json_data(raw_source)
- for raw_source in force_list(json_data.get("Source", []))
- ],
- )
-
-
-@enum.unique
-class MeasureSetType(enum.Enum):
- """Type of a measure set"""
-
- GENE = "Gene"
- VARIANT = "Variant"
- GENE_VARIANT = "gene-variant"
- OMIM_RECORD = "OMIM record"
- HAPLOTYPE = "Haplotype"
- HAPLOTYPE_SINGLE_VARIANT = "Haplotype, single variant"
- PHASE_UNKNOWN = "Phase unknown"
- DISTINCT_CHROMOSOMES = "Distinct chromosomes"
- COMPOUND_HETEROZYGOUS = "Compound heterozygous"
- DIPLOTYPE = "Diplotype"
-
-
-class MeasureSet(BaseModel):
- """A collection of ``Measure`` objects with further annotations"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Type of the measure
- type: MeasureSetType
- #: Accession of the measure
- acc: typing.Optional[str] = None
- #: Version of the measure
- version: typing.Optional[int] = None
- #: List of measures
- measures: typing.List[Measure] = []
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[MeasureSetAttribute] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
- #: Number of chromosomes
- number_of_chromosomes: typing.Optional[int] = None
- #: Optional identifier
- id: typing.Optional[int] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "MeasureSet":
- return MeasureSet(
- type=MeasureSetType(json_data["@Type"]),
- acc=json_data.get("@Acc"),
- version=int(json_data["@Version"]) if json_data.get("@Version") else None,
- measures=[
- Measure.from_json_data(raw_measure)
- for raw_measure in force_list(json_data.get("Measure", []))
- ],
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- MeasureSetAttribute.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- number_of_chromosomes=(
- int(json_data["@NumberOfChromosomes"])
- if json_data.get("@NumberOfChromosomes")
- else None
- ),
- id=int(json_data["@ID"]) if json_data.get("@ID") else None,
- )
-
-
-@enum.unique
-class GenotypeSetType(enum.Enum):
- """Type for a genotype set"""
-
- COMPOUND_HETEROZYGOTE = "CompoundHeterozygote"
- DIPLOTYPE = "Diplotype"
-
-
-class GenotypeSet(BaseModel):
- """Genotype set description (compound heterozygote or diplotype)"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Type of the genotype set
- type: GenotypeSetType
- #: List of measures
- measures: typing.List[MeasureSet] = []
- #: List of names
- names: typing.List[AnnotatedTypedValue] = []
- #: List of symbols
- symbols: typing.List[AnnotatedTypedValue] = []
- #: List of attributes
- attributes: typing.List[MeasureSetAttribute] = []
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of cross-references
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
- #: Optional identifier
- id: typing.Optional[int] = None
- #: Optional accession
- acc: typing.Optional[str] = None
- #: Optional version
- version: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "GenotypeSet":
- return GenotypeSet(
- type=GenotypeSetType(json_data["@Type"]),
- measures=[
- MeasureSet.from_json_data(raw_measure)
- for raw_measure in force_list(json_data.get("MeasureSet", []))
- ],
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- MeasureSetAttribute.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- id=int(json_data["@ID"]) if json_data.get("@ID") else None,
- acc=json_data.get("@Acc"),
- version=json_data.get("@Version"),
- )
-
-
-class ReferenceClinVarAssertion(BaseModel):
- """The reference ClinVar assertion"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Accesion of the RCV record.
- clinvar_accession: ReferenceClinVarAccession
- #: Status of the record.
- record_status: RecordStatus
- #: Clinical significance summary of RCV record.
- clinical_significance: ClinicalSignificanceRCV
- #: The assertion RCV type.
- assertion: AssertionType
- #: Represents the public identifier a source may have for this record.
- external_ids: typing.List[Xref] = []
- #: Attributes of the RCV record
- attributes: typing.List[ReferenceClinVarAssertionAttribute] = []
- #: Observations.
- observed_in: typing.List[ObservationSet] = []
- #: Measurement information, mutually exlusive with ``genotypes``.
- measures: typing.Optional[MeasureSet] = None
- #: Genotyping information, mutually exlusive with ``measures``.
- genotypes: typing.Optional[GenotypeSet] = None
- #: List of traits
- traits: typing.Optional[TraitSet] = None
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of comments
- comments: typing.List[Comment] = []
- #: Date created
- date_created: typing.Optional[datetime.date] = None
- #: Date last updated
- date_last_updated: typing.Optional[datetime.date] = None
- #: Submission date
- submission_date: typing.Optional[datetime.date] = None
- #: Optional identifier
- id: typing.Optional[int] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ReferenceClinVarAssertion":
- return ReferenceClinVarAssertion(
- clinvar_accession=ReferenceClinVarAccession.from_json_data(
- json_data["ClinVarAccession"]
- ),
- record_status=RecordStatus(json_data["RecordStatus"]),
- clinical_significance=ClinicalSignificanceRCV.from_json_data(
- json_data["ClinicalSignificance"]
- ),
- assertion=AssertionType(json_data["Assertion"]["@Type"]),
- external_ids=[
- Xref.from_json_data(raw_external_id)
- for raw_external_id in force_list(json_data.get("ExternalID", []))
- ],
- attributes=[
- ReferenceClinVarAssertionAttribute.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("Attribute", []))
- ],
- observed_in=[
- ObservationSet.from_json_data(raw_observations)
- for raw_observations in force_list(json_data.get("ObservedIn", []))
- ],
- measures=(
- MeasureSet.from_json_data(json_data["MeasureSet"])
- if json_data.get("MeasureSet")
- else None
- ),
- genotypes=(
- GenotypeSet.from_json_data(json_data["GenotypeSet"])
- if json_data.get("GenotypeSet")
- else None
- ),
- traits=(
- TraitSet.from_json_data(json_data["TraitSet"]) if "TraitSet" in json_data else None
- ),
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- date_created=(
- parse_datetime(json_data["@DateCreated"]).date()
- if json_data.get("@DateCreated")
- else None
- ),
- date_last_updated=(
- parse_datetime(json_data["@DateLastUpdated"]).date()
- if json_data.get("@DateLastUpdated")
- else None
- ),
- submission_date=(
- parse_datetime(json_data["@SubmissionDate"]).date()
- if json_data.get("@SubmissionDate")
- else None
- ),
- id=int(json_data["@ID"]) if json_data.get("@ID") else None,
- )
-
-
-class ClinVarSubmissionId(BaseModel):
- """Corresponds to ``ClinVarSubmissionID`` in XML file"""
-
- model_config = ConfigDict(frozen=True)
-
- #: Of primary use to submitters, to facilitate identification of records corresponding to
- #: their submissions. If not provided by a submitter, NCBI generates. If provided by
- #: submitter, that is represented in localKeyIsSubmitted.
- local_key: str
- #: Name of the submitter
- submitter: typing.Optional[str] = None
- #: Title of the submission
- title: typing.Optional[str] = None
- #: Assembly used in submission
- submitted_assembly: typing.Optional[str] = None
- #: Submission date
- submitter_date: typing.Optional[datetime.date] = None
- #: Whether the local key was submitted (True) or has ben set by NCBI (False)
- local_key_is_submitted: typing.Optional[bool] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinVarSubmissionId":
- return ClinVarSubmissionId(
- local_key=json_data["@localKey"],
- submitter=json_data.get("@submitter"),
- title=json_data.get("@title"),
- submitted_assembly=json_data.get("@submittedAssembly"),
- submitter_date=(
- parse_datetime(json_data["@submitterDate"] or "").date()
- if json_data.get("@submitterDate")
- else None
- ),
- local_key_is_submitted=(
- json_data.get("localKeyIsSubmitted") == "1"
- if json_data.get("localKeyIsSubmitted")
- else None
- ),
- )
-
-
-@enum.unique
-class SubmitterType(enum.Enum):
- """Enumeration with ``Submitter.type``"""
-
- PRIMARY = "primary"
- SECONDARY = "secondary"
- BEHALF = "behalf"
-
-
-class Submitter(BaseModel):
- """A structure to support reportng the name of a submitter, its org_id, and whether primary
- or secondary or behalf.
-
- Corresponds to ``SubmitterType`` in XML file.
- """
-
- model_config = ConfigDict(frozen=True)
-
- #: The type of the submitter
- type: SubmitterType
- #: The name of the submitter
- submitter_name: typing.Optional[str] = None
- #: The ID of the submitting organisation
- org_id: typing.Optional[int] = None
- #: The submitter category
- category: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "Submitter":
- return cls(
- type=SubmitterType(json_data["@Type"]),
- submitter_name=json_data.get("@SubmitterName"),
- org_id=int(json_data["@OrgID"]) if "@OrgID" in json_data else None,
- category=json_data.get("@Category"),
- )
-
-
-@enum.unique
-class ClinVarAssertionAccessionType(enum.Enum):
- """ClinVar assertion accession type"""
-
- RCV = "RCV"
- SCV = "SCV"
-
-
-class ClinVarAssertionAccession(BaseModel):
- """Accession number for a ClinVar record in a ``ClinVarAssertion``"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The accession
- acc: str
- #: The version
- version: int
- #: The accession type
- type: ClinVarAssertionAccessionType
- #: The date that the latest update to the submitted record became public in ClinVar.
- date_updated: typing.Optional[datetime.date] = None
- #: DateCreated is the date when the record first became public in ClinVar.
- date_created: typing.Optional[datetime.date] = None
- #: The ID of the submitting organisation
- org_id: typing.Optional[str] = None
- #: The abbreviation of the submitting organisation
- org_abbreviation: typing.Optional[str] = None
- #: The type of the organisation
- org_type: typing.Optional[str] = None
- #: The category of the organisation.
- org_category: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinVarAssertionAccession":
- return ClinVarAssertionAccession(
- acc=json_data["@Acc"],
- version=int(json_data["@Version"]),
- type=ClinVarAssertionAccessionType(json_data["@Type"]),
- date_updated=(
- parse_datetime(json_data["@DateUpdated"] or "").date()
- if json_data.get("@DateUpdated")
- else None
- ),
- date_created=(
- parse_datetime(json_data["@DateCreated"] or "").date()
- if json_data.get("@DateCreated")
- else None
- ),
- org_id=json_data.get("@OrgID"),
- org_abbreviation=json_data.get("@OrgAbbreviation"),
- org_type=json_data.get("@OrgType"),
- org_category=json_data.get("@OrganizationCategory"),
- )
-
-
-class RecordHistory(BaseModel):
- """A structure to support reporting of an accession, its version, the date its status
- changed, and text describing that change.
- """
-
- model_config = ConfigDict(frozen=True)
-
- #: The accession
- accession: str
- #: The version
- version: int
- #: The date the status changed
- date_changed: datetime.date
- #: Comment text
- comment: typing.Optional[str] = None
- #: Attribute @VaritionID is only populated for VCV, where @Accession is like VCV000000009
- variation_id: typing.Optional[int] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "RecordHistory":
- return cls(
- accession=json_data["@Accession"],
- version=int(json_data["@Version"]),
- date_changed=parse_datetime(json_data["@DateChanged"]).date(),
- comment=json_data.get("@Comment"),
- variation_id=int(json_data["@VariationID"]) if json_data.get("@VariationID") else None,
- )
-
-
-@enum.unique
-class ClinVarAssertionAttributeType(enum.Enum):
- MODE_OF_INHERITANCE = "ModeOfInheritance"
- PENETRANCE = "Penetrance"
- AGE_OF_ONSET = "AgeOfOnset"
- SEVERITY = "Severity"
- CLINICAL_SIGNIFICANCE_HISTORY = "ClinicalSignificanceHistory"
- SEVERITY_DESCRIPTION = "SeverityDescription"
- ASSERTION_METHOD = "AssertionMethod"
-
-
-class ClinVarAssertionAttribute(BaseModel):
- model_config = ConfigDict(frozen=True)
-
- type: ClinVarAssertionAttributeType
- value: str
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinVarAssertionAttribute":
- return cls(
- type=ClinVarAssertionAttributeType(json_data["@Type"]),
- value=json_data["#text"],
- )
-
-
-class ClinVarAssertionAttributeSet(BaseModel):
- """AttributeSet is a package to represent a unit of information, the source(s) of that unit,
- identifiers representing that unit, and comments.
- """
-
- model_config = ConfigDict(frozen=True)
-
- #: Specification of the attribute set type.
- attribute: ClinVarAssertionAttribute
- #: List of citations
- citations: typing.List[Citation] = []
- #: List of Xrefs
- xrefs: typing.List[Xref] = []
- #: List of comments
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinVarAssertionAttributeSet":
- return cls(
- attribute=ClinVarAssertionAttribute.from_json_data(json_data["Attribute"]),
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-class ClinAsserTraitSetTypeAttribute(BaseModel):
- model_config = ConfigDict(frozen=True)
-
- value: str
- type: str
- citations: typing.List[Citation] = []
- xrefs: typing.List[Xref] = []
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinAsserTraitSetTypeAttribute":
- return cls(
- value=json_data["#text"],
- type=json_data["@Type"],
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- xrefs=[
- Xref.from_json_data(raw_xref) for raw_xref in force_list(json_data.get("XRef", []))
- ],
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-@enum.unique
-class ClinVarAssertionTraitSetType(enum.Enum):
- DISEASE = "Disease"
- DRUG_RESPONSE = "DrugResponse"
- FINDING = "Finding"
- PHENOTYPE_INSTRUCITON = "PhenotypeInstruction"
- TRAIT_CHOICE = "TraitChoice"
-
-
-class ClinVarAssertionTraitSet(BaseModel):
- model_config = ConfigDict(frozen=True)
-
- type: ClinVarAssertionTraitSetType
- date_last_evaluated: typing.Optional[datetime.date] = None
- traits: typing.List[ClinVarAssertionTrait] = []
- names: typing.List[AnnotatedTypedValue] = []
- symbols: typing.List[AnnotatedTypedValue] = []
- attributes: typing.List[ClinAsserTraitSetTypeAttribute] = []
- id: typing.Optional[int] = None
- multiple_condition_explanation: typing.Optional[str] = None
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinVarAssertionTraitSet":
- return cls(
- type=ClinVarAssertionTraitSetType(json_data["@Type"]),
- date_last_evaluated=(
- parse_datetime(json_data["@DateLastEvaluated"]).date()
- if json_data.get("@DateLastEvaluated")
- else None
- ),
- traits=[
- ClinVarAssertionTrait.from_json_data(raw_trait)
- for raw_trait in force_list(json_data.get("Trait", []))
- ],
- names=[
- AnnotatedTypedValue.from_json_data(raw_name)
- for raw_name in force_list(json_data.get("Name", []))
- ],
- symbols=[
- AnnotatedTypedValue.from_json_data(raw_symbol)
- for raw_symbol in force_list(json_data.get("Symbol", []))
- ],
- attributes=[
- ClinAsserTraitSetTypeAttribute.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- id=int(json_data["@ID"]) if json_data.get("@ID") else None,
- multiple_condition_explanation=json_data.get("MultipleConditionExplanation"),
- )
-
-
-class ClinVarAssertion(BaseModel):
- """The ClinVarAssertion is the package of data as received from the submitter. During
- integration with other submissions, the content may have been mapped to controlled values.
-
- Represents a ``ClinVarAssertion`` in the XML file.
- """
-
- model_config = ConfigDict(frozen=True)
-
- #: The submission's ID.
- id: int
- #: More detaield submission information.
- submission_id: ClinVarSubmissionId
- #: The ClinVar accession number.
- clinvar_accession: ClinVarAssertionAccession
- #: The assertion type.
- assertion_type: AssertionTypeSCV
- #: The record status
- record_status: RecordStatus = RecordStatus.CURRENT
- #: Optional element used only if there are multiple submitters. When there are multiple,
- #: each is listed in this element.
- additional_submitters: typing.List[Submitter] = []
- #: The list of SCV accessions this SCV record has replaced.
- replaced_list: typing.List[RecordHistory] = []
- #: The clinical significance assertion.
- clinical_significance: typing.List[ClinicalSignificanceTypeSCV] = []
- #: XrefType is used to identify data source(s) and their identifiers. Optional because
- #: not all sources have an ID specific to the assertion.
- external_ids: typing.List[Xref] = []
- #: Additional attribute sets.
- attributes: typing.List[ClinVarAssertionAttributeSet] = []
- #: Observation information.
- observed_in: typing.List[ObservationSet] = []
- #: Measurement information, mutually exlusive with ``genotype``.
- measures: typing.Optional[MeasureSet] = None
- #: Genotyping information, mutually exlusive with ``measure``.
- genotypes: typing.Optional[GenotypeSet] = None
- #: Traits associated with the disease.
- traits: typing.Optional[ClinVarAssertionTraitSet] = None
- #: Citations for the variant.
- citations: typing.List[Citation] = []
- #: An optional study name.
- study_name: typing.Optional[str] = None
- #: An optional study description.
- study_description: typing.Optional[str] = None
- #: Optional comments.
- comments: typing.List[Comment] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinVarAssertion":
- return ClinVarAssertion(
- id=int(json_data["@ID"]),
- submission_id=ClinVarSubmissionId.from_json_data(json_data["ClinVarSubmissionID"]),
- clinvar_accession=ClinVarAssertionAccession.from_json_data(
- json_data["ClinVarAccession"]
- ),
- assertion_type=AssertionTypeSCV(json_data["Assertion"]["@Type"]),
- additional_submitters=[
- Submitter.from_json_data(raw_submitter)
- for raw_submitter in force_list(
- json_data.get("AdditionalSubmitters", {}).get("SubmitterDescription", [])
- )
- ],
- replaced_list=[
- RecordHistory.from_json_data(raw_replaced)
- for raw_replaced in force_list(
- json_data.get("ReplacedList", {}).get("Replaced", [])
- )
- ],
- clinical_significance=[
- ClinicalSignificanceTypeSCV.from_json_data(raw_clinical_significance)
- for raw_clinical_significance in force_list(
- json_data.get("ClinicalSignificance", [])
- )
- ],
- external_ids=[
- Xref.from_json_data(raw_xref)
- for raw_xref in force_list(json_data.get("ExternalID", []))
- ],
- attributes=[
- ClinVarAssertionAttributeSet.from_json_data(raw_attribute)
- for raw_attribute in force_list(json_data.get("AttributeSet", []))
- ],
- observed_in=[
- ObservationSet.from_json_data(raw_observations)
- for raw_observations in force_list(json_data.get("ObservedIn", []))
- ],
- measures=(
- MeasureSet.from_json_data(json_data["MeasureSet"])
- if json_data.get("MeasureSet")
- else None
- ),
- genotypes=(
- GenotypeSet.from_json_data(json_data["GenotypeSet"])
- if json_data.get("GenotypeSet")
- else None
- ),
- traits=(
- ClinVarAssertionTraitSet.from_json_data(json_data["TraitSet"])
- if "TraitSet" in json_data
- else None
- ),
- citations=[
- Citation.from_json_data(raw_citation)
- for raw_citation in force_list(json_data.get("Citation", []))
- ],
- study_name=json_data.get("StudyName"),
- study_description=json_data.get("StudyDescription"),
- comments=[
- Comment.from_json_data(raw_comment)
- for raw_comment in force_list(json_data.get("Comment", []))
- ],
- )
-
-
-class ClinVarSet(BaseModel):
- """A ```` in the ClinVar public XML file"""
-
- model_config = ConfigDict(frozen=True)
-
- #: The reference clinvar assertion as used in RCV records
- reference_clinvar_assertion: ReferenceClinVarAssertion
- #: The set's record status
- record_status: RecordStatus = RecordStatus.CURRENT
- #: The identifiers that this record replaces
- replaces: typing.List[str] = []
- #: An optional title for the submission
- title: typing.Optional[str] = None
- #: The clinvar assertion
- clinvar_assertions: typing.List[ClinVarAssertion] = []
-
- @classmethod
- def from_json_data(cls, json_data: dict) -> "ClinVarSet":
- raw_clinvar_assertions = force_list(json_data["ClinVarAssertion"])
-
- result = ClinVarSet(
- record_status=RecordStatus(json_data["RecordStatus"]),
- title=json_data.get("Title"),
- replaces=force_list(json_data.get("Replaces", [])),
- reference_clinvar_assertion=ReferenceClinVarAssertion.from_json_data(
- json_data["ReferenceClinVarAssertion"]
- ),
- clinvar_assertions=[
- ClinVarAssertion.from_json_data(raw_cva) for raw_cva in raw_clinvar_assertions
- ],
- )
- return result
diff --git a/clinvar_data/pbs/class_by_freq_pb2.py b/clinvar_data/pbs/class_by_freq_pb2.py
index 216013b..5352a34 100644
--- a/clinvar_data/pbs/class_by_freq_pb2.py
+++ b/clinvar_data/pbs/class_by_freq_pb2.py
@@ -20,6 +20,7 @@
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "clinvar_data.pbs.class_by_freq_pb2", _globals)
if _descriptor._USE_C_DESCRIPTORS == False:
+
DESCRIPTOR._options = None
_globals["_COARSECLINICALSIGNIFICANCE"]._serialized_start = 202
_globals["_COARSECLINICALSIGNIFICANCE"]._serialized_end = 406
diff --git a/clinvar_data/pbs/clinvar_public_pb2.py b/clinvar_data/pbs/clinvar_public_pb2.py
index ce9a151..ffba121 100644
--- a/clinvar_data/pbs/clinvar_public_pb2.py
+++ b/clinvar_data/pbs/clinvar_public_pb2.py
@@ -15,56 +15,57 @@
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
- b'\n%clinvar_data/pbs/clinvar_public.proto\x12\x1f\x63linvar_data.pbs.clinvar_public\x1a\x1fgoogle/protobuf/timestamp.proto"\x8c\x01\n\x07\x43omment\x12\r\n\x05value\x18\x01 \x01(\t\x12\x18\n\x0b\x64\x61ta_source\x18\x02 \x01(\tH\x00\x88\x01\x01\x12?\n\x04type\x18\x03 \x01(\x0e\x32,.clinvar_data.pbs.clinvar_public.CommentTypeH\x01\x88\x01\x01\x42\x0e\n\x0c_data_sourceB\x07\n\x05_type"\x9d\x01\n\x04Xref\x12\n\n\x02\x64\x62\x18\x01 \x01(\t\x12\n\n\x02id\x18\x02 \x01(\t\x12\x11\n\x04type\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x10\n\x03url\x18\x04 \x01(\tH\x01\x88\x01\x01\x12<\n\x06status\x18\x05 \x01(\x0e\x32\'.clinvar_data.pbs.clinvar_public.StatusH\x02\x88\x01\x01\x42\x07\n\x05_typeB\x06\n\x04_urlB\t\n\x07_status"\xf6\x01\n\x08\x43itation\x12=\n\x03ids\x18\x01 \x03(\x0b\x32\x30.clinvar_data.pbs.clinvar_public.Citation.IdType\x12\x10\n\x03url\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rcitation_text\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x11\n\x04type\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x13\n\x06\x61\x62\x62rev\x18\x05 \x01(\tH\x03\x88\x01\x01\x1a\'\n\x06IdType\x12\r\n\x05value\x18\x01 \x01(\t\x12\x0e\n\x06source\x18\x02 \x01(\tB\x06\n\x04_urlB\x10\n\x0e_citation_textB\x07\n\x05_typeB\t\n\x07_abbrev"\x9f\x01\n\rBaseAttribute\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rinteger_value\x18\x02 \x01(\x03H\x01\x88\x01\x01\x12\x33\n\ndate_value\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02\x88\x01\x01\x42\x08\n\x06_valueB\x10\n\x0e_integer_valueB\r\n\x0b_date_value"\x91\x04\n\x18HgvsNucleotideExpression\x12\x12\n\nexpression\x18\x01 \x01(\t\x12O\n\rsequence_type\x18\x02 \x01(\x0e\x32\x33.clinvar_data.pbs.clinvar_public.NucleotideSequenceH\x00\x88\x01\x01\x12\'\n\x1asequence_accession_version\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x1f\n\x12sequence_accession\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x1d\n\x10sequence_version\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12\x13\n\x06\x63hange\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x15\n\x08\x61ssembly\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x16\n\tsubmitted\x18\x08 \x01(\tH\x06\x88\x01\x01\x12\x18\n\x0bmane_select\x18\t \x01(\x08H\x07\x88\x01\x01\x12\x1f\n\x12mane_plus_clinical\x18\n \x01(\x08H\x08\x88\x01\x01\x42\x10\n\x0e_sequence_typeB\x1d\n\x1b_sequence_accession_versionB\x15\n\x13_sequence_accessionB\x13\n\x11_sequence_versionB\t\n\x07_changeB\x0b\n\t_assemblyB\x0c\n\n_submittedB\x0e\n\x0c_mane_selectB\x15\n\x13_mane_plus_clinical"\xff\x01\n\x15HgvsProteinExpression\x12\x12\n\nexpression\x18\x01 \x01(\t\x12\'\n\x1asequence_accession_version\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x1f\n\x12sequence_accession\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x1d\n\x10sequence_version\x18\x04 \x01(\x05H\x02\x88\x01\x01\x12\x13\n\x06\x63hange\x18\x05 \x01(\tH\x03\x88\x01\x01\x42\x1d\n\x1b_sequence_accession_versionB\x15\n\x13_sequence_accessionB\x13\n\x11_sequence_versionB\t\n\x07_change"\x9d\x03\n\x0eHgvsExpression\x12]\n\x15nucleotide_expression\x18\x01 \x01(\x0b\x32\x39.clinvar_data.pbs.clinvar_public.HgvsNucleotideExpressionH\x00\x88\x01\x01\x12W\n\x12protein_expression\x18\x02 \x01(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.HgvsProteinExpressionH\x01\x88\x01\x01\x12\x45\n\x16molecular_consequences\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12\x37\n\x04type\x18\x04 \x01(\x0e\x32).clinvar_data.pbs.clinvar_public.HgvsType\x12\x15\n\x08\x61ssembly\x18\x05 \x01(\tH\x02\x88\x01\x01\x42\x18\n\x16_nucleotide_expressionB\x15\n\x13_protein_expressionB\x0b\n\t_assembly"\\\n\x08Software\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x07version\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07purpose\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\n\n\x08_versionB\n\n\x08_purpose"c\n\x12\x44\x65scriptionHistory\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12.\n\x05\x64\x61ted\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x42\x08\n\x06_dated"\xe0\x01\n\x11GenericSetElement\x12\r\n\x05value\x18\x01 \x01(\t\x12\x0c\n\x04type\x18\x02 \x01(\t\x12<\n\tcitations\x18\x03 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment"\xf1\x02\n\x13\x41ttributeSetElement\x12Q\n\tattribute\x18\x01 \x01(\x0b\x32>.clinvar_data.pbs.clinvar_public.AttributeSetElement.Attribute\x12\x34\n\x05xrefs\x18\x02 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x03 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x04 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x1aW\n\tAttribute\x12<\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12\x0c\n\x04type\x18\x02 \x01(\t"\x8e\t\n\x05Trait\x12\x41\n\x05names\x18\x01 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12\x43\n\x07symbols\x18\x02 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12H\n\nattributes\x18\x03 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12U\n\x13trait_relationships\x18\x04 \x03(\x0b\x32\x38.clinvar_data.pbs.clinvar_public.Trait.TraitRelationship\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x06 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x07 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x0f\n\x07sources\x18\x08 \x03(\t\x1a\x9a\x05\n\x11TraitRelationship\x12\x41\n\x05names\x18\x01 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12\x43\n\x07symbols\x18\x02 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12H\n\nattributes\x18\x03 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12<\n\tcitations\x18\x04 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x05 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x06 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x0f\n\x07sources\x18\x07 \x03(\t\x12K\n\x04type\x18\x08 \x01(\x0e\x32=.clinvar_data.pbs.clinvar_public.Trait.TraitRelationship.Type"\xa4\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x12\n\x0eTYPE_PHENOTYPE\x10\x01\x12\x15\n\x11TYPE_SUBPHENOTYPE\x10\x02\x12"\n\x1eTYPE_DRUG_RESPONSE_AND_DISEASE\x10\x03\x12\x1e\n\x1aTYPE_CO_OCCURING_CONDITION\x10\x04\x12\x17\n\x13TYPE_FINDING_MEMBER\x10\x05"\xf4\x03\n\nIndication\x12\x36\n\x06traits\x18\x01 \x03(\x0b\x32&.clinvar_data.pbs.clinvar_public.Trait\x12\x41\n\x05names\x18\x02 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12H\n\nattributes\x18\x03 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x06 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12>\n\x04type\x18\x07 \x01(\x0e\x32\x30.clinvar_data.pbs.clinvar_public.Indication.Type"1\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x13\n\x0fTYPE_INDICATION\x10\x01"\xf6\x07\n\x08TraitSet\x12\x36\n\x06traits\x18\x01 \x03(\x0b\x32&.clinvar_data.pbs.clinvar_public.Trait\x12\x41\n\x05names\x18\x02 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12\x43\n\x07symbols\x18\x03 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12H\n\nattributes\x18\x04 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12\x34\n\x05xrefs\x18\x05 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x06 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x07 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12<\n\x04type\x18\x08 \x01(\x0e\x32..clinvar_data.pbs.clinvar_public.TraitSet.Type\x12<\n\x13\x64\x61te_last_evaluated\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x0f\n\x02id\x18\n \x01(\x03H\x01\x88\x01\x01\x12\x34\n\'contributes_to_aggregate_classification\x18\x0b \x01(\x08H\x02\x88\x01\x01\x12$\n\x17lower_level_of_evidence\x18\x0c \x01(\x08H\x03\x88\x01\x01\x12+\n\x1emultiple_condition_explanation\x18\r \x01(\tH\x04\x88\x01\x01"\x8f\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0cTYPE_DISEASE\x10\x01\x12\x16\n\x12TYPE_DRUG_RESPONSE\x10\x02\x12\x10\n\x0cTYPE_FINDING\x10\x03\x12\x1e\n\x1aTYPE_PHENOTYPE_INSTRUCTION\x10\x04\x12\x15\n\x11TYPE_TRAIT_CHOICE\x10\x05\x42\x16\n\x14_date_last_evaluatedB\x05\n\x03_idB*\n(_contributes_to_aggregate_classificationB\x1a\n\x18_lower_level_of_evidenceB!\n\x1f_multiple_condition_explanation"\xf2\x06\n AggregatedGermlineClassification\x12U\n\rreview_status\x18\x01 \x01(\x0e\x32>.clinvar_data.pbs.clinvar_public.AggregateGermlineReviewStatus\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x42\n\x0b\x65xplanation\x18\x03 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x01\x88\x01\x01\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x06 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12L\n\x0fhistory_records\x18\x07 \x03(\x0b\x32\x33.clinvar_data.pbs.clinvar_public.DescriptionHistory\x12=\n\nconditions\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSet\x12<\n\x13\x64\x61te_last_evaluated\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02\x88\x01\x01\x12\x30\n\x0c\x64\x61te_created\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16most_recent_submission\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12!\n\x14number_of_submitters\x18\x0c \x01(\x05H\x03\x88\x01\x01\x12"\n\x15number_of_submissions\x18\r \x01(\x05H\x04\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x0e\n\x0c_explanationB\x16\n\x14_date_last_evaluatedB\x17\n\x15_number_of_submittersB\x18\n\x16_number_of_submissions"\xaa\x06\n\x1f\x41ggregatedSomaticClinicalImpact\x12\x62\n\rreview_status\x18\x01 \x01(\x0e\x32K.clinvar_data.pbs.clinvar_public.AggregateSomaticClinicalImpactReviewStatus\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x34\n\x05xrefs\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x04 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12L\n\x0fhistory_records\x18\x06 \x03(\x0b\x32\x33.clinvar_data.pbs.clinvar_public.DescriptionHistory\x12=\n\nconditions\x18\x07 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSet\x12<\n\x13\x64\x61te_last_evaluated\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x88\x01\x01\x12\x30\n\x0c\x64\x61te_created\x18\t \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16most_recent_submission\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12!\n\x14number_of_submitters\x18\x0b \x01(\x05H\x02\x88\x01\x01\x12"\n\x15number_of_submissions\x18\x0c \x01(\x05H\x03\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x16\n\x14_date_last_evaluatedB\x17\n\x15_number_of_submittersB\x18\n\x16_number_of_submissions"\xa6\x06\n$AggregatedOncogenicityClassification\x12Y\n\rreview_status\x18\x01 \x01(\x0e\x32\x42.clinvar_data.pbs.clinvar_public.AggregateOncogenicityReviewStatus\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x34\n\x05xrefs\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x04 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12L\n\x0fhistory_records\x18\x06 \x03(\x0b\x32\x33.clinvar_data.pbs.clinvar_public.DescriptionHistory\x12=\n\nconditions\x18\x07 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSet\x12<\n\x13\x64\x61te_last_evaluated\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x88\x01\x01\x12\x30\n\x0c\x64\x61te_created\x18\t \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16most_recent_submission\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12!\n\x14number_of_submitters\x18\x0b \x01(\x05H\x02\x88\x01\x01\x12"\n\x15number_of_submissions\x18\x0c \x01(\x05H\x03\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x16\n\x14_date_last_evaluatedB\x17\n\x15_number_of_submittersB\x18\n\x16_number_of_submissions"\x96\x03\n\x1a\x41ggregateClassificationSet\x12g\n\x17germline_classification\x18\x01 \x01(\x0b\x32\x41.clinvar_data.pbs.clinvar_public.AggregatedGermlineClassificationH\x00\x88\x01\x01\x12\x62\n\x18somatic_clinical_impacts\x18\x02 \x03(\x0b\x32@.clinvar_data.pbs.clinvar_public.AggregatedSomaticClinicalImpact\x12o\n\x1boncogenicity_classification\x18\x03 \x01(\x0b\x32\x45.clinvar_data.pbs.clinvar_public.AggregatedOncogenicityClassificationH\x01\x88\x01\x01\x42\x1a\n\x18_germline_classificationB\x1e\n\x1c_oncogenicity_classification"\x80\x04\n\x14\x43linicalSignificance\x12R\n\rreview_status\x18\x01 \x01(\x0e\x32\x36.clinvar_data.pbs.clinvar_public.SubmitterReviewStatusH\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x42\n\x0b\x65xplanation\x18\x03 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x02\x88\x01\x01\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x06 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12<\n\x13\x64\x61te_last_evaluated\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x03\x88\x01\x01\x42\x10\n\x0e_review_statusB\x0e\n\x0c_descriptionB\x0e\n\x0c_explanationB\x16\n\x14_date_last_evaluated"\x87\x04\n\x11\x41lleleDescription\x12\x0c\n\x04name\x18\x01 \x01(\t\x12i\n\x14relative_orientation\x18\x02 \x01(\x0e\x32\x46.clinvar_data.pbs.clinvar_public.AlleleDescription.RelativeOrientationH\x00\x88\x01\x01\x12@\n\x08zygosity\x18\x03 \x01(\x0e\x32).clinvar_data.pbs.clinvar_public.ZygosityH\x01\x88\x01\x01\x12Y\n\x15\x63linical_significance\x18\x04 \x01(\x0b\x32\x35.clinvar_data.pbs.clinvar_public.ClinicalSignificanceH\x02\x88\x01\x01"\x9b\x01\n\x13RelativeOrientation\x12$\n RELATIVE_ORIENTATION_UNSPECIFIED\x10\x00\x12\x1c\n\x18RELATIVE_ORIENTATION_CIS\x10\x01\x12\x1e\n\x1aRELATIVE_ORIENTATION_TRANS\x10\x02\x12 \n\x1cRELATIVE_ORIENTATION_UNKNOWN\x10\x03\x42\x17\n\x15_relative_orientationB\x0b\n\t_zygosityB\x18\n\x16_clinical_significance"\xdd\x01\n\rRecordHistory\x12>\n\x07\x63omment\x18\x01 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x00\x88\x01\x01\x12\x11\n\taccession\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\x05\x12\x30\n\x0c\x64\x61te_changed\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x19\n\x0cvariation_id\x18\x05 \x01(\x03H\x01\x88\x01\x01\x42\n\n\x08_commentB\x0f\n\r_variation_id"\xa0\t\n\x11\x43lassificationScv\x12M\n\rreview_status\x18\x01 \x01(\x0e\x32\x36.clinvar_data.pbs.clinvar_public.SubmitterReviewStatus\x12$\n\x17germline_classification\x18\x02 \x01(\tH\x00\x88\x01\x01\x12o\n\x18somatic_clinical_impacts\x18\x03 \x01(\x0b\x32H.clinvar_data.pbs.clinvar_public.ClassificationScv.SomaticClinicalImpactH\x01\x88\x01\x01\x12(\n\x1boncogenicity_classification\x18\x04 \x01(\tH\x02\x88\x01\x01\x12*\n\x1d\x65xplanation_of_classification\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x65\n\x15\x63lassification_scores\x18\x06 \x03(\x0b\x32\x46.clinvar_data.pbs.clinvar_public.ClassificationScv.ClassificationScore\x12\x34\n\x05xrefs\x18\x07 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\t \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12<\n\x13\x64\x61te_last_evaluated\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x04\x88\x01\x01\x1a\xa4\x02\n\x15SomaticClinicalImpact\x12\r\n\x05value\x18\x01 \x01(\t\x12+\n\x1e\x63linical_impact_assertion_type\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x32\n%clinical_impact_clinical_significance\x18\x03 \x01(\tH\x01\x88\x01\x01\x12+\n\x1e\x64rug_for_therapeutic_assertion\x18\x04 \x01(\tH\x02\x88\x01\x01\x42!\n\x1f_clinical_impact_assertion_typeB(\n&_clinical_impact_clinical_significanceB!\n\x1f_drug_for_therapeutic_assertion\x1a@\n\x13\x43lassificationScore\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x11\n\x04type\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_typeB\x1a\n\x18_germline_classificationB\x1b\n\x19_somatic_clinical_impactsB\x1e\n\x1c_oncogenicity_classificationB \n\x1e_explanation_of_classificationB\x16\n\x14_date_last_evaluated"\x88\x01\n\x14SubmitterIdentifiers\x12\x16\n\x0esubmitter_name\x18\x01 \x01(\t\x12\x0e\n\x06org_id\x18\x02 \x01(\x03\x12\x14\n\x0corg_category\x18\x03 \x01(\t\x12\x1d\n\x10org_abbreviation\x18\x04 \x01(\tH\x00\x88\x01\x01\x42\x13\n\x11_org_abbreviation"A\n\x07Species\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x18\n\x0btaxonomy_id\x18\x02 \x01(\x05H\x00\x88\x01\x01\x42\x0e\n\x0c_taxonomy_id"T\n\x13\x43lassifiedCondition\x12\r\n\x05value\x18\x01 \x01(\t\x12\x0f\n\x02\x64\x62\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x0f\n\x02id\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\x05\n\x03_dbB\x05\n\x03_id"\xd3\x01\n\x1e\x43linicalAssertionRecordHistory\x12>\n\x07\x63omment\x18\x01 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x00\x88\x01\x01\x12\x11\n\taccession\x18\x02 \x01(\t\x12\x14\n\x07version\x18\x03 \x01(\x05H\x01\x88\x01\x01\x12\x30\n\x0c\x64\x61te_changed\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\n\n\x08_commentB\n\n\x08_version"\xd6\x01\n\x15\x46unctionalConsequence\x12\x34\n\x05xrefs\x18\x01 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x02 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x03 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\r\n\x05value\x18\x04 \x01(\t"\x86\x01\n\x10GeneralCitations\x12\x34\n\x05xrefs\x18\x01 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x02 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation"\xcc\x01\n\x0c\x43ooccurrence\x12@\n\x08zygosity\x18\x01 \x01(\x0e\x32).clinvar_data.pbs.clinvar_public.ZygosityH\x00\x88\x01\x01\x12O\n\x13\x61llele_descriptions\x18\x02 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.AlleleDescription\x12\x12\n\x05\x63ount\x18\x03 \x01(\x05H\x01\x88\x01\x01\x42\x0b\n\t_zygosityB\x08\n\x06_count"\xf5\x01\n\tSubmitter\x12T\n\x15submitter_identifiers\x18\x01 \x01(\x0b\x32\x35.clinvar_data.pbs.clinvar_public.SubmitterIdentifiers\x12=\n\x04type\x18\x02 \x01(\x0e\x32/.clinvar_data.pbs.clinvar_public.Submitter.Type"S\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0cTYPE_PRIMARY\x10\x01\x12\x12\n\x0eTYPE_SECONDARY\x10\x02\x12\x0f\n\x0bTYPE_BEHALF\x10\x03"\x90\x01\n\x11\x44osageSensitivity\x12\r\n\x05value\x18\x01 \x01(\t\x12\x37\n\x0elast_evaluated\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x14\n\x07\x63lingen\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\x11\n\x0f_last_evaluatedB\n\n\x08_clingen"6\n\tOtherName\x12\r\n\x05value\x18\x01 \x01(\t\x12\x11\n\x04type\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_type"b\n\nDeletedScv\x12\x11\n\taccession\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\x05\x12\x30\n\x0c\x64\x61te_deleted\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp"\xff\n\n\x08Location\x12\x1d\n\x15\x63ytogenetic_locations\x18\x01 \x03(\t\x12V\n\x12sequence_locations\x18\x02 \x03(\x0b\x32:.clinvar_data.pbs.clinvar_public.Location.SequenceLocation\x12\x16\n\x0egene_locations\x18\x03 \x03(\t\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x1a\xad\t\n\x10SequenceLocation\x12\x18\n\x0b\x66or_display\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12\x10\n\x08\x61ssembly\x18\x02 \x01(\t\x12\x38\n\x03\x63hr\x18\x03 \x01(\x0e\x32+.clinvar_data.pbs.clinvar_public.Chromosome\x12\x16\n\taccession\x18\x04 \x01(\tH\x01\x88\x01\x01\x12\x18\n\x0bouter_start\x18\x05 \x01(\rH\x02\x88\x01\x01\x12\x18\n\x0binner_start\x18\x06 \x01(\rH\x03\x88\x01\x01\x12\x12\n\x05start\x18\x07 \x01(\rH\x04\x88\x01\x01\x12\x11\n\x04stop\x18\x08 \x01(\rH\x05\x88\x01\x01\x12\x17\n\ninner_stop\x18\t \x01(\rH\x06\x88\x01\x01\x12\x17\n\nouter_stop\x18\n \x01(\rH\x07\x88\x01\x01\x12\x1a\n\rdisplay_start\x18\x0b \x01(\rH\x08\x88\x01\x01\x12\x19\n\x0c\x64isplay_stop\x18\x0c \x01(\rH\t\x88\x01\x01\x12\x13\n\x06strand\x18\r \x01(\tH\n\x88\x01\x01\x12\x1b\n\x0evariant_length\x18\x0e \x01(\rH\x0b\x88\x01\x01\x12\x1d\n\x10reference_allele\x18\x0f \x01(\tH\x0c\x88\x01\x01\x12\x1d\n\x10\x61lternate_allele\x18\x10 \x01(\tH\r\x88\x01\x01\x12\'\n\x1a\x61ssembly_accession_version\x18\x11 \x01(\tH\x0e\x88\x01\x01\x12g\n\x0f\x61ssembly_status\x18\x12 \x01(\x0e\x32I.clinvar_data.pbs.clinvar_public.Location.SequenceLocation.AssemblyStatusH\x0f\x88\x01\x01\x12\x19\n\x0cposition_vcf\x18\x13 \x01(\rH\x10\x88\x01\x01\x12!\n\x14reference_allele_vcf\x18\x14 \x01(\tH\x11\x88\x01\x01\x12!\n\x14\x61lternate_allele_vcf\x18\x15 \x01(\tH\x12\x88\x01\x01\x12\x1f\n\x12\x66or_display_length\x18\x16 \x01(\rH\x13\x88\x01\x01"l\n\x0e\x41ssemblyStatus\x12\x1f\n\x1b\x41SSEMBLY_STATUS_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x41SSEMBLY_STATUS_CURRENT\x10\x01\x12\x1c\n\x18\x41SSEMBLY_STATUS_PREVIOUS\x10\x02\x42\x0e\n\x0c_for_displayB\x0c\n\n_accessionB\x0e\n\x0c_outer_startB\x0e\n\x0c_inner_startB\x08\n\x06_startB\x07\n\x05_stopB\r\n\x0b_inner_stopB\r\n\x0b_outer_stopB\x10\n\x0e_display_startB\x0f\n\r_display_stopB\t\n\x07_strandB\x11\n\x0f_variant_lengthB\x13\n\x11_reference_alleleB\x13\n\x11_alternate_alleleB\x1d\n\x1b_assembly_accession_versionB\x12\n\x10_assembly_statusB\x0f\n\r_position_vcfB\x17\n\x15_reference_allele_vcfB\x17\n\x15_alternate_allele_vcfB\x15\n\x13_for_display_length"G\n\x03Scv\x12\x12\n\x05title\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x11\n\taccession\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\x05\x42\x08\n\x06_title"\xf4\x02\n\nFamilyData\x12\x1b\n\x0e\x66\x61mily_history\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x19\n\x0cnum_families\x18\x02 \x01(\x05H\x01\x88\x01\x01\x12&\n\x19num_families_with_variant\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12\x33\n&num_families_with_segregation_observed\x18\x04 \x01(\x05H\x03\x88\x01\x01\x12\x18\n\x0bpedigree_id\x18\x05 \x01(\tH\x04\x88\x01\x01\x12!\n\x14segregation_observed\x18\x06 \x01(\tH\x05\x88\x01\x01\x42\x11\n\x0f_family_historyB\x0f\n\r_num_familiesB\x1c\n\x1a_num_families_with_variantB)\n\'_num_families_with_segregation_observedB\x0e\n\x0c_pedigree_idB\x17\n\x15_segregation_observed"\xa0\x16\n\x06Sample\x12Z\n\x12sample_description\x18\x01 \x01(\x0b\x32\x39.clinvar_data.pbs.clinvar_public.Sample.SampleDescriptionH\x00\x88\x01\x01\x12<\n\x06origin\x18\x02 \x01(\x0e\x32\'.clinvar_data.pbs.clinvar_public.OriginH\x01\x88\x01\x01\x12\x16\n\tethnicity\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x1e\n\x11geographic_origin\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\x13\n\x06tissue\x18\x05 \x01(\tH\x04\x88\x01\x01\x12s\n somatic_variant_in_normal_tissue\x18\x06 \x01(\x0e\x32\x44.clinvar_data.pbs.clinvar_public.Sample.SomaticVariantInNormalTissueH\x05\x88\x01\x01\x12,\n\x1fsomatic_variant_allele_fraction\x18\x07 \x01(\tH\x06\x88\x01\x01\x12\x16\n\tcell_line\x18\x08 \x01(\tH\x07\x88\x01\x01\x12>\n\x07species\x18\t \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.SpeciesH\x08\x88\x01\x01\x12\x39\n\x04\x61ges\x18\n \x03(\x0b\x32+.clinvar_data.pbs.clinvar_public.Sample.Age\x12\x13\n\x06strain\x18\x0b \x01(\tH\t\x88\x01\x01\x12T\n\x0f\x61\x66\x66\x65\x63ted_status\x18\x0c \x01(\x0e\x32\x36.clinvar_data.pbs.clinvar_public.Sample.AffectedStatusH\n\x88\x01\x01\x12\x19\n\x0cnumer_tested\x18\r \x01(\x05H\x0b\x88\x01\x01\x12\x19\n\x0cnumber_males\x18\x0e \x01(\x05H\x0c\x88\x01\x01\x12\x1b\n\x0enumber_females\x18\x0f \x01(\x05H\r\x88\x01\x01\x12\x1e\n\x11number_chr_tested\x18\x10 \x01(\x05H\x0e\x88\x01\x01\x12\x43\n\x06gender\x18\x11 \x01(\x0e\x32..clinvar_data.pbs.clinvar_public.Sample.GenderH\x0f\x88\x01\x01\x12\x45\n\x0b\x66\x61mily_data\x18\x12 \x01(\x0b\x32+.clinvar_data.pbs.clinvar_public.FamilyDataH\x10\x88\x01\x01\x12\x14\n\x07proband\x18\x13 \x01(\tH\x11\x88\x01\x01\x12\x44\n\nindication\x18\x14 \x01(\x0b\x32+.clinvar_data.pbs.clinvar_public.IndicationH\x12\x88\x01\x01\x12<\n\tcitations\x18\x15 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x16 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x17 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12L\n\x0bsource_type\x18\x18 \x01(\x0e\x32\x32.clinvar_data.pbs.clinvar_public.Sample.SourceTypeH\x13\x88\x01\x01\x1a\xb6\x01\n\x11SampleDescription\x12\x42\n\x0b\x64\x65scription\x18\x01 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x00\x88\x01\x01\x12@\n\x08\x63itation\x18\x02 \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.CitationH\x01\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x0b\n\t_citation\x1a\x92\x01\n\x03\x41ge\x12\r\n\x05value\x18\x01 \x01(\x05\x12=\n\x04unit\x18\x02 \x01(\x0e\x32/.clinvar_data.pbs.clinvar_public.Sample.AgeUnit\x12=\n\x04type\x18\x03 \x01(\x0e\x32/.clinvar_data.pbs.clinvar_public.Sample.AgeType"\xdc\x01\n\x1cSomaticVariantInNormalTissue\x12\x30\n,SOMATIC_VARIANT_IN_NORMAL_TISSUE_UNSPECIFIED\x10\x00\x12,\n(SOMATIC_VARIANT_IN_NORMAL_TISSUE_PRESENT\x10\x01\x12+\n\'SOMATIC_VARIANT_IN_NORMAL_TISSUE_ABSENT\x10\x02\x12/\n+SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED\x10\x03"\xb0\x01\n\x07\x41geUnit\x12\x18\n\x14\x41GE_UNIT_UNSPECIFIED\x10\x00\x12\x11\n\rAGE_UNIT_DAYS\x10\x01\x12\x12\n\x0e\x41GE_UNIT_WEEKS\x10\x02\x12\x13\n\x0f\x41GE_UNIT_MONTHS\x10\x03\x12\x12\n\x0e\x41GE_UNIT_YEARS\x10\x04\x12\x1c\n\x18\x41GE_UNIT_WEEKS_GESTATION\x10\x05\x12\x1d\n\x19\x41GE_UNIT_MONTHS_GESTATION\x10\x06"d\n\x07\x41geType\x12\x18\n\x14\x41GE_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10\x41GE_TYPE_MINIMUM\x10\x01\x12\x14\n\x10\x41GE_TYPE_MAXIMUM\x10\x02\x12\x13\n\x0f\x41GE_TYPE_SINGLE\x10\x03"\xc5\x01\n\x0e\x41\x66\x66\x65\x63tedStatus\x12\x1f\n\x1b\x41\x46\x46\x45\x43TED_STATUS_UNSPECIFIED\x10\x00\x12\x17\n\x13\x41\x46\x46\x45\x43TED_STATUS_YES\x10\x01\x12\x16\n\x12\x41\x46\x46\x45\x43TED_STATUS_NO\x10\x02\x12 \n\x1c\x41\x46\x46\x45\x43TED_STATUS_NOT_PROVIDED\x10\x03\x12\x1b\n\x17\x41\x46\x46\x45\x43TED_STATUS_UNKNOWN\x10\x04\x12"\n\x1e\x41\x46\x46\x45\x43TED_STATUS_NOT_APPLICABLE\x10\x05"V\n\x06Gender\x12\x16\n\x12GENDER_UNSPECIFIED\x10\x00\x12\x0f\n\x0bGENDER_MALE\x10\x01\x12\x11\n\rGENDER_FEMALE\x10\x02\x12\x10\n\x0cGENDER_MIXED\x10\x03"k\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12#\n\x1fSOURCE_TYPE_SUBMITTER_GENERATED\x10\x01\x12\x1b\n\x17SOURCE_TYPE_DATA_MINING\x10\x02\x42\x15\n\x13_sample_descriptionB\t\n\x07_originB\x0c\n\n_ethnicityB\x14\n\x12_geographic_originB\t\n\x07_tissueB#\n!_somatic_variant_in_normal_tissueB"\n _somatic_variant_allele_fractionB\x0c\n\n_cell_lineB\n\n\x08_speciesB\t\n\x07_strainB\x12\n\x10_affected_statusB\x0f\n\r_numer_testedB\x0f\n\r_number_malesB\x11\n\x0f_number_femalesB\x14\n\x12_number_chr_testedB\t\n\x07_genderB\x0e\n\x0c_family_dataB\n\n\x08_probandB\r\n\x0b_indicationB\x0e\n\x0c_source_type"\xe9\x0f\n\x06Method\x12\x1a\n\rname_platform\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rtype_platform\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x14\n\x07purpose\x18\x03 \x01(\tH\x02\x88\x01\x01\x12L\n\x0bresult_type\x18\x04 \x01(\x0e\x32\x32.clinvar_data.pbs.clinvar_public.Method.ResultTypeH\x03\x88\x01\x01\x12\x19\n\x0cmin_reported\x18\x05 \x01(\tH\x04\x88\x01\x01\x12\x19\n\x0cmax_reported\x18\x06 \x01(\tH\x05\x88\x01\x01\x12\x1f\n\x12reference_standard\x18\x07 \x01(\tH\x06\x88\x01\x01\x12<\n\tcitations\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\t \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12\x18\n\x0b\x64\x65scription\x18\n \x01(\tH\x07\x88\x01\x01\x12;\n\x08software\x18\x0b \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Software\x12L\n\x0bsource_type\x18\x0c \x01(\x0e\x32\x32.clinvar_data.pbs.clinvar_public.Method.SourceTypeH\x08\x88\x01\x01\x12\x44\n\x0bmethod_type\x18\r \x01(\x0e\x32/.clinvar_data.pbs.clinvar_public.MethodListType\x12R\n\x11method_attributes\x18\x0e \x03(\x0b\x32\x37.clinvar_data.pbs.clinvar_public.Method.MethodAttribute\x12Y\n\x15obs_method_attributes\x18\x0f \x03(\x0b\x32:.clinvar_data.pbs.clinvar_public.Method.ObsMethodAttribute\x1a\xb0\x03\n\x0fMethodAttribute\x12<\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12S\n\x04type\x18\x02 \x01(\x0e\x32\x45.clinvar_data.pbs.clinvar_public.Method.MethodAttribute.AttributeType"\x89\x02\n\rAttributeType\x12\x1e\n\x1a\x41TTRIBUTE_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x41TTRIBUTE_TYPE_LOCATION\x10\x01\x12\'\n#ATTRIBUTE_TYPE_CONTROLS_APPROPRIATE\x10\x02\x12%\n!ATTRIBUTE_TYPE_METHOD_APPROPRIATE\x10\x03\x12\x1c\n\x18\x41TTRIBUTE_TYPE_TEST_NAME\x10\x04\x12)\n%ATTRIBUTE_TYPE_STRUCT_VAR_METHOD_TYPE\x10\x05\x12"\n\x1e\x41TTRIBUTE_TYPE_PROBE_ACCESSION\x10\x06\x1a\xe0\x02\n\x12ObsMethodAttribute\x12<\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12V\n\x04type\x18\x02 \x01(\x0e\x32H.clinvar_data.pbs.clinvar_public.Method.ObsMethodAttribute.AttributeType\x12:\n\x08\x63omments\x18\x03 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment"x\n\rAttributeType\x12\x1e\n\x1a\x41TTRIBUTE_TYPE_UNSPECIFIED\x10\x00\x12 \n\x1c\x41TTRIBUTE_TYPE_METHOD_RESULT\x10\x01\x12%\n!ATTRIBUTE_TYPE_TESTING_LABORATORY\x10\x02"\xa3\x01\n\nResultType\x12\x1b\n\x17RESULT_TYPE_UNSPECIFIED\x10\x00\x12%\n!RESULT_TYPE_NUMBER_OF_OCCURRENCES\x10\x01\x12\x17\n\x13RESULT_TYPE_P_VALUE\x10\x02\x12\x1a\n\x16RESULT_TYPE_ODDS_RATIO\x10\x03\x12\x1c\n\x18RESULT_TYPE_VARIANT_CALL\x10\x04"\x88\x01\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12#\n\x1fSOURCE_TYPE_SUBMITTER_GENERATED\x10\x01\x12\x1b\n\x17SOURCE_TYPE_DATA_MINING\x10\x02\x12\x1b\n\x17SOURCE_TYPE_DATA_REVIEW\x10\x03\x42\x10\n\x0e_name_platformB\x10\n\x0e_type_platformB\n\n\x08_purposeB\x0e\n\x0c_result_typeB\x0f\n\r_min_reportedB\x0f\n\r_max_reportedB\x15\n\x13_reference_standardB\x0e\n\x0c_descriptionB\x0e\n\x0c_source_type"\xe1\n\n\tAlleleScv\x12>\n\x05genes\x18\x01 \x03(\x0b\x32/.clinvar_data.pbs.clinvar_public.AlleleScv.Gene\x12\x39\n\x05names\x18\x02 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12\x19\n\x0cvariant_type\x18\x03 \x01(\tH\x00\x88\x01\x01\x12@\n\x08location\x18\x04 \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.LocationH\x01\x88\x01\x01\x12?\n\x0bother_names\x18\x05 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12\x17\n\x0fprotein_changes\x18\x06 \x03(\t\x12\x34\n\x05xrefs\x18\x07 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\t \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12_\n\x16molecular_consequences\x18\n \x03(\x0b\x32?.clinvar_data.pbs.clinvar_public.AlleleScv.MolecularConsequence\x12W\n\x17\x66unctional_consequences\x18\x0b \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12H\n\nattributes\x18\x0c \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12\x16\n\tallele_id\x18\r \x01(\x03H\x02\x88\x01\x01\x1a\xfc\x01\n\x04Gene\x12\x11\n\x04name\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x12\n\nproperties\x18\x02 \x03(\t\x12\x34\n\x05xrefs\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12\x13\n\x06symbol\x18\x04 \x01(\tH\x01\x88\x01\x01\x12X\n\x11relationship_type\x18\x05 \x01(\x0e\x32\x38.clinvar_data.pbs.clinvar_public.GeneVariantRelationshipH\x02\x88\x01\x01\x42\x07\n\x05_nameB\t\n\x07_symbolB\x14\n\x12_relationship_type\x1a\xaa\x02\n\x14MolecularConsequence\x12\x34\n\x05xrefs\x18\x01 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x02 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x03 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x0f\n\x02rs\x18\x04 \x01(\x03H\x00\x88\x01\x01\x12\x11\n\x04hgvs\x18\x05 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05so_id\x18\x06 \x01(\tH\x02\x88\x01\x01\x12\x10\n\x08\x66unction\x18\x07 \x01(\tB\x05\n\x03_rsB\x07\n\x05_hgvsB\x08\n\x06_so_idB\x0f\n\r_variant_typeB\x0b\n\t_locationB\x0c\n\n_allele_id"\x8d\x06\n\x0cHaplotypeScv\x12\x42\n\x0esimple_alleles\x18\x01 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.AlleleScv\x12\x11\n\x04name\x18\x02 \x01(\tH\x00\x88\x01\x01\x12?\n\x0bother_names\x18\x03 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12X\n\x0e\x63lassification\x18\x04 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x01\x88\x01\x01\x12W\n\x17\x66unctional_consequences\x18\x05 \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12H\n\nattributes\x18\x06 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12<\n\tcitations\x18\x07 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x08 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\t \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x19\n\x0cvariation_id\x18\n \x01(\x03H\x02\x88\x01\x01\x12\x1d\n\x10number_of_copies\x18\x0b \x01(\x05H\x03\x88\x01\x01\x12"\n\x15number_of_chromosomes\x18\x0c \x01(\x05H\x04\x88\x01\x01\x42\x07\n\x05_nameB\x11\n\x0f_classificationB\x0f\n\r_variation_idB\x13\n\x11_number_of_copiesB\x18\n\x16_number_of_chromosomes"\xb8\x05\n\x0bGenotypeScv\x12\x42\n\x0esimple_alleles\x18\x01 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.AlleleScv\x12\x41\n\nhaplotypes\x18\x02 \x03(\x0b\x32-.clinvar_data.pbs.clinvar_public.HaplotypeScv\x12\x11\n\x04name\x18\x03 \x01(\tH\x00\x88\x01\x01\x12?\n\x0bother_names\x18\x04 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12\x46\n\x0evariation_type\x18\x05 \x01(\x0e\x32..clinvar_data.pbs.clinvar_public.VariationType\x12W\n\x17\x66unctional_consequences\x18\x06 \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12H\n\nattributes\x18\x07 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12<\n\tcitations\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\t \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\n \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x19\n\x0cvariation_id\x18\x0b \x01(\x03H\x01\x88\x01\x01\x42\x07\n\x05_nameB\x0f\n\r_variation_id"\xe4\x10\n\nObservedIn\x12\x37\n\x06sample\x18\x01 \x01(\x0b\x32\'.clinvar_data.pbs.clinvar_public.Sample\x12O\n\robserved_data\x18\x02 \x03(\x0b\x32\x38.clinvar_data.pbs.clinvar_public.ObservedIn.ObservedData\x12H\n\x11\x63ooccurrence_sets\x18\x03 \x03(\x0b\x32-.clinvar_data.pbs.clinvar_public.Cooccurrence\x12\x41\n\ttrait_set\x18\x04 \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSetH\x00\x88\x01\x01\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x06 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x07 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x1a\xf3\x07\n\x15ObservedDataAttribute\x12<\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12T\n\x04type\x18\x02 \x01(\x0e\x32\x46.clinvar_data.pbs.clinvar_public.ObservedIn.ObservedDataAttribute.Type"\xc5\x06\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10TYPE_DESCRIPTION\x10\x01\x12\x18\n\x14TYPE_VARIANT_ALLELES\x10\x02\x12\x1e\n\x1aTYPE_SUBJECTS_WITH_VARIANT\x10\x03\x12\x32\n.TYPE_SUBJECTS_WITH_DIFFERENT_CAUSATIVE_VARIANT\x10\x04\x12\x1c\n\x18TYPE_VARIANT_CHROMOSOMES\x10\x05\x12!\n\x1dTYPE_INDEPENDENT_OBSERVATIONS\x10\x06\x12\x1c\n\x18TYPE_SINGLE_HETEROZYGOUS\x10\x07\x12\x1e\n\x1aTYPE_COMPOUND_HETEROZYGOUS\x10\x08\x12\x13\n\x0fTYPE_HOMOZYGOUS\x10\t\x12\x13\n\x0fTYPE_HEMIZYGOUS\x10\n\x12\x16\n\x12TYPE_NUMBER_MOSAIC\x10\x0b\x12\x1d\n\x19TYPE_OBSERVED_UNSPECIFIED\x10\x0c\x12\x19\n\x15TYPE_ALLELE_FREQUENCY\x10\r\x12\x1a\n\x16TYPE_SECONDARY_FINDING\x10\x0e\x12$\n TYPE_GENOTYPE_AND_MOI_CONSISTENT\x10\x0f\x12\x38\n4TYPE_UNAFFECTED_FAMILY_MEMBER_WITH_CAUSATIVE_VARIANT\x10\x10\x12*\n&TYPE_HET_PARENT_TRANSMIT_NORMAL_ALLELE\x10\x11\x12\x1f\n\x1bTYPE_COSEGREGATING_FAMILIES\x10\x12\x12\x1c\n\x18TYPE_INFORMATIVE_MEIOSES\x10\x13\x12\x18\n\x14TYPE_SAMPLE_LOCAL_ID\x10\x14\x12\x1a\n\x16TYPE_SAMPLE_VARIANT_ID\x10\x15\x12\x17\n\x13TYPE_FAMILY_HISTORY\x10\x16\x12"\n\x1eTYPE_NUM_FAMILIES_WITH_VARIANT\x10\x17\x12/\n+TYPE_NUM_FAMILIES_WITH_SEGREGATION_OBSERVED\x10\x18\x12\x1d\n\x19TYPE_SEGREGATION_OBSERVED\x10\x19\x1a\xe4\x02\n\x0cObservedData\x12U\n\nattributes\x18\x01 \x03(\x0b\x32\x41.clinvar_data.pbs.clinvar_public.ObservedIn.ObservedDataAttribute\x12@\n\x08severity\x18\x02 \x01(\x0e\x32).clinvar_data.pbs.clinvar_public.SeverityH\x00\x88\x01\x01\x12<\n\tcitations\x18\x03 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentB\x0b\n\t_severity"\xa3\x02\n\nMethodType\x12\x1b\n\x17METHOD_TYPE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bMETHOD_TYPE_LITERATURE_ONLY\x10\x01\x12$\n METHOD_TYPE_REFERENCE_POPULATION\x10\x02\x12\x1c\n\x18METHOD_TYPE_CASE_CONTROL\x10\x03\x12 \n\x1cMETHOD_TYPE_CLINICAL_TESTING\x10\x04\x12\x18\n\x14METHOD_TYPE_IN_VITRO\x10\x05\x12\x17\n\x13METHOD_TYPE_IN_VIVO\x10\x06\x12$\n METHOD_TYPE_INFERRED_FROM_SOURCE\x10\x07\x12\x18\n\x14METHOD_TYPE_RESEARCH\x10\x08\x42\x0c\n\n_trait_set"\xd5\x15\n\x11\x43linicalAssertion\x12\x65\n\x15\x63linvar_submission_id\x18\x01 \x01(\x0b\x32\x46.clinvar_data.pbs.clinvar_public.ClinicalAssertion.ClinvarSubmissionId\x12^\n\x11\x63linvar_accession\x18\x02 \x01(\x0b\x32\x43.clinvar_data.pbs.clinvar_public.ClinicalAssertion.ClinvarAccession\x12I\n\x15\x61\x64\x64itional_submitters\x18\x03 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.Submitter\x12V\n\rrecord_status\x18\x04 \x01(\x0e\x32?.clinvar_data.pbs.clinvar_public.ClinicalAssertion.RecordStatus\x12\x10\n\x08replaces\x18\x05 \x03(\t\x12R\n\treplaceds\x18\x06 \x03(\x0b\x32?.clinvar_data.pbs.clinvar_public.ClinicalAssertionRecordHistory\x12K\n\x0f\x63lassifications\x18\x07 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.ClassificationScv\x12=\n\tassertion\x18\x08 \x01(\x0e\x32*.clinvar_data.pbs.clinvar_public.Assertion\x12Z\n\nattributes\x18\t \x03(\x0b\x32\x46.clinvar_data.pbs.clinvar_public.ClinicalAssertion.AttributeSetElement\x12\x41\n\x0cobserved_ins\x18\n \x03(\x0b\x32+.clinvar_data.pbs.clinvar_public.ObservedIn\x12\x46\n\rsimple_allele\x18\x0b \x01(\x0b\x32*.clinvar_data.pbs.clinvar_public.AlleleScvH\x00\x88\x01\x01\x12\x45\n\thaplotype\x18\x0c \x01(\x0b\x32-.clinvar_data.pbs.clinvar_public.HaplotypeScvH\x01\x88\x01\x01\x12\x43\n\x08genotype\x18\r \x01(\x0b\x32,.clinvar_data.pbs.clinvar_public.GenotypeScvH\x02\x88\x01\x01\x12<\n\ttrait_set\x18\x0e \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSet\x12<\n\tcitations\x18\x0f \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x17\n\nstudy_name\x18\x10 \x01(\tH\x03\x88\x01\x01\x12\x1e\n\x11study_description\x18\x11 \x01(\tH\x04\x88\x01\x01\x12:\n\x08\x63omments\x18\x12 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x18\n\x10submission_names\x18\x13 \x03(\t\x12\x30\n\x0c\x64\x61te_created\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x35\n\x11\x64\x61te_last_updated\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0fsubmission_date\x18\x16 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x02id\x18\x17 \x01(\x04H\x05\x88\x01\x01\x12$\n\x17\x66\x64\x61_recognized_database\x18\x18 \x01(\x08H\x06\x88\x01\x01\x1a\xbe\x01\n\x13\x43linvarSubmissionId\x12\x11\n\tlocal_key\x18\x01 \x01(\t\x12\x12\n\x05title\x18\x02 \x01(\tH\x00\x88\x01\x01\x12#\n\x16local_key_is_submitted\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x1f\n\x12submitted_assembly\x18\x04 \x01(\tH\x02\x88\x01\x01\x42\x08\n\x06_titleB\x19\n\x17_local_key_is_submittedB\x15\n\x13_submitted_assembly\x1a\xba\x04\n\x13\x41ttributeSetElement\x12\x41\n\tattribute\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12Y\n\x04type\x18\x02 \x01(\x0e\x32K.clinvar_data.pbs.clinvar_public.ClinicalAssertion.AttributeSetElement.Type\x12\x34\n\x05xrefs\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x04 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment"\xd4\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18TYPE_MODE_OF_INHERITANCE\x10\x01\x12\x13\n\x0fTYPE_PENETRANCE\x10\x02\x12\x15\n\x11TYPE_AGE_OF_ONSET\x10\x03\x12\x11\n\rTYPE_SEVERITY\x10\x04\x12\x1f\n\x1bTYPE_CLASSIFICATION_HISTORY\x10\x05\x12\x1d\n\x19TYPE_SEVERITY_DESCRIPTION\x10\x06\x12\x19\n\x15TYPE_ASSERTION_METHOD\x10\x07\x1a\x9c\x02\n\x10\x43linvarAccession\x12\x11\n\taccession\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\x05\x12T\n\x15submitter_identifiers\x18\x03 \x01(\x0b\x32\x35.clinvar_data.pbs.clinvar_public.SubmitterIdentifiers\x12\x35\n\x0c\x64\x61te_updated\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x35\n\x0c\x64\x61te_created\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x88\x01\x01\x42\x0f\n\r_date_updatedB\x0f\n\r_date_created"\x7f\n\x0cRecordStatus\x12\x1d\n\x19RECORD_STATUS_UNSPECIFIED\x10\x00\x12\x19\n\x15RECORD_STATUS_CURRENT\x10\x01\x12\x1a\n\x16RECORD_STATUS_REPLACED\x10\x02\x12\x19\n\x15RECORD_STATUS_REMOVED\x10\x03\x42\x10\n\x0e_simple_alleleB\x0c\n\n_haplotypeB\x0b\n\t_genotypeB\r\n\x0b_study_nameB\x14\n\x12_study_descriptionB\x05\n\x03_idB\x1a\n\x18_fda_recognized_database"\xf0\r\n\x06\x41llele\x12;\n\x05genes\x18\x01 \x03(\x0b\x32,.clinvar_data.pbs.clinvar_public.Allele.Gene\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x1b\n\x0e\x63\x61nonical_spdi\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x15\n\rvariant_types\x18\x04 \x03(\t\x12<\n\tlocations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Location\x12?\n\x0bother_names\x18\x06 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12\x17\n\x0fprotein_changes\x18\x07 \x03(\t\x12I\n\x10hgvs_expressions\x18\x08 \x03(\x0b\x32/.clinvar_data.pbs.clinvar_public.HgvsExpression\x12Y\n\x0f\x63lassifications\x18\t \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x01\x88\x01\x01\x12\x34\n\x05xrefs\x18\n \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x0b \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12W\n\x17\x66unctional_consequences\x18\x0c \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12S\n\x12\x61llele_frequencies\x18\r \x03(\x0b\x32\x37.clinvar_data.pbs.clinvar_public.Allele.AlleleFrequency\x12n\n\x1dglobal_minor_allele_frequency\x18\x0e \x01(\x0b\x32\x42.clinvar_data.pbs.clinvar_public.Allele.GlobalMinorAlleleFrequencyH\x02\x88\x01\x01\x12\x11\n\tallele_id\x18\x0f \x01(\x03\x12\x14\n\x0cvariation_id\x18\x10 \x01(\x03\x1a\xa3\x04\n\x04Gene\x12<\n\tlocations\x18\x01 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Location\x12\r\n\x05omims\x18\x02 \x03(\x04\x12S\n\x12haploinsufficiency\x18\x03 \x01(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.DosageSensitivityH\x00\x88\x01\x01\x12R\n\x11triplosensitivity\x18\x04 \x01(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.DosageSensitivityH\x01\x88\x01\x01\x12\x12\n\nproperties\x18\x05 \x03(\t\x12\x13\n\x06symbol\x18\x06 \x01(\tH\x02\x88\x01\x01\x12\x11\n\tfull_name\x18\x07 \x01(\t\x12\x0f\n\x07gene_id\x18\x08 \x01(\x03\x12\x14\n\x07hgnc_id\x18\t \x01(\tH\x03\x88\x01\x01\x12\x0e\n\x06source\x18\n \x01(\t\x12X\n\x11relationship_type\x18\x0b \x01(\x0e\x32\x38.clinvar_data.pbs.clinvar_public.GeneVariantRelationshipH\x04\x88\x01\x01\x42\x15\n\x13_haploinsufficiencyB\x14\n\x12_triplosensitivityB\t\n\x07_symbolB\n\n\x08_hgnc_idB\x14\n\x12_relationship_type\x1aJ\n\x0f\x41lleleFrequency\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0e\n\x06source\x18\x02 \x01(\t\x12\x10\n\x03url\x18\x03 \x01(\tH\x00\x88\x01\x01\x42\x06\n\x04_url\x1a\x81\x01\n\x1aGlobalMinorAlleleFrequency\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0e\n\x06source\x18\x02 \x01(\t\x12\x19\n\x0cminor_allele\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x10\n\x03url\x18\x04 \x01(\tH\x01\x88\x01\x01\x42\x0f\n\r_minor_alleleB\x06\n\x04_url\x1a\x31\n\x04Name\x12\r\n\x05value\x18\x01 \x01(\t\x12\x11\n\x04type\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_typeB\x11\n\x0f_canonical_spdiB\x12\n\x10_classificationsB \n\x1e_global_minor_allele_frequency"\xf5\x05\n\tHaplotype\x12?\n\x0esimple_alleles\x18\x01 \x03(\x0b\x32\'.clinvar_data.pbs.clinvar_public.Allele\x12\x0c\n\x04name\x18\x02 \x01(\t\x12K\n\x0evariation_type\x18\x03 \x01(\x0e\x32\x33.clinvar_data.pbs.clinvar_public.HaploVariationType\x12?\n\x0bother_names\x18\x04 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12I\n\x10hgvs_expressions\x18\x05 \x03(\x0b\x32/.clinvar_data.pbs.clinvar_public.HgvsExpression\x12Y\n\x0f\x63lassifications\x18\x06 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x00\x88\x01\x01\x12W\n\x17\x66unctional_consequences\x18\x07 \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12\x34\n\x05xrefs\x18\x08 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\t \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x14\n\x0cvariation_id\x18\n \x01(\x03\x12\x1d\n\x10number_of_copies\x18\x0b \x01(\x05H\x01\x88\x01\x01\x12"\n\x15number_of_chromosomes\x18\x0c \x01(\x05H\x02\x88\x01\x01\x42\x12\n\x10_classificationsB\x13\n\x11_number_of_copiesB\x18\n\x16_number_of_chromosomes"\x87\x05\n\x0eIncludedRecord\x12\x43\n\rsimple_allele\x18\x01 \x01(\x0b\x32\'.clinvar_data.pbs.clinvar_public.AlleleH\x00\x88\x01\x01\x12\x42\n\thaplotype\x18\x02 \x01(\x0b\x32*.clinvar_data.pbs.clinvar_public.HaplotypeH\x01\x88\x01\x01\x12Y\n\x0f\x63lassifications\x18\x03 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x02\x88\x01\x01\x12G\n\x19submitted_classifications\x18\x04 \x03(\x0b\x32$.clinvar_data.pbs.clinvar_public.Scv\x12\x62\n\x15\x63lassified_variations\x18\x05 \x03(\x0b\x32\x43.clinvar_data.pbs.clinvar_public.IncludedRecord.ClassifiedVariation\x12L\n\x11general_citations\x18\x06 \x03(\x0b\x32\x31.clinvar_data.pbs.clinvar_public.GeneralCitations\x1a\x62\n\x13\x43lassifiedVariation\x12\x14\n\x0cvariation_id\x18\x01 \x01(\x03\x12\x16\n\taccession\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x0f\n\x07version\x18\x03 \x01(\x05\x42\x0c\n\n_accessionB\x10\n\x0e_simple_alleleB\x0c\n\n_haplotypeB\x12\n\x10_classifications"\xdb\x06\n\x08Genotype\x12?\n\x0esimple_alleles\x18\x01 \x03(\x0b\x32\'.clinvar_data.pbs.clinvar_public.Allele\x12>\n\nhaplotypes\x18\x02 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.Haplotype\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x46\n\x0evariation_type\x18\x04 \x01(\x0e\x32..clinvar_data.pbs.clinvar_public.VariationType\x12?\n\x0bother_names\x18\x05 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12I\n\x10hgvs_expressions\x18\x06 \x03(\x0b\x32/.clinvar_data.pbs.clinvar_public.HgvsExpression\x12W\n\x17\x66unctional_consequences\x18\x07 \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12Y\n\x0f\x63lassifications\x18\x08 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x00\x88\x01\x01\x12\x34\n\x05xrefs\x18\t \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\n \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x0b \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12H\n\nattributes\x18\x0c \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12\x19\n\x0cvariation_id\x18\r \x01(\x03H\x01\x88\x01\x01\x42\x12\n\x10_classificationsB\x0f\n\r_variation_id"\xa2\x12\n\x0cRcvAccession\x12m\n\x19\x63lassified_condition_list\x18\x01 \x01(\x0b\x32\x45.clinvar_data.pbs.clinvar_public.RcvAccession.ClassifiedConditionListH\x00\x88\x01\x01\x12]\n\x13rcv_classifications\x18\x02 \x01(\x0b\x32@.clinvar_data.pbs.clinvar_public.RcvAccession.RcvClassifications\x12\x41\n\treplaceds\x18\x03 \x03(\x0b\x32..clinvar_data.pbs.clinvar_public.RecordHistory\x12\x12\n\x05title\x18\x04 \x01(\tH\x01\x88\x01\x01\x12\x11\n\taccession\x18\x05 \x01(\t\x12\x0f\n\x07version\x18\x06 \x01(\x05\x1a\x9a\x01\n\x17\x43lassifiedConditionList\x12S\n\x15\x63lassified_conditions\x18\x01 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.ClassifiedCondition\x12\x19\n\x0ctrait_set_id\x18\x02 \x01(\x03H\x00\x88\x01\x01\x42\x0f\n\r_trait_set_id\x1a\xff\x02\n\x16GermlineClassification\x12U\n\rreview_status\x18\x01 \x01(\x0e\x32>.clinvar_data.pbs.clinvar_public.AggregateGermlineReviewStatus\x12\x65\n\x0b\x64\x65scription\x18\x02 \x01(\x0b\x32P.clinvar_data.pbs.clinvar_public.RcvAccession.GermlineClassification.Description\x1a\xa6\x01\n\x0b\x44\x65scription\x12\r\n\x05value\x18\x01 \x01(\t\x12<\n\x13\x64\x61te_last_evaluated\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x1d\n\x10submission_count\x18\x03 \x01(\rH\x01\x88\x01\x01\x42\x16\n\x14_date_last_evaluatedB\x13\n\x11_submission_count\x1a\xb9\x04\n\x15SomaticClinicalImpact\x12\x62\n\rreview_status\x18\x01 \x01(\x0e\x32K.clinvar_data.pbs.clinvar_public.AggregateSomaticClinicalImpactReviewStatus\x12\x65\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32O.clinvar_data.pbs.clinvar_public.RcvAccession.SomaticClinicalImpact.Description\x1a\xd4\x02\n\x0b\x44\x65scription\x12\r\n\x05value\x18\x01 \x01(\t\x12+\n\x1e\x63linical_impact_assertion_type\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x32\n%clinical_impact_clinical_significance\x18\x03 \x01(\tH\x01\x88\x01\x01\x12<\n\x13\x64\x61te_last_evaluated\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02\x88\x01\x01\x12\x1d\n\x10submission_count\x18\x05 \x01(\rH\x03\x88\x01\x01\x42!\n\x1f_clinical_impact_assertion_typeB(\n&_clinical_impact_clinical_significanceB\x16\n\x14_date_last_evaluatedB\x13\n\x11_submission_count\x1a\x8b\x03\n\x1aOncogenicityClassification\x12Y\n\rreview_status\x18\x01 \x01(\x0e\x32\x42.clinvar_data.pbs.clinvar_public.AggregateOncogenicityReviewStatus\x12i\n\x0b\x64\x65scription\x18\x02 \x01(\x0b\x32T.clinvar_data.pbs.clinvar_public.RcvAccession.OncogenicityClassification.Description\x1a\xa6\x01\n\x0b\x44\x65scription\x12\r\n\x05value\x18\x01 \x01(\t\x12<\n\x13\x64\x61te_last_evaluated\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x1d\n\x10submission_count\x18\x03 \x01(\rH\x01\x88\x01\x01\x42\x16\n\x14_date_last_evaluatedB\x13\n\x11_submission_count\x1a\xb7\x03\n\x12RcvClassifications\x12j\n\x17germline_classification\x18\x01 \x01(\x0b\x32\x44.clinvar_data.pbs.clinvar_public.RcvAccession.GermlineClassificationH\x00\x88\x01\x01\x12i\n\x17somatic_clinical_impact\x18\x02 \x01(\x0b\x32\x43.clinvar_data.pbs.clinvar_public.RcvAccession.SomaticClinicalImpactH\x01\x88\x01\x01\x12r\n\x1boncogenicity_classification\x18\x03 \x01(\x0b\x32H.clinvar_data.pbs.clinvar_public.RcvAccession.OncogenicityClassificationH\x02\x88\x01\x01\x42\x1a\n\x18_germline_classificationB\x1a\n\x18_somatic_clinical_impactB\x1e\n\x1c_oncogenicity_classificationB\x1c\n\x1a_classified_condition_listB\x08\n\x06_title"\xcf\n\n\x10\x43lassifiedRecord\x12\x43\n\rsimple_allele\x18\x01 \x01(\x0b\x32\'.clinvar_data.pbs.clinvar_public.AlleleH\x00\x88\x01\x01\x12\x42\n\thaplotype\x18\x02 \x01(\x0b\x32*.clinvar_data.pbs.clinvar_public.HaplotypeH\x01\x88\x01\x01\x12@\n\x08genotype\x18\x03 \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.GenotypeH\x02\x88\x01\x01\x12K\n\x08rcv_list\x18\x04 \x01(\x0b\x32\x39.clinvar_data.pbs.clinvar_public.ClassifiedRecord.RcvList\x12T\n\x0f\x63lassifications\x18\x05 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSet\x12O\n\x13\x63linical_assertions\x18\x06 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.ClinicalAssertion\x12V\n\x0etrait_mappings\x18\x07 \x03(\x0b\x32>.clinvar_data.pbs.clinvar_public.ClassifiedRecord.TraitMapping\x12\x41\n\x0c\x64\x65leted_scvs\x18\x08 \x03(\x0b\x32+.clinvar_data.pbs.clinvar_public.DeletedScv\x12L\n\x11general_citations\x18\t \x03(\x0b\x32\x31.clinvar_data.pbs.clinvar_public.GeneralCitations\x1a\xc8\x01\n\x07RcvList\x12\x45\n\x0ercv_accessions\x18\x01 \x03(\x0b\x32-.clinvar_data.pbs.clinvar_public.RcvAccession\x12\x1d\n\x10submission_count\x18\x02 \x01(\x05H\x00\x88\x01\x01\x12%\n\x18independent_observations\x18\x03 \x01(\x05H\x01\x88\x01\x01\x42\x13\n\x11_submission_countB\x1b\n\x19_independent_observations\x1a\xbf\x02\n\x0cTraitMapping\x12V\n\x07medgens\x18\x01 \x03(\x0b\x32\x45.clinvar_data.pbs.clinvar_public.ClassifiedRecord.TraitMapping.Medgen\x12\x1d\n\x15\x63linical_assertion_id\x18\x02 \x01(\x03\x12\x12\n\ntrait_type\x18\x03 \x01(\t\x12S\n\x0cmapping_type\x18\x04 \x01(\x0e\x32=.clinvar_data.pbs.clinvar_public.ClassifiedRecord.MappingType\x12\x15\n\rmapping_value\x18\x05 \x01(\t\x12\x13\n\x0bmapping_ref\x18\x06 \x01(\t\x1a#\n\x06Medgen\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0b\n\x03\x63ui\x18\x02 \x01(\t"Y\n\x0bMappingType\x12\x1c\n\x18MAPPING_TYPE_UNSPECIFIED\x10\x00\x12\x15\n\x11MAPPING_TYPE_NAME\x10\x01\x12\x15\n\x11MAPPING_TYPE_XREF\x10\x02\x42\x10\n\x0e_simple_alleleB\x0c\n\n_haplotypeB\x0b\n\t_genotype"\xd1\t\n\x10VariationArchive\x12\x14\n\x0cvariation_id\x18\x01 \x01(\x03\x12\x16\n\x0evariation_name\x18\x02 \x01(\t\x12\x16\n\x0evariation_type\x18\x03 \x01(\t\x12\x30\n\x0c\x64\x61te_created\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x35\n\x11\x64\x61te_last_updated\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16most_recent_submission\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x11\n\taccession\x18\x07 \x01(\t\x12\x0f\n\x07version\x18\x08 \x01(\x05\x12\x1c\n\x14number_of_submitters\x18\t \x01(\x05\x12\x1d\n\x15number_of_submissions\x18\n \x01(\x05\x12Q\n\x0brecord_type\x18\x0b \x01(\x0e\x32<.clinvar_data.pbs.clinvar_public.VariationArchive.RecordType\x12U\n\rrecord_status\x18\x0c \x01(\x0e\x32>.clinvar_data.pbs.clinvar_public.VariationArchive.RecordStatus\x12\x43\n\x0breplaced_by\x18\r \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.RecordHistory\x12\x41\n\treplaceds\x18\x0e \x03(\x0b\x32..clinvar_data.pbs.clinvar_public.RecordHistory\x12\x39\n\x07\x63omment\x18\x0f \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x39\n\x07species\x18\x10 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.Species\x12Q\n\x11\x63lassified_record\x18\x11 \x01(\x0b\x32\x31.clinvar_data.pbs.clinvar_public.ClassifiedRecordH\x00\x88\x01\x01\x12M\n\x0fincluded_record\x18\x12 \x01(\x0b\x32/.clinvar_data.pbs.clinvar_public.IncludedRecordH\x01\x88\x01\x01"_\n\nRecordType\x12\x1b\n\x17RECORD_TYPE_UNSPECIFIED\x10\x00\x12\x18\n\x14RECORD_TYPE_INCLUDED\x10\x01\x12\x1a\n\x16RECORD_TYPE_CLASSIFIED\x10\x02"\x9b\x01\n\x0cRecordStatus\x12\x1d\n\x19RECORD_STATUS_UNSPECIFIED\x10\x00\x12\x19\n\x15RECORD_STATUS_CURRENT\x10\x01\x12\x1a\n\x16RECORD_STATUS_PREVIOUS\x10\x02\x12\x1a\n\x16RECORD_STATUS_REPLACED\x10\x03\x12\x19\n\x15RECORD_STATUS_DELETED\x10\x04\x42\x14\n\x12_classified_recordB\x12\n\x10_included_record"\x9a\x01\n\x17\x43linvarVariationRelease\x12\x30\n\x0crelease_date\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12M\n\x12variation_archives\x18\x02 \x03(\x0b\x32\x31.clinvar_data.pbs.clinvar_public.VariationArchive*\xc2\x03\n\x17GeneVariantRelationship\x12)\n%GENE_VARIANT_RELATIONSHIP_UNSPECIFIED\x10\x00\x12\x31\n-GENE_VARIANT_RELATIONSHIP_VARIANT_WITHIN_GENE\x10\x01\x12\x38\n4GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT\x10\x02\x12\x30\n,GENE_VARIANT_RELATIONSHIP_NEAR_GENE_UPSTREAM\x10\x03\x12\x32\n.GENE_VARIANT_RELATIONSHIP_NEAR_GENE_DOWNSTREAM\x10\x04\x12\x37\n3GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED\x10\x05\x12>\n:GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP\x10\x06\x12\x30\n,GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE\x10\x07*c\n\x08Severity\x12\x18\n\x14SEVERITY_UNSPECIFIED\x10\x00\x12\x11\n\rSEVERITY_MILD\x10\x01\x12\x15\n\x11SEVERITY_MODERATE\x10\x02\x12\x13\n\x0fSEVERITY_SEVERE\x10\x03*\xf6\x01\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x12\n\x0eSTATUS_CURRENT\x10\x01\x12 \n\x1cSTATUS_COMPLETED_AND_RETIRED\x10\x02\x12\x11\n\rSTATUS_DELETE\x10\x03\x12\x19\n\x15STATUS_IN_DEVELOPMENT\x10\x04\x12\x17\n\x13STATUS_RECLASSIFIED\x10\x05\x12\x11\n\rSTATUS_REJECT\x10\x06\x12\x14\n\x10STATUS_SECONDARY\x10\x07\x12\x15\n\x11STATUS_SUPPRESSED\x10\x08\x12\x17\n\x13STATUS_UNDER_REVIEW\x10\t*\x97\x06\n\x15SubmitterReviewStatus\x12\'\n#SUBMITTER_REVIEW_STATUS_UNSPECIFIED\x10\x00\x12\x36\n2SUBMITTER_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED\x10\x01\x12:\n6SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED\x10\x02\x12>\n:SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER\x10\x03\x12\x34\n0SUBMITTER_REVIEW_STATUS_REVIEWED_BY_EXPERT_PANEL\x10\x04\x12.\n*SUBMITTER_REVIEW_STATUS_PRACTICE_GUIDELINE\x10\x05\x12.\n*SUBMITTER_REVIEW_STATUS_FLAGGED_SUBMISSION\x10\x06\x12N\nJSUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS\x10\x07\x12I\nESUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_CONFLICTING_CLASSIFICATIONS\x10\x08\x12:\n6SUBMITTER_REVIEW_STATUS_CLASSIFIED_BY_SINGLE_SUBMITTER\x10\t\x12<\n8SUBMITTER_REVIEW_STATUS_REVIEWED_BY_PROFESSIONAL_SOCIETY\x10\n\x12\x37\n3SUBMITTER_REVIEW_STATUS_NOT_CLASSIFIED_BY_SUBMITTER\x10\x0b\x12=\n9SUBMITTER_REVIEW_STATUS_CLASSIFIED_BY_MULTIPLE_SUBMITTERS\x10\x0c*\xb7\x01\n\x08Zygosity\x12\x18\n\x14ZYGOSITY_UNSPECIFIED\x10\x00\x12\x17\n\x13ZYGOSITY_HOMOZYGOTE\x10\x01\x12 \n\x1cZYGOSITY_SINGLE_HETEROZYGOTE\x10\x02\x12"\n\x1eZYGOSITY_COMPOUND_HETEROZYGOTE\x10\x03\x12\x17\n\x13ZYGOSITY_HEMIZYGOTE\x10\x04\x12\x19\n\x15ZYGOSITY_NOT_PROVIDED\x10\x05*\x99\x02\n\tAssertion\x12\x19\n\x15\x41SSERTION_UNSPECIFIED\x10\x00\x12"\n\x1e\x41SSERTION_VARIATION_TO_DISEASE\x10\x01\x12+\n\'ASSERTION_VARIATION_TO_INCLUDED_DISEASE\x10\x02\x12\x33\n/ASSERTION_VARIATION_IN_MODIFIER_GENE_TO_DISEASE\x10\x03\x12!\n\x1d\x41SSERTION_CONFERS_SENSITIVITY\x10\x04\x12 \n\x1c\x41SSERTION_CONFERS_RESISTANCE\x10\x05\x12&\n"ASSERTION_VARIANT_TO_NAMED_PROTEIN\x10\x06*\xe4\x05\n\x1d\x41ggregateGermlineReviewStatus\x12\x30\n,AGGREGATE_GERMLINE_REVIEW_STATUS_UNSPECIFIED\x10\x00\x12?\n;AGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED\x10\x01\x12\x43\n?AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED\x10\x02\x12G\nCAGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER\x10\x03\x12W\nSAGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS\x10\x04\x12R\nNAGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_CONFLICTING_CLASSIFICATIONS\x10\x05\x12=\n9AGGREGATE_GERMLINE_REVIEW_STATUS_REVIEWED_BY_EXPERT_PANEL\x10\x06\x12\x37\n3AGGREGATE_GERMLINE_REVIEW_STATUS_PRACTICE_GUIDELINE\x10\x07\x12N\nJAGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATIONS_FROM_UNFLAGGED_RECORDS\x10\x08\x12M\nIAGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT\x10\t*\x97\x06\n*AggregateSomaticClinicalImpactReviewStatus\x12?\n;AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_UNSPECIFIED\x10\x00\x12N\nJAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED\x10\x01\x12R\nNAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED\x10\x02\x12V\nRAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER\x10\x03\x12Y\nUAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS\x10\x04\x12L\nHAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_REVIEWED_BY_EXPERT_PANEL\x10\x05\x12\x46\nBAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_PRACTICE_GUIDELINE\x10\x06\x12]\nYAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATIONS_FROM_UNFLAGGED_RECORDS\x10\x07\x12\\\nXAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT\x10\x08*\x90\x06\n!AggregateOncogenicityReviewStatus\x12\x34\n0AGGREGATE_ONCOGENICITY_REVIEW_STATUS_UNSPECIFIED\x10\x00\x12\x43\n?AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED\x10\x01\x12G\nCAGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED\x10\x02\x12K\nGAGGREGATE_ONCOGENICITY_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER\x10\x03\x12[\nWAGGREGATE_ONCOGENICITY_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS\x10\x04\x12V\nRAGGREGATE_ONCOGENICITY_REVIEW_STATUS_CRITERIA_PROVIDED_CONFLICTING_CLASSIFICATIONS\x10\x05\x12\x41\n=AGGREGATE_ONCOGENICITY_REVIEW_STATUS_REVIEWED_BY_EXPERT_PANEL\x10\x06\x12;\n7AGGREGATE_ONCOGENICITY_REVIEW_STATUS_PRACTICE_GUIDELINE\x10\x07\x12R\nNAGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_CLASSIFICATIONS_FROM_UNFLAGGED_RECORDS\x10\x08\x12Q\nMAGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT\x10\t*\xf2\x02\n\x06Origin\x12\x16\n\x12ORIGIN_UNSPECIFIED\x10\x00\x12\x13\n\x0fORIGIN_GERMLINE\x10\x01\x12\x12\n\x0eORIGIN_SOMATIC\x10\x02\x12\x12\n\x0eORIGIN_DE_NOVO\x10\x03\x12\x17\n\x13ORIGIN_NOT_PROVIDED\x10\x04\x12\x14\n\x10ORIGIN_INHERITED\x10\x05\x12\x13\n\x0fORIGIN_MATERNAL\x10\x06\x12\x13\n\x0fORIGIN_PATERNAL\x10\x07\x12\x16\n\x12ORIGIN_UNIPARENTAL\x10\x08\x12\x15\n\x11ORIGIN_BIPARENTAL\x10\t\x12\x17\n\x13ORIGIN_NOT_REPORTED\x10\n\x12\x1e\n\x1aORIGIN_TESTED_INCONCLUSIVE\x10\x0b\x12\x12\n\x0eORIGIN_UNKNOWN\x10\x0c\x12\x19\n\x15ORIGIN_NOT_APPLICABLE\x10\r\x12#\n\x1fORIGIN_EXPERIMENTALLY_GENERATED\x10\x0e*\x9f\x04\n\nChromosome\x12\x1a\n\x16\x43HROMOSOME_UNSPECIFIED\x10\x00\x12\x10\n\x0c\x43HROMOSOME_1\x10\x01\x12\x10\n\x0c\x43HROMOSOME_2\x10\x02\x12\x10\n\x0c\x43HROMOSOME_3\x10\x03\x12\x10\n\x0c\x43HROMOSOME_4\x10\x04\x12\x10\n\x0c\x43HROMOSOME_5\x10\x05\x12\x10\n\x0c\x43HROMOSOME_6\x10\x06\x12\x10\n\x0c\x43HROMOSOME_7\x10\x07\x12\x10\n\x0c\x43HROMOSOME_8\x10\x08\x12\x10\n\x0c\x43HROMOSOME_9\x10\t\x12\x11\n\rCHROMOSOME_10\x10\n\x12\x11\n\rCHROMOSOME_11\x10\x0b\x12\x11\n\rCHROMOSOME_12\x10\x0c\x12\x11\n\rCHROMOSOME_13\x10\r\x12\x11\n\rCHROMOSOME_14\x10\x0e\x12\x11\n\rCHROMOSOME_15\x10\x0f\x12\x11\n\rCHROMOSOME_16\x10\x10\x12\x11\n\rCHROMOSOME_17\x10\x11\x12\x11\n\rCHROMOSOME_18\x10\x12\x12\x11\n\rCHROMOSOME_19\x10\x13\x12\x11\n\rCHROMOSOME_20\x10\x14\x12\x11\n\rCHROMOSOME_21\x10\x15\x12\x11\n\rCHROMOSOME_22\x10\x16\x12\x10\n\x0c\x43HROMOSOME_X\x10\x17\x12\x10\n\x0c\x43HROMOSOME_Y\x10\x18\x12\x11\n\rCHROMOSOME_MT\x10\x19\x12\x12\n\x0e\x43HROMOSOME_PAR\x10\x1a\x12\x11\n\rCHROMOSOME_UN\x10\x1b*\x84\x04\n\x0b\x43ommentType\x12\x1c\n\x18\x43OMMENT_TYPE_UNSPECIFIED\x10\x00\x12\x17\n\x13\x43OMMENT_TYPE_PUBLIC\x10\x01\x12!\n\x1d\x43OMMENT_TYPE_CONVERTED_BY_NCB\x10\x02\x12&\n"COMMENT_TYPE_MISSING_FROM_ASSEMBLY\x10\x03\x12\x31\n-COMMENT_TYPE_GENOMIC_LOCATION_NOT_ESTABLISHED\x10\x04\x12;\n7COMMENT_TYPE_LOCATION_ON_GENOME_AND_PRODUCT_NOT_ALIGNED\x10\x05\x12!\n\x1d\x43OMMENT_TYPE_DELETION_COMMENT\x10\x06\x12\x1e\n\x1a\x43OMMENT_TYPE_MERGE_COMMENT\x10\x07\x12\x34\n0COMMENT_TYPE_ASSEMBLY_SPECIFIC_ALLELE_DEFINITION\x10\x08\x12\x38\n4COMMENT_TYPE_ALIGNMENT_GAP_MAKES_APPEAR_INCONSISTENT\x10\t\x12.\n*COMMENT_TYPE_EXPLANATION_OF_CLASSIFICATION\x10\n\x12 \n\x1c\x43OMMENT_TYPE_FLAGGED_COMMENT\x10\x0b*\x98\x02\n\x12NucleotideSequence\x12#\n\x1fNUCLEOTIDE_SEQUENCE_UNSPECIFIED\x10\x00\x12)\n%NUCLEOTIDE_SEQUENCE_GENOMIC_TOP_LEVEL\x10\x01\x12,\n(NUCLEOTIDE_SEQUENCE_GENOMIC_REF_SEQ_GENE\x10\x02\x12\x1f\n\x1bNUCLEOTIDE_SEQUENCE_GENOMIC\x10\x03\x12\x1e\n\x1aNUCLEOTIDE_SEQUENCE_CODING\x10\x04\x12"\n\x1eNUCLEOTIDE_SEQUENCE_NON_CODING\x10\x05\x12\x1f\n\x1bNUCLEOTIDE_SEQUENCE_PROTEIN\x10\x06*Q\n\x0fProteinSequence\x12 \n\x1cPROTEIN_SEQUENCE_UNSPECIFIED\x10\x00\x12\x1c\n\x18PROTEIN_SEQUENCE_PROTEIN\x10\x01*\xef\x01\n\x10PhenotypeSetType\x12"\n\x1ePHENOTYPE_SET_TYPE_UNSPECIFIED\x10\x00\x12\x1e\n\x1aPHENOTYPE_SET_TYPE_DISEASE\x10\x01\x12$\n PHENOTYPE_SET_TYPE_DRUG_RESPONSE\x10\x02\x12\x1e\n\x1aPHENOTYPE_SET_TYPE_FINDING\x10\x03\x12,\n(PHENOTYPE_SET_TYPE_PHENOTYPE_INSTRUCTION\x10\x04\x12#\n\x1fPHENOTYPE_SET_TYPE_TRAIT_CHOICE\x10\x05*\xa0\x01\n\rVariationType\x12\x1e\n\x1aVARIATION_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18VARIATION_TYPE_DIPLOTYPE\x10\x01\x12(\n$VARIATION_TYPE_COMPOUND_HETEROZYGOTE\x10\x02\x12\'\n#VARIATION_TYPE_DISTINCT_CHROMOSOMES\x10\x03*\xa7\x01\n\x0c\x45videnceType\x12\x1d\n\x19\x45VIDENCE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15\x45VIDENCE_TYPE_GENETIC\x10\x01\x12\x1e\n\x1a\x45VIDENCE_TYPE_EXPERIMENTAL\x10\x02\x12\x1c\n\x18\x45VIDENCE_TYPE_POPULATION\x10\x03\x12\x1f\n\x1b\x45VIDENCE_TYPE_COMPUTATIONAL\x10\x04*\xc0\x03\n\x0eMethodListType\x12 \n\x1cMETHOD_LIST_TYPE_UNSPECIFIED\x10\x00\x12$\n METHOD_LIST_TYPE_LITERATURE_ONLY\x10\x01\x12)\n%METHOD_LIST_TYPE_REFERENCE_POPULATION\x10\x02\x12!\n\x1dMETHOD_LIST_TYPE_CASE_CONTROL\x10\x03\x12%\n!METHOD_LIST_TYPE_CLINICAL_TESTING\x10\x04\x12\x1d\n\x19METHOD_LIST_TYPE_IN_VITRO\x10\x05\x12\x1c\n\x18METHOD_LIST_TYPE_IN_VIVO\x10\x06\x12\x1d\n\x19METHOD_LIST_TYPE_RESEARCH\x10\x07\x12\x1d\n\x19METHOD_LIST_TYPE_CURATION\x10\x08\x12!\n\x1dMETHOD_LIST_TYPE_NOT_PROVIDED\x10\t\x12,\n(METHOD_LIST_TYPE_PROVIDER_INTERPRETATION\x10\n\x12%\n!METHOD_LIST_TYPE_PHENOTYPING_ONLY\x10\x0b*\xa4\x01\n\x08HgvsType\x12\x19\n\x15HGVS_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10HGVS_TYPE_CODING\x10\x01\x12\x15\n\x11HGVS_TYPE_GENOMIC\x10\x02\x12\x1f\n\x1bHGVS_TYPE_GENOMIC_TOP_LEVEL\x10\x03\x12\x18\n\x14HGVS_TYPE_NON_CODING\x10\x04\x12\x15\n\x11HGVS_TYPE_PROTEIN\x10\x05*\xfa\x01\n"ClinicalFeaturesAffectedStatusType\x12\x36\n2CLINICAL_FEATURES_AFFECTED_STATUS_TYPE_UNSPECIFIED\x10\x00\x12\x32\n.CLINICAL_FEATURES_AFFECTED_STATUS_TYPE_PRESENT\x10\x01\x12\x31\n-CLINICAL_FEATURES_AFFECTED_STATUS_TYPE_ABSENT\x10\x02\x12\x35\n1CLINICAL_FEATURES_AFFECTED_STATUS_TYPE_NOT_TESTED\x10\x03*\x9b\x02\n\x12HaploVariationType\x12$\n HAPLO_VARIATION_TYPE_UNSPECIFIED\x10\x00\x12"\n\x1eHAPLO_VARIATION_TYPE_HAPLOTYPE\x10\x01\x12\x31\n-HAPLO_VARIATION_TYPE_HAPLOTYPE_SINGLE_VARIANT\x10\x02\x12"\n\x1eHAPLO_VARIATION_TYPE_VARIATION\x10\x03\x12&\n"HAPLO_VARIATION_TYPE_PHASE_UNKNOWN\x10\x04\x12<\n8HAPLO_VARIATION_TYPE_HAPLOTYPE_DEFINED_BY_SINGLE_VARIANT\x10\x05\x62\x06proto3'
+ b'\n%clinvar_data/pbs/clinvar_public.proto\x12\x1f\x63linvar_data.pbs.clinvar_public\x1a\x1fgoogle/protobuf/timestamp.proto"\x8c\x01\n\x07\x43omment\x12\r\n\x05value\x18\x01 \x01(\t\x12\x18\n\x0b\x64\x61ta_source\x18\x02 \x01(\tH\x00\x88\x01\x01\x12?\n\x04type\x18\x03 \x01(\x0e\x32,.clinvar_data.pbs.clinvar_public.CommentTypeH\x01\x88\x01\x01\x42\x0e\n\x0c_data_sourceB\x07\n\x05_type"\x9d\x01\n\x04Xref\x12\n\n\x02\x64\x62\x18\x01 \x01(\t\x12\n\n\x02id\x18\x02 \x01(\t\x12\x11\n\x04type\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x10\n\x03url\x18\x04 \x01(\tH\x01\x88\x01\x01\x12<\n\x06status\x18\x05 \x01(\x0e\x32\'.clinvar_data.pbs.clinvar_public.StatusH\x02\x88\x01\x01\x42\x07\n\x05_typeB\x06\n\x04_urlB\t\n\x07_status"\xf6\x01\n\x08\x43itation\x12=\n\x03ids\x18\x01 \x03(\x0b\x32\x30.clinvar_data.pbs.clinvar_public.Citation.IdType\x12\x10\n\x03url\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rcitation_text\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x11\n\x04type\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x13\n\x06\x61\x62\x62rev\x18\x05 \x01(\tH\x03\x88\x01\x01\x1a\'\n\x06IdType\x12\r\n\x05value\x18\x01 \x01(\t\x12\x0e\n\x06source\x18\x02 \x01(\tB\x06\n\x04_urlB\x10\n\x0e_citation_textB\x07\n\x05_typeB\t\n\x07_abbrev"\x9f\x01\n\rBaseAttribute\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rinteger_value\x18\x02 \x01(\x03H\x01\x88\x01\x01\x12\x33\n\ndate_value\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02\x88\x01\x01\x42\x08\n\x06_valueB\x10\n\x0e_integer_valueB\r\n\x0b_date_value"\x91\x04\n\x18HgvsNucleotideExpression\x12\x12\n\nexpression\x18\x01 \x01(\t\x12O\n\rsequence_type\x18\x02 \x01(\x0e\x32\x33.clinvar_data.pbs.clinvar_public.NucleotideSequenceH\x00\x88\x01\x01\x12\'\n\x1asequence_accession_version\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x1f\n\x12sequence_accession\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x1d\n\x10sequence_version\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12\x13\n\x06\x63hange\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x15\n\x08\x61ssembly\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x16\n\tsubmitted\x18\x08 \x01(\tH\x06\x88\x01\x01\x12\x18\n\x0bmane_select\x18\t \x01(\x08H\x07\x88\x01\x01\x12\x1f\n\x12mane_plus_clinical\x18\n \x01(\x08H\x08\x88\x01\x01\x42\x10\n\x0e_sequence_typeB\x1d\n\x1b_sequence_accession_versionB\x15\n\x13_sequence_accessionB\x13\n\x11_sequence_versionB\t\n\x07_changeB\x0b\n\t_assemblyB\x0c\n\n_submittedB\x0e\n\x0c_mane_selectB\x15\n\x13_mane_plus_clinical"\xff\x01\n\x15HgvsProteinExpression\x12\x12\n\nexpression\x18\x01 \x01(\t\x12\'\n\x1asequence_accession_version\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x1f\n\x12sequence_accession\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x1d\n\x10sequence_version\x18\x04 \x01(\x05H\x02\x88\x01\x01\x12\x13\n\x06\x63hange\x18\x05 \x01(\tH\x03\x88\x01\x01\x42\x1d\n\x1b_sequence_accession_versionB\x15\n\x13_sequence_accessionB\x13\n\x11_sequence_versionB\t\n\x07_change"\x9d\x03\n\x0eHgvsExpression\x12]\n\x15nucleotide_expression\x18\x01 \x01(\x0b\x32\x39.clinvar_data.pbs.clinvar_public.HgvsNucleotideExpressionH\x00\x88\x01\x01\x12W\n\x12protein_expression\x18\x02 \x01(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.HgvsProteinExpressionH\x01\x88\x01\x01\x12\x45\n\x16molecular_consequences\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12\x37\n\x04type\x18\x04 \x01(\x0e\x32).clinvar_data.pbs.clinvar_public.HgvsType\x12\x15\n\x08\x61ssembly\x18\x05 \x01(\tH\x02\x88\x01\x01\x42\x18\n\x16_nucleotide_expressionB\x15\n\x13_protein_expressionB\x0b\n\t_assembly"\\\n\x08Software\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x07version\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07purpose\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\n\n\x08_versionB\n\n\x08_purpose"c\n\x12\x44\x65scriptionHistory\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12.\n\x05\x64\x61ted\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x42\x08\n\x06_dated"\xe0\x01\n\x11GenericSetElement\x12\r\n\x05value\x18\x01 \x01(\t\x12\x0c\n\x04type\x18\x02 \x01(\t\x12<\n\tcitations\x18\x03 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment"\xf1\x02\n\x13\x41ttributeSetElement\x12Q\n\tattribute\x18\x01 \x01(\x0b\x32>.clinvar_data.pbs.clinvar_public.AttributeSetElement.Attribute\x12\x34\n\x05xrefs\x18\x02 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x03 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x04 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x1aW\n\tAttribute\x12<\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12\x0c\n\x04type\x18\x02 \x01(\t"\xff\x07\n\x05Trait\x12\x41\n\x05names\x18\x01 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12\x43\n\x07symbols\x18\x02 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12H\n\nattributes\x18\x03 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12U\n\x13trait_relationships\x18\x04 \x03(\x0b\x32\x38.clinvar_data.pbs.clinvar_public.Trait.TraitRelationship\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x06 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x07 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x0f\n\x07sources\x18\x08 \x03(\t\x1a\x8b\x04\n\x11TraitRelationship\x12\x41\n\x05names\x18\x01 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12<\n\tcitations\x18\x02 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x04 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x0f\n\x07sources\x18\x05 \x03(\t\x12K\n\x04type\x18\x06 \x01(\x0e\x32=.clinvar_data.pbs.clinvar_public.Trait.TraitRelationship.Type"\xa4\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x12\n\x0eTYPE_PHENOTYPE\x10\x01\x12\x15\n\x11TYPE_SUBPHENOTYPE\x10\x02\x12"\n\x1eTYPE_DRUG_RESPONSE_AND_DISEASE\x10\x03\x12\x1e\n\x1aTYPE_CO_OCCURING_CONDITION\x10\x04\x12\x17\n\x13TYPE_FINDING_MEMBER\x10\x05"\xf4\x03\n\nIndication\x12\x36\n\x06traits\x18\x01 \x03(\x0b\x32&.clinvar_data.pbs.clinvar_public.Trait\x12\x41\n\x05names\x18\x02 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12H\n\nattributes\x18\x03 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x06 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12>\n\x04type\x18\x07 \x01(\x0e\x32\x30.clinvar_data.pbs.clinvar_public.Indication.Type"1\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x13\n\x0fTYPE_INDICATION\x10\x01"\xf6\x07\n\x08TraitSet\x12\x36\n\x06traits\x18\x01 \x03(\x0b\x32&.clinvar_data.pbs.clinvar_public.Trait\x12\x41\n\x05names\x18\x02 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12\x43\n\x07symbols\x18\x03 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.GenericSetElement\x12H\n\nattributes\x18\x04 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12\x34\n\x05xrefs\x18\x05 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x06 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x07 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12<\n\x04type\x18\x08 \x01(\x0e\x32..clinvar_data.pbs.clinvar_public.TraitSet.Type\x12<\n\x13\x64\x61te_last_evaluated\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x0f\n\x02id\x18\n \x01(\x03H\x01\x88\x01\x01\x12\x34\n\'contributes_to_aggregate_classification\x18\x0b \x01(\x08H\x02\x88\x01\x01\x12$\n\x17lower_level_of_evidence\x18\x0c \x01(\x08H\x03\x88\x01\x01\x12+\n\x1emultiple_condition_explanation\x18\r \x01(\tH\x04\x88\x01\x01"\x8f\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0cTYPE_DISEASE\x10\x01\x12\x16\n\x12TYPE_DRUG_RESPONSE\x10\x02\x12\x10\n\x0cTYPE_FINDING\x10\x03\x12\x1e\n\x1aTYPE_PHENOTYPE_INSTRUCTION\x10\x04\x12\x15\n\x11TYPE_TRAIT_CHOICE\x10\x05\x42\x16\n\x14_date_last_evaluatedB\x05\n\x03_idB*\n(_contributes_to_aggregate_classificationB\x1a\n\x18_lower_level_of_evidenceB!\n\x1f_multiple_condition_explanation"\xf2\x06\n AggregatedGermlineClassification\x12U\n\rreview_status\x18\x01 \x01(\x0e\x32>.clinvar_data.pbs.clinvar_public.AggregateGermlineReviewStatus\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x42\n\x0b\x65xplanation\x18\x03 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x01\x88\x01\x01\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x06 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12L\n\x0fhistory_records\x18\x07 \x03(\x0b\x32\x33.clinvar_data.pbs.clinvar_public.DescriptionHistory\x12=\n\nconditions\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSet\x12<\n\x13\x64\x61te_last_evaluated\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02\x88\x01\x01\x12\x30\n\x0c\x64\x61te_created\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16most_recent_submission\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12!\n\x14number_of_submitters\x18\x0c \x01(\x05H\x03\x88\x01\x01\x12"\n\x15number_of_submissions\x18\r \x01(\x05H\x04\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x0e\n\x0c_explanationB\x16\n\x14_date_last_evaluatedB\x17\n\x15_number_of_submittersB\x18\n\x16_number_of_submissions"\xaa\x06\n\x1f\x41ggregatedSomaticClinicalImpact\x12\x62\n\rreview_status\x18\x01 \x01(\x0e\x32K.clinvar_data.pbs.clinvar_public.AggregateSomaticClinicalImpactReviewStatus\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x34\n\x05xrefs\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x04 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12L\n\x0fhistory_records\x18\x06 \x03(\x0b\x32\x33.clinvar_data.pbs.clinvar_public.DescriptionHistory\x12=\n\nconditions\x18\x07 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSet\x12<\n\x13\x64\x61te_last_evaluated\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x88\x01\x01\x12\x30\n\x0c\x64\x61te_created\x18\t \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16most_recent_submission\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12!\n\x14number_of_submitters\x18\x0b \x01(\x05H\x02\x88\x01\x01\x12"\n\x15number_of_submissions\x18\x0c \x01(\x05H\x03\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x16\n\x14_date_last_evaluatedB\x17\n\x15_number_of_submittersB\x18\n\x16_number_of_submissions"\xa6\x06\n$AggregatedOncogenicityClassification\x12Y\n\rreview_status\x18\x01 \x01(\x0e\x32\x42.clinvar_data.pbs.clinvar_public.AggregateOncogenicityReviewStatus\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x34\n\x05xrefs\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x04 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12L\n\x0fhistory_records\x18\x06 \x03(\x0b\x32\x33.clinvar_data.pbs.clinvar_public.DescriptionHistory\x12=\n\nconditions\x18\x07 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSet\x12<\n\x13\x64\x61te_last_evaluated\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x88\x01\x01\x12\x30\n\x0c\x64\x61te_created\x18\t \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16most_recent_submission\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12!\n\x14number_of_submitters\x18\x0b \x01(\x05H\x02\x88\x01\x01\x12"\n\x15number_of_submissions\x18\x0c \x01(\x05H\x03\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x16\n\x14_date_last_evaluatedB\x17\n\x15_number_of_submittersB\x18\n\x16_number_of_submissions"\xb6\x03\n\x1a\x41ggregateClassificationSet\x12g\n\x17germline_classification\x18\x01 \x01(\x0b\x32\x41.clinvar_data.pbs.clinvar_public.AggregatedGermlineClassificationH\x00\x88\x01\x01\x12\x66\n\x17somatic_clinical_impact\x18\x02 \x01(\x0b\x32@.clinvar_data.pbs.clinvar_public.AggregatedSomaticClinicalImpactH\x01\x88\x01\x01\x12o\n\x1boncogenicity_classification\x18\x03 \x01(\x0b\x32\x45.clinvar_data.pbs.clinvar_public.AggregatedOncogenicityClassificationH\x02\x88\x01\x01\x42\x1a\n\x18_germline_classificationB\x1a\n\x18_somatic_clinical_impactB\x1e\n\x1c_oncogenicity_classification"\x80\x04\n\x14\x43linicalSignificance\x12R\n\rreview_status\x18\x01 \x01(\x0e\x32\x36.clinvar_data.pbs.clinvar_public.SubmitterReviewStatusH\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x42\n\x0b\x65xplanation\x18\x03 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x02\x88\x01\x01\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x06 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12<\n\x13\x64\x61te_last_evaluated\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x03\x88\x01\x01\x42\x10\n\x0e_review_statusB\x0e\n\x0c_descriptionB\x0e\n\x0c_explanationB\x16\n\x14_date_last_evaluated"\x87\x04\n\x11\x41lleleDescription\x12\x0c\n\x04name\x18\x01 \x01(\t\x12i\n\x14relative_orientation\x18\x02 \x01(\x0e\x32\x46.clinvar_data.pbs.clinvar_public.AlleleDescription.RelativeOrientationH\x00\x88\x01\x01\x12@\n\x08zygosity\x18\x03 \x01(\x0e\x32).clinvar_data.pbs.clinvar_public.ZygosityH\x01\x88\x01\x01\x12Y\n\x15\x63linical_significance\x18\x04 \x01(\x0b\x32\x35.clinvar_data.pbs.clinvar_public.ClinicalSignificanceH\x02\x88\x01\x01"\x9b\x01\n\x13RelativeOrientation\x12$\n RELATIVE_ORIENTATION_UNSPECIFIED\x10\x00\x12\x1c\n\x18RELATIVE_ORIENTATION_CIS\x10\x01\x12\x1e\n\x1aRELATIVE_ORIENTATION_TRANS\x10\x02\x12 \n\x1cRELATIVE_ORIENTATION_UNKNOWN\x10\x03\x42\x17\n\x15_relative_orientationB\x0b\n\t_zygosityB\x18\n\x16_clinical_significance"\xdd\x01\n\rRecordHistory\x12>\n\x07\x63omment\x18\x01 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x00\x88\x01\x01\x12\x11\n\taccession\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\x05\x12\x30\n\x0c\x64\x61te_changed\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x19\n\x0cvariation_id\x18\x05 \x01(\x03H\x01\x88\x01\x01\x42\n\n\x08_commentB\x0f\n\r_variation_id"\x9e\t\n\x11\x43lassificationScv\x12M\n\rreview_status\x18\x01 \x01(\x0e\x32\x36.clinvar_data.pbs.clinvar_public.SubmitterReviewStatus\x12$\n\x17germline_classification\x18\x02 \x01(\tH\x00\x88\x01\x01\x12n\n\x17somatic_clinical_impact\x18\x03 \x01(\x0b\x32H.clinvar_data.pbs.clinvar_public.ClassificationScv.SomaticClinicalImpactH\x01\x88\x01\x01\x12(\n\x1boncogenicity_classification\x18\x04 \x01(\tH\x02\x88\x01\x01\x12*\n\x1d\x65xplanation_of_classification\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x65\n\x15\x63lassification_scores\x18\x06 \x03(\x0b\x32\x46.clinvar_data.pbs.clinvar_public.ClassificationScv.ClassificationScore\x12\x34\n\x05xrefs\x18\x07 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\t \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12<\n\x13\x64\x61te_last_evaluated\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x04\x88\x01\x01\x1a\xa4\x02\n\x15SomaticClinicalImpact\x12\r\n\x05value\x18\x01 \x01(\t\x12+\n\x1e\x63linical_impact_assertion_type\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x32\n%clinical_impact_clinical_significance\x18\x03 \x01(\tH\x01\x88\x01\x01\x12+\n\x1e\x64rug_for_therapeutic_assertion\x18\x04 \x01(\tH\x02\x88\x01\x01\x42!\n\x1f_clinical_impact_assertion_typeB(\n&_clinical_impact_clinical_significanceB!\n\x1f_drug_for_therapeutic_assertion\x1a@\n\x13\x43lassificationScore\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x11\n\x04type\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_typeB\x1a\n\x18_germline_classificationB\x1a\n\x18_somatic_clinical_impactB\x1e\n\x1c_oncogenicity_classificationB \n\x1e_explanation_of_classificationB\x16\n\x14_date_last_evaluated"\x88\x01\n\x14SubmitterIdentifiers\x12\x16\n\x0esubmitter_name\x18\x01 \x01(\t\x12\x0e\n\x06org_id\x18\x02 \x01(\x03\x12\x14\n\x0corg_category\x18\x03 \x01(\t\x12\x1d\n\x10org_abbreviation\x18\x04 \x01(\tH\x00\x88\x01\x01\x42\x13\n\x11_org_abbreviation"A\n\x07Species\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x18\n\x0btaxonomy_id\x18\x02 \x01(\x05H\x00\x88\x01\x01\x42\x0e\n\x0c_taxonomy_id"T\n\x13\x43lassifiedCondition\x12\r\n\x05value\x18\x01 \x01(\t\x12\x0f\n\x02\x64\x62\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x0f\n\x02id\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\x05\n\x03_dbB\x05\n\x03_id"\xd3\x01\n\x1e\x43linicalAssertionRecordHistory\x12>\n\x07\x63omment\x18\x01 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x00\x88\x01\x01\x12\x11\n\taccession\x18\x02 \x01(\t\x12\x14\n\x07version\x18\x03 \x01(\x05H\x01\x88\x01\x01\x12\x30\n\x0c\x64\x61te_changed\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\n\n\x08_commentB\n\n\x08_version"\xd6\x01\n\x15\x46unctionalConsequence\x12\x34\n\x05xrefs\x18\x01 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x02 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x03 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\r\n\x05value\x18\x04 \x01(\t"\x86\x01\n\x10GeneralCitations\x12\x34\n\x05xrefs\x18\x01 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x02 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation"\xcc\x01\n\x0c\x43ooccurrence\x12@\n\x08zygosity\x18\x01 \x01(\x0e\x32).clinvar_data.pbs.clinvar_public.ZygosityH\x00\x88\x01\x01\x12O\n\x13\x61llele_descriptions\x18\x02 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.AlleleDescription\x12\x12\n\x05\x63ount\x18\x03 \x01(\x05H\x01\x88\x01\x01\x42\x0b\n\t_zygosityB\x08\n\x06_count"\xf5\x01\n\tSubmitter\x12T\n\x15submitter_identifiers\x18\x01 \x01(\x0b\x32\x35.clinvar_data.pbs.clinvar_public.SubmitterIdentifiers\x12=\n\x04type\x18\x02 \x01(\x0e\x32/.clinvar_data.pbs.clinvar_public.Submitter.Type"S\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0cTYPE_PRIMARY\x10\x01\x12\x12\n\x0eTYPE_SECONDARY\x10\x02\x12\x0f\n\x0bTYPE_BEHALF\x10\x03"\x90\x01\n\x11\x44osageSensitivity\x12\r\n\x05value\x18\x01 \x01(\t\x12\x37\n\x0elast_evaluated\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x14\n\x07\x63lingen\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\x11\n\x0f_last_evaluatedB\n\n\x08_clingen"6\n\tOtherName\x12\r\n\x05value\x18\x01 \x01(\t\x12\x11\n\x04type\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_type"b\n\nDeletedScv\x12\x11\n\taccession\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\x05\x12\x30\n\x0c\x64\x61te_deleted\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp"\xff\n\n\x08Location\x12\x1d\n\x15\x63ytogenetic_locations\x18\x01 \x03(\t\x12V\n\x12sequence_locations\x18\x02 \x03(\x0b\x32:.clinvar_data.pbs.clinvar_public.Location.SequenceLocation\x12\x16\n\x0egene_locations\x18\x03 \x03(\t\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x1a\xad\t\n\x10SequenceLocation\x12\x18\n\x0b\x66or_display\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12\x10\n\x08\x61ssembly\x18\x02 \x01(\t\x12\x38\n\x03\x63hr\x18\x03 \x01(\x0e\x32+.clinvar_data.pbs.clinvar_public.Chromosome\x12\x16\n\taccession\x18\x04 \x01(\tH\x01\x88\x01\x01\x12\x18\n\x0bouter_start\x18\x05 \x01(\rH\x02\x88\x01\x01\x12\x18\n\x0binner_start\x18\x06 \x01(\rH\x03\x88\x01\x01\x12\x12\n\x05start\x18\x07 \x01(\rH\x04\x88\x01\x01\x12\x11\n\x04stop\x18\x08 \x01(\rH\x05\x88\x01\x01\x12\x17\n\ninner_stop\x18\t \x01(\rH\x06\x88\x01\x01\x12\x17\n\nouter_stop\x18\n \x01(\rH\x07\x88\x01\x01\x12\x1a\n\rdisplay_start\x18\x0b \x01(\rH\x08\x88\x01\x01\x12\x19\n\x0c\x64isplay_stop\x18\x0c \x01(\rH\t\x88\x01\x01\x12\x13\n\x06strand\x18\r \x01(\tH\n\x88\x01\x01\x12\x1b\n\x0evariant_length\x18\x0e \x01(\rH\x0b\x88\x01\x01\x12\x1d\n\x10reference_allele\x18\x0f \x01(\tH\x0c\x88\x01\x01\x12\x1d\n\x10\x61lternate_allele\x18\x10 \x01(\tH\r\x88\x01\x01\x12\'\n\x1a\x61ssembly_accession_version\x18\x11 \x01(\tH\x0e\x88\x01\x01\x12g\n\x0f\x61ssembly_status\x18\x12 \x01(\x0e\x32I.clinvar_data.pbs.clinvar_public.Location.SequenceLocation.AssemblyStatusH\x0f\x88\x01\x01\x12\x19\n\x0cposition_vcf\x18\x13 \x01(\rH\x10\x88\x01\x01\x12!\n\x14reference_allele_vcf\x18\x14 \x01(\tH\x11\x88\x01\x01\x12!\n\x14\x61lternate_allele_vcf\x18\x15 \x01(\tH\x12\x88\x01\x01\x12\x1f\n\x12\x66or_display_length\x18\x16 \x01(\rH\x13\x88\x01\x01"l\n\x0e\x41ssemblyStatus\x12\x1f\n\x1b\x41SSEMBLY_STATUS_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x41SSEMBLY_STATUS_CURRENT\x10\x01\x12\x1c\n\x18\x41SSEMBLY_STATUS_PREVIOUS\x10\x02\x42\x0e\n\x0c_for_displayB\x0c\n\n_accessionB\x0e\n\x0c_outer_startB\x0e\n\x0c_inner_startB\x08\n\x06_startB\x07\n\x05_stopB\r\n\x0b_inner_stopB\r\n\x0b_outer_stopB\x10\n\x0e_display_startB\x0f\n\r_display_stopB\t\n\x07_strandB\x11\n\x0f_variant_lengthB\x13\n\x11_reference_alleleB\x13\n\x11_alternate_alleleB\x1d\n\x1b_assembly_accession_versionB\x12\n\x10_assembly_statusB\x0f\n\r_position_vcfB\x17\n\x15_reference_allele_vcfB\x17\n\x15_alternate_allele_vcfB\x15\n\x13_for_display_length"G\n\x03Scv\x12\x12\n\x05title\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x11\n\taccession\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\x05\x42\x08\n\x06_title"\xf4\x02\n\nFamilyData\x12\x1b\n\x0e\x66\x61mily_history\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x19\n\x0cnum_families\x18\x02 \x01(\x05H\x01\x88\x01\x01\x12&\n\x19num_families_with_variant\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12\x33\n&num_families_with_segregation_observed\x18\x04 \x01(\x05H\x03\x88\x01\x01\x12\x18\n\x0bpedigree_id\x18\x05 \x01(\tH\x04\x88\x01\x01\x12!\n\x14segregation_observed\x18\x06 \x01(\tH\x05\x88\x01\x01\x42\x11\n\x0f_family_historyB\x0f\n\r_num_familiesB\x1c\n\x1a_num_families_with_variantB)\n\'_num_families_with_segregation_observedB\x0e\n\x0c_pedigree_idB\x17\n\x15_segregation_observed"\xa0\x16\n\x06Sample\x12Z\n\x12sample_description\x18\x01 \x01(\x0b\x32\x39.clinvar_data.pbs.clinvar_public.Sample.SampleDescriptionH\x00\x88\x01\x01\x12<\n\x06origin\x18\x02 \x01(\x0e\x32\'.clinvar_data.pbs.clinvar_public.OriginH\x01\x88\x01\x01\x12\x16\n\tethnicity\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x1e\n\x11geographic_origin\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\x13\n\x06tissue\x18\x05 \x01(\tH\x04\x88\x01\x01\x12s\n somatic_variant_in_normal_tissue\x18\x06 \x01(\x0e\x32\x44.clinvar_data.pbs.clinvar_public.Sample.SomaticVariantInNormalTissueH\x05\x88\x01\x01\x12,\n\x1fsomatic_variant_allele_fraction\x18\x07 \x01(\tH\x06\x88\x01\x01\x12\x16\n\tcell_line\x18\x08 \x01(\tH\x07\x88\x01\x01\x12>\n\x07species\x18\t \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.SpeciesH\x08\x88\x01\x01\x12\x39\n\x04\x61ges\x18\n \x03(\x0b\x32+.clinvar_data.pbs.clinvar_public.Sample.Age\x12\x13\n\x06strain\x18\x0b \x01(\tH\t\x88\x01\x01\x12T\n\x0f\x61\x66\x66\x65\x63ted_status\x18\x0c \x01(\x0e\x32\x36.clinvar_data.pbs.clinvar_public.Sample.AffectedStatusH\n\x88\x01\x01\x12\x19\n\x0cnumer_tested\x18\r \x01(\x05H\x0b\x88\x01\x01\x12\x19\n\x0cnumber_males\x18\x0e \x01(\x05H\x0c\x88\x01\x01\x12\x1b\n\x0enumber_females\x18\x0f \x01(\x05H\r\x88\x01\x01\x12\x1e\n\x11number_chr_tested\x18\x10 \x01(\x05H\x0e\x88\x01\x01\x12\x43\n\x06gender\x18\x11 \x01(\x0e\x32..clinvar_data.pbs.clinvar_public.Sample.GenderH\x0f\x88\x01\x01\x12\x45\n\x0b\x66\x61mily_data\x18\x12 \x01(\x0b\x32+.clinvar_data.pbs.clinvar_public.FamilyDataH\x10\x88\x01\x01\x12\x14\n\x07proband\x18\x13 \x01(\tH\x11\x88\x01\x01\x12\x44\n\nindication\x18\x14 \x01(\x0b\x32+.clinvar_data.pbs.clinvar_public.IndicationH\x12\x88\x01\x01\x12<\n\tcitations\x18\x15 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x16 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x17 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12L\n\x0bsource_type\x18\x18 \x01(\x0e\x32\x32.clinvar_data.pbs.clinvar_public.Sample.SourceTypeH\x13\x88\x01\x01\x1a\xb6\x01\n\x11SampleDescription\x12\x42\n\x0b\x64\x65scription\x18\x01 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentH\x00\x88\x01\x01\x12@\n\x08\x63itation\x18\x02 \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.CitationH\x01\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x0b\n\t_citation\x1a\x92\x01\n\x03\x41ge\x12\r\n\x05value\x18\x01 \x01(\x05\x12=\n\x04unit\x18\x02 \x01(\x0e\x32/.clinvar_data.pbs.clinvar_public.Sample.AgeUnit\x12=\n\x04type\x18\x03 \x01(\x0e\x32/.clinvar_data.pbs.clinvar_public.Sample.AgeType"\xdc\x01\n\x1cSomaticVariantInNormalTissue\x12\x30\n,SOMATIC_VARIANT_IN_NORMAL_TISSUE_UNSPECIFIED\x10\x00\x12,\n(SOMATIC_VARIANT_IN_NORMAL_TISSUE_PRESENT\x10\x01\x12+\n\'SOMATIC_VARIANT_IN_NORMAL_TISSUE_ABSENT\x10\x02\x12/\n+SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED\x10\x03"\xb0\x01\n\x07\x41geUnit\x12\x18\n\x14\x41GE_UNIT_UNSPECIFIED\x10\x00\x12\x11\n\rAGE_UNIT_DAYS\x10\x01\x12\x12\n\x0e\x41GE_UNIT_WEEKS\x10\x02\x12\x13\n\x0f\x41GE_UNIT_MONTHS\x10\x03\x12\x12\n\x0e\x41GE_UNIT_YEARS\x10\x04\x12\x1c\n\x18\x41GE_UNIT_WEEKS_GESTATION\x10\x05\x12\x1d\n\x19\x41GE_UNIT_MONTHS_GESTATION\x10\x06"d\n\x07\x41geType\x12\x18\n\x14\x41GE_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10\x41GE_TYPE_MINIMUM\x10\x01\x12\x14\n\x10\x41GE_TYPE_MAXIMUM\x10\x02\x12\x13\n\x0f\x41GE_TYPE_SINGLE\x10\x03"\xc5\x01\n\x0e\x41\x66\x66\x65\x63tedStatus\x12\x1f\n\x1b\x41\x46\x46\x45\x43TED_STATUS_UNSPECIFIED\x10\x00\x12\x17\n\x13\x41\x46\x46\x45\x43TED_STATUS_YES\x10\x01\x12\x16\n\x12\x41\x46\x46\x45\x43TED_STATUS_NO\x10\x02\x12 \n\x1c\x41\x46\x46\x45\x43TED_STATUS_NOT_PROVIDED\x10\x03\x12\x1b\n\x17\x41\x46\x46\x45\x43TED_STATUS_UNKNOWN\x10\x04\x12"\n\x1e\x41\x46\x46\x45\x43TED_STATUS_NOT_APPLICABLE\x10\x05"V\n\x06Gender\x12\x16\n\x12GENDER_UNSPECIFIED\x10\x00\x12\x0f\n\x0bGENDER_MALE\x10\x01\x12\x11\n\rGENDER_FEMALE\x10\x02\x12\x10\n\x0cGENDER_MIXED\x10\x03"k\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12#\n\x1fSOURCE_TYPE_SUBMITTER_GENERATED\x10\x01\x12\x1b\n\x17SOURCE_TYPE_DATA_MINING\x10\x02\x42\x15\n\x13_sample_descriptionB\t\n\x07_originB\x0c\n\n_ethnicityB\x14\n\x12_geographic_originB\t\n\x07_tissueB#\n!_somatic_variant_in_normal_tissueB"\n _somatic_variant_allele_fractionB\x0c\n\n_cell_lineB\n\n\x08_speciesB\t\n\x07_strainB\x12\n\x10_affected_statusB\x0f\n\r_numer_testedB\x0f\n\r_number_malesB\x11\n\x0f_number_femalesB\x14\n\x12_number_chr_testedB\t\n\x07_genderB\x0e\n\x0c_family_dataB\n\n\x08_probandB\r\n\x0b_indicationB\x0e\n\x0c_source_type"\xe9\x0f\n\x06Method\x12\x1a\n\rname_platform\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rtype_platform\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x14\n\x07purpose\x18\x03 \x01(\tH\x02\x88\x01\x01\x12L\n\x0bresult_type\x18\x04 \x01(\x0e\x32\x32.clinvar_data.pbs.clinvar_public.Method.ResultTypeH\x03\x88\x01\x01\x12\x19\n\x0cmin_reported\x18\x05 \x01(\tH\x04\x88\x01\x01\x12\x19\n\x0cmax_reported\x18\x06 \x01(\tH\x05\x88\x01\x01\x12\x1f\n\x12reference_standard\x18\x07 \x01(\tH\x06\x88\x01\x01\x12<\n\tcitations\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\t \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12\x18\n\x0b\x64\x65scription\x18\n \x01(\tH\x07\x88\x01\x01\x12;\n\x08software\x18\x0b \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Software\x12L\n\x0bsource_type\x18\x0c \x01(\x0e\x32\x32.clinvar_data.pbs.clinvar_public.Method.SourceTypeH\x08\x88\x01\x01\x12\x44\n\x0bmethod_type\x18\r \x01(\x0e\x32/.clinvar_data.pbs.clinvar_public.MethodListType\x12R\n\x11method_attributes\x18\x0e \x03(\x0b\x32\x37.clinvar_data.pbs.clinvar_public.Method.MethodAttribute\x12Y\n\x15obs_method_attributes\x18\x0f \x03(\x0b\x32:.clinvar_data.pbs.clinvar_public.Method.ObsMethodAttribute\x1a\xb0\x03\n\x0fMethodAttribute\x12<\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12S\n\x04type\x18\x02 \x01(\x0e\x32\x45.clinvar_data.pbs.clinvar_public.Method.MethodAttribute.AttributeType"\x89\x02\n\rAttributeType\x12\x1e\n\x1a\x41TTRIBUTE_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x41TTRIBUTE_TYPE_LOCATION\x10\x01\x12\'\n#ATTRIBUTE_TYPE_CONTROLS_APPROPRIATE\x10\x02\x12%\n!ATTRIBUTE_TYPE_METHOD_APPROPRIATE\x10\x03\x12\x1c\n\x18\x41TTRIBUTE_TYPE_TEST_NAME\x10\x04\x12)\n%ATTRIBUTE_TYPE_STRUCT_VAR_METHOD_TYPE\x10\x05\x12"\n\x1e\x41TTRIBUTE_TYPE_PROBE_ACCESSION\x10\x06\x1a\xe0\x02\n\x12ObsMethodAttribute\x12<\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12V\n\x04type\x18\x02 \x01(\x0e\x32H.clinvar_data.pbs.clinvar_public.Method.ObsMethodAttribute.AttributeType\x12:\n\x08\x63omments\x18\x03 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment"x\n\rAttributeType\x12\x1e\n\x1a\x41TTRIBUTE_TYPE_UNSPECIFIED\x10\x00\x12 \n\x1c\x41TTRIBUTE_TYPE_METHOD_RESULT\x10\x01\x12%\n!ATTRIBUTE_TYPE_TESTING_LABORATORY\x10\x02"\xa3\x01\n\nResultType\x12\x1b\n\x17RESULT_TYPE_UNSPECIFIED\x10\x00\x12%\n!RESULT_TYPE_NUMBER_OF_OCCURRENCES\x10\x01\x12\x17\n\x13RESULT_TYPE_P_VALUE\x10\x02\x12\x1a\n\x16RESULT_TYPE_ODDS_RATIO\x10\x03\x12\x1c\n\x18RESULT_TYPE_VARIANT_CALL\x10\x04"\x88\x01\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12#\n\x1fSOURCE_TYPE_SUBMITTER_GENERATED\x10\x01\x12\x1b\n\x17SOURCE_TYPE_DATA_MINING\x10\x02\x12\x1b\n\x17SOURCE_TYPE_DATA_REVIEW\x10\x03\x42\x10\n\x0e_name_platformB\x10\n\x0e_type_platformB\n\n\x08_purposeB\x0e\n\x0c_result_typeB\x0f\n\r_min_reportedB\x0f\n\r_max_reportedB\x15\n\x13_reference_standardB\x0e\n\x0c_descriptionB\x0e\n\x0c_source_type"\xe0\n\n\tAlleleScv\x12>\n\x05genes\x18\x01 \x03(\x0b\x32/.clinvar_data.pbs.clinvar_public.AlleleScv.Gene\x12\x38\n\x04name\x18\x02 \x01(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12\x19\n\x0cvariant_type\x18\x03 \x01(\tH\x00\x88\x01\x01\x12@\n\x08location\x18\x04 \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.LocationH\x01\x88\x01\x01\x12?\n\x0bother_names\x18\x05 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12\x17\n\x0fprotein_changes\x18\x06 \x03(\t\x12\x34\n\x05xrefs\x18\x07 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\t \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12_\n\x16molecular_consequences\x18\n \x03(\x0b\x32?.clinvar_data.pbs.clinvar_public.AlleleScv.MolecularConsequence\x12W\n\x17\x66unctional_consequences\x18\x0b \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12H\n\nattributes\x18\x0c \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12\x16\n\tallele_id\x18\r \x01(\x03H\x02\x88\x01\x01\x1a\xfc\x01\n\x04Gene\x12\x11\n\x04name\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x12\n\nproperties\x18\x02 \x03(\t\x12\x34\n\x05xrefs\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12\x13\n\x06symbol\x18\x04 \x01(\tH\x01\x88\x01\x01\x12X\n\x11relationship_type\x18\x05 \x01(\x0e\x32\x38.clinvar_data.pbs.clinvar_public.GeneVariantRelationshipH\x02\x88\x01\x01\x42\x07\n\x05_nameB\t\n\x07_symbolB\x14\n\x12_relationship_type\x1a\xaa\x02\n\x14MolecularConsequence\x12\x34\n\x05xrefs\x18\x01 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x02 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x03 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x0f\n\x02rs\x18\x04 \x01(\x03H\x00\x88\x01\x01\x12\x11\n\x04hgvs\x18\x05 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05so_id\x18\x06 \x01(\tH\x02\x88\x01\x01\x12\x10\n\x08\x66unction\x18\x07 \x01(\tB\x05\n\x03_rsB\x07\n\x05_hgvsB\x08\n\x06_so_idB\x0f\n\r_variant_typeB\x0b\n\t_locationB\x0c\n\n_allele_id"\x8f\x06\n\x0cHaplotypeScv\x12\x42\n\x0esimple_alleles\x18\x01 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.AlleleScv\x12\x11\n\x04name\x18\x02 \x01(\tH\x00\x88\x01\x01\x12?\n\x0bother_names\x18\x03 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12Y\n\x0f\x63lassifications\x18\x04 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x01\x88\x01\x01\x12W\n\x17\x66unctional_consequences\x18\x05 \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12H\n\nattributes\x18\x06 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12<\n\tcitations\x18\x07 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x08 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\t \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x19\n\x0cvariation_id\x18\n \x01(\x03H\x02\x88\x01\x01\x12\x1d\n\x10number_of_copies\x18\x0b \x01(\x05H\x03\x88\x01\x01\x12"\n\x15number_of_chromosomes\x18\x0c \x01(\x05H\x04\x88\x01\x01\x42\x07\n\x05_nameB\x12\n\x10_classificationsB\x0f\n\r_variation_idB\x13\n\x11_number_of_copiesB\x18\n\x16_number_of_chromosomes"\xb8\x05\n\x0bGenotypeScv\x12\x42\n\x0esimple_alleles\x18\x01 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.AlleleScv\x12\x41\n\nhaplotypes\x18\x02 \x03(\x0b\x32-.clinvar_data.pbs.clinvar_public.HaplotypeScv\x12\x11\n\x04name\x18\x03 \x01(\tH\x00\x88\x01\x01\x12?\n\x0bother_names\x18\x04 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12\x46\n\x0evariation_type\x18\x05 \x01(\x0e\x32..clinvar_data.pbs.clinvar_public.VariationType\x12W\n\x17\x66unctional_consequences\x18\x06 \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12H\n\nattributes\x18\x07 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12<\n\tcitations\x18\x08 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\t \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\n \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x19\n\x0cvariation_id\x18\x0b \x01(\x03H\x01\x88\x01\x01\x42\x07\n\x05_nameB\x0f\n\r_variation_id"\xe4\x10\n\nObservedIn\x12\x37\n\x06sample\x18\x01 \x01(\x0b\x32\'.clinvar_data.pbs.clinvar_public.Sample\x12O\n\robserved_data\x18\x02 \x03(\x0b\x32\x38.clinvar_data.pbs.clinvar_public.ObservedIn.ObservedData\x12H\n\x11\x63ooccurrence_sets\x18\x03 \x03(\x0b\x32-.clinvar_data.pbs.clinvar_public.Cooccurrence\x12\x41\n\ttrait_set\x18\x04 \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSetH\x00\x88\x01\x01\x12<\n\tcitations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x06 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x07 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x1a\xf3\x07\n\x15ObservedDataAttribute\x12<\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12T\n\x04type\x18\x02 \x01(\x0e\x32\x46.clinvar_data.pbs.clinvar_public.ObservedIn.ObservedDataAttribute.Type"\xc5\x06\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10TYPE_DESCRIPTION\x10\x01\x12\x18\n\x14TYPE_VARIANT_ALLELES\x10\x02\x12\x1e\n\x1aTYPE_SUBJECTS_WITH_VARIANT\x10\x03\x12\x32\n.TYPE_SUBJECTS_WITH_DIFFERENT_CAUSATIVE_VARIANT\x10\x04\x12\x1c\n\x18TYPE_VARIANT_CHROMOSOMES\x10\x05\x12!\n\x1dTYPE_INDEPENDENT_OBSERVATIONS\x10\x06\x12\x1c\n\x18TYPE_SINGLE_HETEROZYGOUS\x10\x07\x12\x1e\n\x1aTYPE_COMPOUND_HETEROZYGOUS\x10\x08\x12\x13\n\x0fTYPE_HOMOZYGOUS\x10\t\x12\x13\n\x0fTYPE_HEMIZYGOUS\x10\n\x12\x16\n\x12TYPE_NUMBER_MOSAIC\x10\x0b\x12\x1d\n\x19TYPE_OBSERVED_UNSPECIFIED\x10\x0c\x12\x19\n\x15TYPE_ALLELE_FREQUENCY\x10\r\x12\x1a\n\x16TYPE_SECONDARY_FINDING\x10\x0e\x12$\n TYPE_GENOTYPE_AND_MOI_CONSISTENT\x10\x0f\x12\x38\n4TYPE_UNAFFECTED_FAMILY_MEMBER_WITH_CAUSATIVE_VARIANT\x10\x10\x12*\n&TYPE_HET_PARENT_TRANSMIT_NORMAL_ALLELE\x10\x11\x12\x1f\n\x1bTYPE_COSEGREGATING_FAMILIES\x10\x12\x12\x1c\n\x18TYPE_INFORMATIVE_MEIOSES\x10\x13\x12\x18\n\x14TYPE_SAMPLE_LOCAL_ID\x10\x14\x12\x1a\n\x16TYPE_SAMPLE_VARIANT_ID\x10\x15\x12\x17\n\x13TYPE_FAMILY_HISTORY\x10\x16\x12"\n\x1eTYPE_NUM_FAMILIES_WITH_VARIANT\x10\x17\x12/\n+TYPE_NUM_FAMILIES_WITH_SEGREGATION_OBSERVED\x10\x18\x12\x1d\n\x19TYPE_SEGREGATION_OBSERVED\x10\x19\x1a\xe4\x02\n\x0cObservedData\x12U\n\nattributes\x18\x01 \x03(\x0b\x32\x41.clinvar_data.pbs.clinvar_public.ObservedIn.ObservedDataAttribute\x12@\n\x08severity\x18\x02 \x01(\x0e\x32).clinvar_data.pbs.clinvar_public.SeverityH\x00\x88\x01\x01\x12<\n\tcitations\x18\x03 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x34\n\x05xrefs\x18\x04 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.CommentB\x0b\n\t_severity"\xa3\x02\n\nMethodType\x12\x1b\n\x17METHOD_TYPE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bMETHOD_TYPE_LITERATURE_ONLY\x10\x01\x12$\n METHOD_TYPE_REFERENCE_POPULATION\x10\x02\x12\x1c\n\x18METHOD_TYPE_CASE_CONTROL\x10\x03\x12 \n\x1cMETHOD_TYPE_CLINICAL_TESTING\x10\x04\x12\x18\n\x14METHOD_TYPE_IN_VITRO\x10\x05\x12\x17\n\x13METHOD_TYPE_IN_VIVO\x10\x06\x12$\n METHOD_TYPE_INFERRED_FROM_SOURCE\x10\x07\x12\x18\n\x14METHOD_TYPE_RESEARCH\x10\x08\x42\x0c\n\n_trait_set"\xd5\x15\n\x11\x43linicalAssertion\x12\x65\n\x15\x63linvar_submission_id\x18\x01 \x01(\x0b\x32\x46.clinvar_data.pbs.clinvar_public.ClinicalAssertion.ClinvarSubmissionId\x12^\n\x11\x63linvar_accession\x18\x02 \x01(\x0b\x32\x43.clinvar_data.pbs.clinvar_public.ClinicalAssertion.ClinvarAccession\x12I\n\x15\x61\x64\x64itional_submitters\x18\x03 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.Submitter\x12V\n\rrecord_status\x18\x04 \x01(\x0e\x32?.clinvar_data.pbs.clinvar_public.ClinicalAssertion.RecordStatus\x12\x10\n\x08replaces\x18\x05 \x03(\t\x12R\n\treplaceds\x18\x06 \x03(\x0b\x32?.clinvar_data.pbs.clinvar_public.ClinicalAssertionRecordHistory\x12K\n\x0f\x63lassifications\x18\x07 \x01(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.ClassificationScv\x12=\n\tassertion\x18\x08 \x01(\x0e\x32*.clinvar_data.pbs.clinvar_public.Assertion\x12Z\n\nattributes\x18\t \x03(\x0b\x32\x46.clinvar_data.pbs.clinvar_public.ClinicalAssertion.AttributeSetElement\x12\x41\n\x0cobserved_ins\x18\n \x03(\x0b\x32+.clinvar_data.pbs.clinvar_public.ObservedIn\x12\x46\n\rsimple_allele\x18\x0b \x01(\x0b\x32*.clinvar_data.pbs.clinvar_public.AlleleScvH\x00\x88\x01\x01\x12\x45\n\thaplotype\x18\x0c \x01(\x0b\x32-.clinvar_data.pbs.clinvar_public.HaplotypeScvH\x01\x88\x01\x01\x12\x43\n\x08genotype\x18\r \x01(\x0b\x32,.clinvar_data.pbs.clinvar_public.GenotypeScvH\x02\x88\x01\x01\x12<\n\ttrait_set\x18\x0e \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.TraitSet\x12<\n\tcitations\x18\x0f \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12\x17\n\nstudy_name\x18\x10 \x01(\tH\x03\x88\x01\x01\x12\x1e\n\x11study_description\x18\x11 \x01(\tH\x04\x88\x01\x01\x12:\n\x08\x63omments\x18\x12 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x18\n\x10submission_names\x18\x13 \x03(\t\x12\x30\n\x0c\x64\x61te_created\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x35\n\x11\x64\x61te_last_updated\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0fsubmission_date\x18\x16 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x02id\x18\x17 \x01(\x04H\x05\x88\x01\x01\x12$\n\x17\x66\x64\x61_recognized_database\x18\x18 \x01(\x08H\x06\x88\x01\x01\x1a\xbe\x01\n\x13\x43linvarSubmissionId\x12\x11\n\tlocal_key\x18\x01 \x01(\t\x12\x12\n\x05title\x18\x02 \x01(\tH\x00\x88\x01\x01\x12#\n\x16local_key_is_submitted\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x1f\n\x12submitted_assembly\x18\x04 \x01(\tH\x02\x88\x01\x01\x42\x08\n\x06_titleB\x19\n\x17_local_key_is_submittedB\x15\n\x13_submitted_assembly\x1a\xba\x04\n\x13\x41ttributeSetElement\x12\x41\n\tattribute\x18\x01 \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.BaseAttribute\x12Y\n\x04type\x18\x02 \x01(\x0e\x32K.clinvar_data.pbs.clinvar_public.ClinicalAssertion.AttributeSetElement.Type\x12\x34\n\x05xrefs\x18\x03 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\x04 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x05 \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment"\xd4\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18TYPE_MODE_OF_INHERITANCE\x10\x01\x12\x13\n\x0fTYPE_PENETRANCE\x10\x02\x12\x15\n\x11TYPE_AGE_OF_ONSET\x10\x03\x12\x11\n\rTYPE_SEVERITY\x10\x04\x12\x1f\n\x1bTYPE_CLASSIFICATION_HISTORY\x10\x05\x12\x1d\n\x19TYPE_SEVERITY_DESCRIPTION\x10\x06\x12\x19\n\x15TYPE_ASSERTION_METHOD\x10\x07\x1a\x9c\x02\n\x10\x43linvarAccession\x12\x11\n\taccession\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\x05\x12T\n\x15submitter_identifiers\x18\x03 \x01(\x0b\x32\x35.clinvar_data.pbs.clinvar_public.SubmitterIdentifiers\x12\x35\n\x0c\x64\x61te_updated\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x35\n\x0c\x64\x61te_created\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x88\x01\x01\x42\x0f\n\r_date_updatedB\x0f\n\r_date_created"\x7f\n\x0cRecordStatus\x12\x1d\n\x19RECORD_STATUS_UNSPECIFIED\x10\x00\x12\x19\n\x15RECORD_STATUS_CURRENT\x10\x01\x12\x1a\n\x16RECORD_STATUS_REPLACED\x10\x02\x12\x19\n\x15RECORD_STATUS_REMOVED\x10\x03\x42\x10\n\x0e_simple_alleleB\x0c\n\n_haplotypeB\x0b\n\t_genotypeB\r\n\x0b_study_nameB\x14\n\x12_study_descriptionB\x05\n\x03_idB\x1a\n\x18_fda_recognized_database"\xf0\r\n\x06\x41llele\x12;\n\x05genes\x18\x01 \x03(\x0b\x32,.clinvar_data.pbs.clinvar_public.Allele.Gene\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x1b\n\x0e\x63\x61nonical_spdi\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x15\n\rvariant_types\x18\x04 \x03(\t\x12<\n\tlocations\x18\x05 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Location\x12?\n\x0bother_names\x18\x06 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12\x17\n\x0fprotein_changes\x18\x07 \x03(\t\x12I\n\x10hgvs_expressions\x18\x08 \x03(\x0b\x32/.clinvar_data.pbs.clinvar_public.HgvsExpression\x12Y\n\x0f\x63lassifications\x18\t \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x01\x88\x01\x01\x12\x34\n\x05xrefs\x18\n \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\x0b \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12W\n\x17\x66unctional_consequences\x18\x0c \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12S\n\x12\x61llele_frequencies\x18\r \x03(\x0b\x32\x37.clinvar_data.pbs.clinvar_public.Allele.AlleleFrequency\x12n\n\x1dglobal_minor_allele_frequency\x18\x0e \x01(\x0b\x32\x42.clinvar_data.pbs.clinvar_public.Allele.GlobalMinorAlleleFrequencyH\x02\x88\x01\x01\x12\x11\n\tallele_id\x18\x0f \x01(\x03\x12\x14\n\x0cvariation_id\x18\x10 \x01(\x03\x1a\xa3\x04\n\x04Gene\x12<\n\tlocations\x18\x01 \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Location\x12\r\n\x05omims\x18\x02 \x03(\x04\x12S\n\x12haploinsufficiency\x18\x03 \x01(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.DosageSensitivityH\x00\x88\x01\x01\x12R\n\x11triplosensitivity\x18\x04 \x01(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.DosageSensitivityH\x01\x88\x01\x01\x12\x12\n\nproperties\x18\x05 \x03(\t\x12\x13\n\x06symbol\x18\x06 \x01(\tH\x02\x88\x01\x01\x12\x11\n\tfull_name\x18\x07 \x01(\t\x12\x0f\n\x07gene_id\x18\x08 \x01(\x03\x12\x14\n\x07hgnc_id\x18\t \x01(\tH\x03\x88\x01\x01\x12\x0e\n\x06source\x18\n \x01(\t\x12X\n\x11relationship_type\x18\x0b \x01(\x0e\x32\x38.clinvar_data.pbs.clinvar_public.GeneVariantRelationshipH\x04\x88\x01\x01\x42\x15\n\x13_haploinsufficiencyB\x14\n\x12_triplosensitivityB\t\n\x07_symbolB\n\n\x08_hgnc_idB\x14\n\x12_relationship_type\x1aJ\n\x0f\x41lleleFrequency\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0e\n\x06source\x18\x02 \x01(\t\x12\x10\n\x03url\x18\x03 \x01(\tH\x00\x88\x01\x01\x42\x06\n\x04_url\x1a\x81\x01\n\x1aGlobalMinorAlleleFrequency\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0e\n\x06source\x18\x02 \x01(\t\x12\x19\n\x0cminor_allele\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x10\n\x03url\x18\x04 \x01(\tH\x01\x88\x01\x01\x42\x0f\n\r_minor_alleleB\x06\n\x04_url\x1a\x31\n\x04Name\x12\r\n\x05value\x18\x01 \x01(\t\x12\x11\n\x04type\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_typeB\x11\n\x0f_canonical_spdiB\x12\n\x10_classificationsB \n\x1e_global_minor_allele_frequency"\xf5\x05\n\tHaplotype\x12?\n\x0esimple_alleles\x18\x01 \x03(\x0b\x32\'.clinvar_data.pbs.clinvar_public.Allele\x12\x0c\n\x04name\x18\x02 \x01(\t\x12K\n\x0evariation_type\x18\x03 \x01(\x0e\x32\x33.clinvar_data.pbs.clinvar_public.HaploVariationType\x12?\n\x0bother_names\x18\x04 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12I\n\x10hgvs_expressions\x18\x05 \x03(\x0b\x32/.clinvar_data.pbs.clinvar_public.HgvsExpression\x12Y\n\x0f\x63lassifications\x18\x06 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x00\x88\x01\x01\x12W\n\x17\x66unctional_consequences\x18\x07 \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12\x34\n\x05xrefs\x18\x08 \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12:\n\x08\x63omments\x18\t \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x14\n\x0cvariation_id\x18\n \x01(\x03\x12\x1d\n\x10number_of_copies\x18\x0b \x01(\x05H\x01\x88\x01\x01\x12"\n\x15number_of_chromosomes\x18\x0c \x01(\x05H\x02\x88\x01\x01\x42\x12\n\x10_classificationsB\x13\n\x11_number_of_copiesB\x18\n\x16_number_of_chromosomes"\x87\x05\n\x0eIncludedRecord\x12\x43\n\rsimple_allele\x18\x01 \x01(\x0b\x32\'.clinvar_data.pbs.clinvar_public.AlleleH\x00\x88\x01\x01\x12\x42\n\thaplotype\x18\x02 \x01(\x0b\x32*.clinvar_data.pbs.clinvar_public.HaplotypeH\x01\x88\x01\x01\x12Y\n\x0f\x63lassifications\x18\x03 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x02\x88\x01\x01\x12G\n\x19submitted_classifications\x18\x04 \x03(\x0b\x32$.clinvar_data.pbs.clinvar_public.Scv\x12\x62\n\x15\x63lassified_variations\x18\x05 \x03(\x0b\x32\x43.clinvar_data.pbs.clinvar_public.IncludedRecord.ClassifiedVariation\x12L\n\x11general_citations\x18\x06 \x03(\x0b\x32\x31.clinvar_data.pbs.clinvar_public.GeneralCitations\x1a\x62\n\x13\x43lassifiedVariation\x12\x14\n\x0cvariation_id\x18\x01 \x01(\x03\x12\x16\n\taccession\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x0f\n\x07version\x18\x03 \x01(\x05\x42\x0c\n\n_accessionB\x10\n\x0e_simple_alleleB\x0c\n\n_haplotypeB\x12\n\x10_classifications"\xdb\x06\n\x08Genotype\x12?\n\x0esimple_alleles\x18\x01 \x03(\x0b\x32\'.clinvar_data.pbs.clinvar_public.Allele\x12>\n\nhaplotypes\x18\x02 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.Haplotype\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x46\n\x0evariation_type\x18\x04 \x01(\x0e\x32..clinvar_data.pbs.clinvar_public.VariationType\x12?\n\x0bother_names\x18\x05 \x03(\x0b\x32*.clinvar_data.pbs.clinvar_public.OtherName\x12I\n\x10hgvs_expressions\x18\x06 \x03(\x0b\x32/.clinvar_data.pbs.clinvar_public.HgvsExpression\x12W\n\x17\x66unctional_consequences\x18\x07 \x03(\x0b\x32\x36.clinvar_data.pbs.clinvar_public.FunctionalConsequence\x12Y\n\x0f\x63lassifications\x18\x08 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSetH\x00\x88\x01\x01\x12\x34\n\x05xrefs\x18\t \x03(\x0b\x32%.clinvar_data.pbs.clinvar_public.Xref\x12<\n\tcitations\x18\n \x03(\x0b\x32).clinvar_data.pbs.clinvar_public.Citation\x12:\n\x08\x63omments\x18\x0b \x03(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12H\n\nattributes\x18\x0c \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.AttributeSetElement\x12\x19\n\x0cvariation_id\x18\r \x01(\x03H\x01\x88\x01\x01\x42\x12\n\x10_classificationsB\x0f\n\r_variation_id"\xa2\x12\n\x0cRcvAccession\x12m\n\x19\x63lassified_condition_list\x18\x01 \x01(\x0b\x32\x45.clinvar_data.pbs.clinvar_public.RcvAccession.ClassifiedConditionListH\x00\x88\x01\x01\x12]\n\x13rcv_classifications\x18\x02 \x01(\x0b\x32@.clinvar_data.pbs.clinvar_public.RcvAccession.RcvClassifications\x12\x41\n\treplaceds\x18\x03 \x03(\x0b\x32..clinvar_data.pbs.clinvar_public.RecordHistory\x12\x12\n\x05title\x18\x04 \x01(\tH\x01\x88\x01\x01\x12\x11\n\taccession\x18\x05 \x01(\t\x12\x0f\n\x07version\x18\x06 \x01(\x05\x1a\x9a\x01\n\x17\x43lassifiedConditionList\x12S\n\x15\x63lassified_conditions\x18\x01 \x03(\x0b\x32\x34.clinvar_data.pbs.clinvar_public.ClassifiedCondition\x12\x19\n\x0ctrait_set_id\x18\x02 \x01(\x03H\x00\x88\x01\x01\x42\x0f\n\r_trait_set_id\x1a\xff\x02\n\x16GermlineClassification\x12U\n\rreview_status\x18\x01 \x01(\x0e\x32>.clinvar_data.pbs.clinvar_public.AggregateGermlineReviewStatus\x12\x65\n\x0b\x64\x65scription\x18\x02 \x01(\x0b\x32P.clinvar_data.pbs.clinvar_public.RcvAccession.GermlineClassification.Description\x1a\xa6\x01\n\x0b\x44\x65scription\x12\r\n\x05value\x18\x01 \x01(\t\x12<\n\x13\x64\x61te_last_evaluated\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x1d\n\x10submission_count\x18\x03 \x01(\rH\x01\x88\x01\x01\x42\x16\n\x14_date_last_evaluatedB\x13\n\x11_submission_count\x1a\xb9\x04\n\x15SomaticClinicalImpact\x12\x62\n\rreview_status\x18\x01 \x01(\x0e\x32K.clinvar_data.pbs.clinvar_public.AggregateSomaticClinicalImpactReviewStatus\x12\x65\n\x0c\x64\x65scriptions\x18\x02 \x03(\x0b\x32O.clinvar_data.pbs.clinvar_public.RcvAccession.SomaticClinicalImpact.Description\x1a\xd4\x02\n\x0b\x44\x65scription\x12\r\n\x05value\x18\x01 \x01(\t\x12+\n\x1e\x63linical_impact_assertion_type\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x32\n%clinical_impact_clinical_significance\x18\x03 \x01(\tH\x01\x88\x01\x01\x12<\n\x13\x64\x61te_last_evaluated\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02\x88\x01\x01\x12\x1d\n\x10submission_count\x18\x05 \x01(\rH\x03\x88\x01\x01\x42!\n\x1f_clinical_impact_assertion_typeB(\n&_clinical_impact_clinical_significanceB\x16\n\x14_date_last_evaluatedB\x13\n\x11_submission_count\x1a\x8b\x03\n\x1aOncogenicityClassification\x12Y\n\rreview_status\x18\x01 \x01(\x0e\x32\x42.clinvar_data.pbs.clinvar_public.AggregateOncogenicityReviewStatus\x12i\n\x0b\x64\x65scription\x18\x02 \x01(\x0b\x32T.clinvar_data.pbs.clinvar_public.RcvAccession.OncogenicityClassification.Description\x1a\xa6\x01\n\x0b\x44\x65scription\x12\r\n\x05value\x18\x01 \x01(\t\x12<\n\x13\x64\x61te_last_evaluated\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x1d\n\x10submission_count\x18\x03 \x01(\rH\x01\x88\x01\x01\x42\x16\n\x14_date_last_evaluatedB\x13\n\x11_submission_count\x1a\xb7\x03\n\x12RcvClassifications\x12j\n\x17germline_classification\x18\x01 \x01(\x0b\x32\x44.clinvar_data.pbs.clinvar_public.RcvAccession.GermlineClassificationH\x00\x88\x01\x01\x12i\n\x17somatic_clinical_impact\x18\x02 \x01(\x0b\x32\x43.clinvar_data.pbs.clinvar_public.RcvAccession.SomaticClinicalImpactH\x01\x88\x01\x01\x12r\n\x1boncogenicity_classification\x18\x03 \x01(\x0b\x32H.clinvar_data.pbs.clinvar_public.RcvAccession.OncogenicityClassificationH\x02\x88\x01\x01\x42\x1a\n\x18_germline_classificationB\x1a\n\x18_somatic_clinical_impactB\x1e\n\x1c_oncogenicity_classificationB\x1c\n\x1a_classified_condition_listB\x08\n\x06_title"\xcf\n\n\x10\x43lassifiedRecord\x12\x43\n\rsimple_allele\x18\x01 \x01(\x0b\x32\'.clinvar_data.pbs.clinvar_public.AlleleH\x00\x88\x01\x01\x12\x42\n\thaplotype\x18\x02 \x01(\x0b\x32*.clinvar_data.pbs.clinvar_public.HaplotypeH\x01\x88\x01\x01\x12@\n\x08genotype\x18\x03 \x01(\x0b\x32).clinvar_data.pbs.clinvar_public.GenotypeH\x02\x88\x01\x01\x12K\n\x08rcv_list\x18\x04 \x01(\x0b\x32\x39.clinvar_data.pbs.clinvar_public.ClassifiedRecord.RcvList\x12T\n\x0f\x63lassifications\x18\x05 \x01(\x0b\x32;.clinvar_data.pbs.clinvar_public.AggregateClassificationSet\x12O\n\x13\x63linical_assertions\x18\x06 \x03(\x0b\x32\x32.clinvar_data.pbs.clinvar_public.ClinicalAssertion\x12V\n\x0etrait_mappings\x18\x07 \x03(\x0b\x32>.clinvar_data.pbs.clinvar_public.ClassifiedRecord.TraitMapping\x12\x41\n\x0c\x64\x65leted_scvs\x18\x08 \x03(\x0b\x32+.clinvar_data.pbs.clinvar_public.DeletedScv\x12L\n\x11general_citations\x18\t \x03(\x0b\x32\x31.clinvar_data.pbs.clinvar_public.GeneralCitations\x1a\xc8\x01\n\x07RcvList\x12\x45\n\x0ercv_accessions\x18\x01 \x03(\x0b\x32-.clinvar_data.pbs.clinvar_public.RcvAccession\x12\x1d\n\x10submission_count\x18\x02 \x01(\x05H\x00\x88\x01\x01\x12%\n\x18independent_observations\x18\x03 \x01(\x05H\x01\x88\x01\x01\x42\x13\n\x11_submission_countB\x1b\n\x19_independent_observations\x1a\xbf\x02\n\x0cTraitMapping\x12V\n\x07medgens\x18\x01 \x03(\x0b\x32\x45.clinvar_data.pbs.clinvar_public.ClassifiedRecord.TraitMapping.Medgen\x12\x1d\n\x15\x63linical_assertion_id\x18\x02 \x01(\x03\x12\x12\n\ntrait_type\x18\x03 \x01(\t\x12S\n\x0cmapping_type\x18\x04 \x01(\x0e\x32=.clinvar_data.pbs.clinvar_public.ClassifiedRecord.MappingType\x12\x15\n\rmapping_value\x18\x05 \x01(\t\x12\x13\n\x0bmapping_ref\x18\x06 \x01(\t\x1a#\n\x06Medgen\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0b\n\x03\x63ui\x18\x02 \x01(\t"Y\n\x0bMappingType\x12\x1c\n\x18MAPPING_TYPE_UNSPECIFIED\x10\x00\x12\x15\n\x11MAPPING_TYPE_NAME\x10\x01\x12\x15\n\x11MAPPING_TYPE_XREF\x10\x02\x42\x10\n\x0e_simple_alleleB\x0c\n\n_haplotypeB\x0b\n\t_genotype"\xd1\t\n\x10VariationArchive\x12\x14\n\x0cvariation_id\x18\x01 \x01(\x03\x12\x16\n\x0evariation_name\x18\x02 \x01(\t\x12\x16\n\x0evariation_type\x18\x03 \x01(\t\x12\x30\n\x0c\x64\x61te_created\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x35\n\x11\x64\x61te_last_updated\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12:\n\x16most_recent_submission\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x11\n\taccession\x18\x07 \x01(\t\x12\x0f\n\x07version\x18\x08 \x01(\x05\x12\x1c\n\x14number_of_submitters\x18\t \x01(\x05\x12\x1d\n\x15number_of_submissions\x18\n \x01(\x05\x12Q\n\x0brecord_type\x18\x0b \x01(\x0e\x32<.clinvar_data.pbs.clinvar_public.VariationArchive.RecordType\x12U\n\rrecord_status\x18\x0c \x01(\x0e\x32>.clinvar_data.pbs.clinvar_public.VariationArchive.RecordStatus\x12\x43\n\x0breplaced_by\x18\r \x01(\x0b\x32..clinvar_data.pbs.clinvar_public.RecordHistory\x12\x41\n\treplaceds\x18\x0e \x03(\x0b\x32..clinvar_data.pbs.clinvar_public.RecordHistory\x12\x39\n\x07\x63omment\x18\x0f \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.Comment\x12\x39\n\x07species\x18\x10 \x01(\x0b\x32(.clinvar_data.pbs.clinvar_public.Species\x12Q\n\x11\x63lassified_record\x18\x11 \x01(\x0b\x32\x31.clinvar_data.pbs.clinvar_public.ClassifiedRecordH\x00\x88\x01\x01\x12M\n\x0fincluded_record\x18\x12 \x01(\x0b\x32/.clinvar_data.pbs.clinvar_public.IncludedRecordH\x01\x88\x01\x01"_\n\nRecordType\x12\x1b\n\x17RECORD_TYPE_UNSPECIFIED\x10\x00\x12\x18\n\x14RECORD_TYPE_INCLUDED\x10\x01\x12\x1a\n\x16RECORD_TYPE_CLASSIFIED\x10\x02"\x9b\x01\n\x0cRecordStatus\x12\x1d\n\x19RECORD_STATUS_UNSPECIFIED\x10\x00\x12\x19\n\x15RECORD_STATUS_CURRENT\x10\x01\x12\x1a\n\x16RECORD_STATUS_PREVIOUS\x10\x02\x12\x1a\n\x16RECORD_STATUS_REPLACED\x10\x03\x12\x19\n\x15RECORD_STATUS_DELETED\x10\x04\x42\x14\n\x12_classified_recordB\x12\n\x10_included_record"\x9a\x01\n\x17\x43linvarVariationRelease\x12\x30\n\x0crelease_date\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12M\n\x12variation_archives\x18\x02 \x03(\x0b\x32\x31.clinvar_data.pbs.clinvar_public.VariationArchive*\xc2\x03\n\x17GeneVariantRelationship\x12)\n%GENE_VARIANT_RELATIONSHIP_UNSPECIFIED\x10\x00\x12\x31\n-GENE_VARIANT_RELATIONSHIP_VARIANT_WITHIN_GENE\x10\x01\x12\x38\n4GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT\x10\x02\x12\x30\n,GENE_VARIANT_RELATIONSHIP_NEAR_GENE_UPSTREAM\x10\x03\x12\x32\n.GENE_VARIANT_RELATIONSHIP_NEAR_GENE_DOWNSTREAM\x10\x04\x12\x37\n3GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED\x10\x05\x12>\n:GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP\x10\x06\x12\x30\n,GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE\x10\x07*c\n\x08Severity\x12\x18\n\x14SEVERITY_UNSPECIFIED\x10\x00\x12\x11\n\rSEVERITY_MILD\x10\x01\x12\x15\n\x11SEVERITY_MODERATE\x10\x02\x12\x13\n\x0fSEVERITY_SEVERE\x10\x03*\xf6\x01\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x12\n\x0eSTATUS_CURRENT\x10\x01\x12 \n\x1cSTATUS_COMPLETED_AND_RETIRED\x10\x02\x12\x11\n\rSTATUS_DELETE\x10\x03\x12\x19\n\x15STATUS_IN_DEVELOPMENT\x10\x04\x12\x17\n\x13STATUS_RECLASSIFIED\x10\x05\x12\x11\n\rSTATUS_REJECT\x10\x06\x12\x14\n\x10STATUS_SECONDARY\x10\x07\x12\x15\n\x11STATUS_SUPPRESSED\x10\x08\x12\x17\n\x13STATUS_UNDER_REVIEW\x10\t*\x97\x06\n\x15SubmitterReviewStatus\x12\'\n#SUBMITTER_REVIEW_STATUS_UNSPECIFIED\x10\x00\x12\x36\n2SUBMITTER_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED\x10\x01\x12:\n6SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED\x10\x02\x12>\n:SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER\x10\x03\x12\x34\n0SUBMITTER_REVIEW_STATUS_REVIEWED_BY_EXPERT_PANEL\x10\x04\x12.\n*SUBMITTER_REVIEW_STATUS_PRACTICE_GUIDELINE\x10\x05\x12.\n*SUBMITTER_REVIEW_STATUS_FLAGGED_SUBMISSION\x10\x06\x12N\nJSUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS\x10\x07\x12I\nESUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_CONFLICTING_CLASSIFICATIONS\x10\x08\x12:\n6SUBMITTER_REVIEW_STATUS_CLASSIFIED_BY_SINGLE_SUBMITTER\x10\t\x12<\n8SUBMITTER_REVIEW_STATUS_REVIEWED_BY_PROFESSIONAL_SOCIETY\x10\n\x12\x37\n3SUBMITTER_REVIEW_STATUS_NOT_CLASSIFIED_BY_SUBMITTER\x10\x0b\x12=\n9SUBMITTER_REVIEW_STATUS_CLASSIFIED_BY_MULTIPLE_SUBMITTERS\x10\x0c*\xb7\x01\n\x08Zygosity\x12\x18\n\x14ZYGOSITY_UNSPECIFIED\x10\x00\x12\x17\n\x13ZYGOSITY_HOMOZYGOTE\x10\x01\x12 \n\x1cZYGOSITY_SINGLE_HETEROZYGOTE\x10\x02\x12"\n\x1eZYGOSITY_COMPOUND_HETEROZYGOTE\x10\x03\x12\x17\n\x13ZYGOSITY_HEMIZYGOTE\x10\x04\x12\x19\n\x15ZYGOSITY_NOT_PROVIDED\x10\x05*\x99\x02\n\tAssertion\x12\x19\n\x15\x41SSERTION_UNSPECIFIED\x10\x00\x12"\n\x1e\x41SSERTION_VARIATION_TO_DISEASE\x10\x01\x12+\n\'ASSERTION_VARIATION_TO_INCLUDED_DISEASE\x10\x02\x12\x33\n/ASSERTION_VARIATION_IN_MODIFIER_GENE_TO_DISEASE\x10\x03\x12!\n\x1d\x41SSERTION_CONFERS_SENSITIVITY\x10\x04\x12 \n\x1c\x41SSERTION_CONFERS_RESISTANCE\x10\x05\x12&\n"ASSERTION_VARIANT_TO_NAMED_PROTEIN\x10\x06*\xe4\x05\n\x1d\x41ggregateGermlineReviewStatus\x12\x30\n,AGGREGATE_GERMLINE_REVIEW_STATUS_UNSPECIFIED\x10\x00\x12?\n;AGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED\x10\x01\x12\x43\n?AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED\x10\x02\x12G\nCAGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER\x10\x03\x12W\nSAGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS\x10\x04\x12R\nNAGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_CONFLICTING_CLASSIFICATIONS\x10\x05\x12=\n9AGGREGATE_GERMLINE_REVIEW_STATUS_REVIEWED_BY_EXPERT_PANEL\x10\x06\x12\x37\n3AGGREGATE_GERMLINE_REVIEW_STATUS_PRACTICE_GUIDELINE\x10\x07\x12N\nJAGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATIONS_FROM_UNFLAGGED_RECORDS\x10\x08\x12M\nIAGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT\x10\t*\x97\x06\n*AggregateSomaticClinicalImpactReviewStatus\x12?\n;AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_UNSPECIFIED\x10\x00\x12N\nJAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED\x10\x01\x12R\nNAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED\x10\x02\x12V\nRAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER\x10\x03\x12Y\nUAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS\x10\x04\x12L\nHAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_REVIEWED_BY_EXPERT_PANEL\x10\x05\x12\x46\nBAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_PRACTICE_GUIDELINE\x10\x06\x12]\nYAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATIONS_FROM_UNFLAGGED_RECORDS\x10\x07\x12\\\nXAGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT\x10\x08*\x90\x06\n!AggregateOncogenicityReviewStatus\x12\x34\n0AGGREGATE_ONCOGENICITY_REVIEW_STATUS_UNSPECIFIED\x10\x00\x12\x43\n?AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED\x10\x01\x12G\nCAGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED\x10\x02\x12K\nGAGGREGATE_ONCOGENICITY_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER\x10\x03\x12[\nWAGGREGATE_ONCOGENICITY_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS\x10\x04\x12V\nRAGGREGATE_ONCOGENICITY_REVIEW_STATUS_CRITERIA_PROVIDED_CONFLICTING_CLASSIFICATIONS\x10\x05\x12\x41\n=AGGREGATE_ONCOGENICITY_REVIEW_STATUS_REVIEWED_BY_EXPERT_PANEL\x10\x06\x12;\n7AGGREGATE_ONCOGENICITY_REVIEW_STATUS_PRACTICE_GUIDELINE\x10\x07\x12R\nNAGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_CLASSIFICATIONS_FROM_UNFLAGGED_RECORDS\x10\x08\x12Q\nMAGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT\x10\t*\xf2\x02\n\x06Origin\x12\x16\n\x12ORIGIN_UNSPECIFIED\x10\x00\x12\x13\n\x0fORIGIN_GERMLINE\x10\x01\x12\x12\n\x0eORIGIN_SOMATIC\x10\x02\x12\x12\n\x0eORIGIN_DE_NOVO\x10\x03\x12\x17\n\x13ORIGIN_NOT_PROVIDED\x10\x04\x12\x14\n\x10ORIGIN_INHERITED\x10\x05\x12\x13\n\x0fORIGIN_MATERNAL\x10\x06\x12\x13\n\x0fORIGIN_PATERNAL\x10\x07\x12\x16\n\x12ORIGIN_UNIPARENTAL\x10\x08\x12\x15\n\x11ORIGIN_BIPARENTAL\x10\t\x12\x17\n\x13ORIGIN_NOT_REPORTED\x10\n\x12\x1e\n\x1aORIGIN_TESTED_INCONCLUSIVE\x10\x0b\x12\x12\n\x0eORIGIN_UNKNOWN\x10\x0c\x12\x19\n\x15ORIGIN_NOT_APPLICABLE\x10\r\x12#\n\x1fORIGIN_EXPERIMENTALLY_GENERATED\x10\x0e*\x9f\x04\n\nChromosome\x12\x1a\n\x16\x43HROMOSOME_UNSPECIFIED\x10\x00\x12\x10\n\x0c\x43HROMOSOME_1\x10\x01\x12\x10\n\x0c\x43HROMOSOME_2\x10\x02\x12\x10\n\x0c\x43HROMOSOME_3\x10\x03\x12\x10\n\x0c\x43HROMOSOME_4\x10\x04\x12\x10\n\x0c\x43HROMOSOME_5\x10\x05\x12\x10\n\x0c\x43HROMOSOME_6\x10\x06\x12\x10\n\x0c\x43HROMOSOME_7\x10\x07\x12\x10\n\x0c\x43HROMOSOME_8\x10\x08\x12\x10\n\x0c\x43HROMOSOME_9\x10\t\x12\x11\n\rCHROMOSOME_10\x10\n\x12\x11\n\rCHROMOSOME_11\x10\x0b\x12\x11\n\rCHROMOSOME_12\x10\x0c\x12\x11\n\rCHROMOSOME_13\x10\r\x12\x11\n\rCHROMOSOME_14\x10\x0e\x12\x11\n\rCHROMOSOME_15\x10\x0f\x12\x11\n\rCHROMOSOME_16\x10\x10\x12\x11\n\rCHROMOSOME_17\x10\x11\x12\x11\n\rCHROMOSOME_18\x10\x12\x12\x11\n\rCHROMOSOME_19\x10\x13\x12\x11\n\rCHROMOSOME_20\x10\x14\x12\x11\n\rCHROMOSOME_21\x10\x15\x12\x11\n\rCHROMOSOME_22\x10\x16\x12\x10\n\x0c\x43HROMOSOME_X\x10\x17\x12\x10\n\x0c\x43HROMOSOME_Y\x10\x18\x12\x11\n\rCHROMOSOME_MT\x10\x19\x12\x12\n\x0e\x43HROMOSOME_PAR\x10\x1a\x12\x11\n\rCHROMOSOME_UN\x10\x1b*\x84\x04\n\x0b\x43ommentType\x12\x1c\n\x18\x43OMMENT_TYPE_UNSPECIFIED\x10\x00\x12\x17\n\x13\x43OMMENT_TYPE_PUBLIC\x10\x01\x12!\n\x1d\x43OMMENT_TYPE_CONVERTED_BY_NCB\x10\x02\x12&\n"COMMENT_TYPE_MISSING_FROM_ASSEMBLY\x10\x03\x12\x31\n-COMMENT_TYPE_GENOMIC_LOCATION_NOT_ESTABLISHED\x10\x04\x12;\n7COMMENT_TYPE_LOCATION_ON_GENOME_AND_PRODUCT_NOT_ALIGNED\x10\x05\x12!\n\x1d\x43OMMENT_TYPE_DELETION_COMMENT\x10\x06\x12\x1e\n\x1a\x43OMMENT_TYPE_MERGE_COMMENT\x10\x07\x12\x34\n0COMMENT_TYPE_ASSEMBLY_SPECIFIC_ALLELE_DEFINITION\x10\x08\x12\x38\n4COMMENT_TYPE_ALIGNMENT_GAP_MAKES_APPEAR_INCONSISTENT\x10\t\x12.\n*COMMENT_TYPE_EXPLANATION_OF_CLASSIFICATION\x10\n\x12 \n\x1c\x43OMMENT_TYPE_FLAGGED_COMMENT\x10\x0b*\x98\x02\n\x12NucleotideSequence\x12#\n\x1fNUCLEOTIDE_SEQUENCE_UNSPECIFIED\x10\x00\x12)\n%NUCLEOTIDE_SEQUENCE_GENOMIC_TOP_LEVEL\x10\x01\x12,\n(NUCLEOTIDE_SEQUENCE_GENOMIC_REF_SEQ_GENE\x10\x02\x12\x1f\n\x1bNUCLEOTIDE_SEQUENCE_GENOMIC\x10\x03\x12\x1e\n\x1aNUCLEOTIDE_SEQUENCE_CODING\x10\x04\x12"\n\x1eNUCLEOTIDE_SEQUENCE_NON_CODING\x10\x05\x12\x1f\n\x1bNUCLEOTIDE_SEQUENCE_PROTEIN\x10\x06*Q\n\x0fProteinSequence\x12 \n\x1cPROTEIN_SEQUENCE_UNSPECIFIED\x10\x00\x12\x1c\n\x18PROTEIN_SEQUENCE_PROTEIN\x10\x01*\xef\x01\n\x10PhenotypeSetType\x12"\n\x1ePHENOTYPE_SET_TYPE_UNSPECIFIED\x10\x00\x12\x1e\n\x1aPHENOTYPE_SET_TYPE_DISEASE\x10\x01\x12$\n PHENOTYPE_SET_TYPE_DRUG_RESPONSE\x10\x02\x12\x1e\n\x1aPHENOTYPE_SET_TYPE_FINDING\x10\x03\x12,\n(PHENOTYPE_SET_TYPE_PHENOTYPE_INSTRUCTION\x10\x04\x12#\n\x1fPHENOTYPE_SET_TYPE_TRAIT_CHOICE\x10\x05*\xa0\x01\n\rVariationType\x12\x1e\n\x1aVARIATION_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18VARIATION_TYPE_DIPLOTYPE\x10\x01\x12(\n$VARIATION_TYPE_COMPOUND_HETEROZYGOTE\x10\x02\x12\'\n#VARIATION_TYPE_DISTINCT_CHROMOSOMES\x10\x03*\xa7\x01\n\x0c\x45videnceType\x12\x1d\n\x19\x45VIDENCE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15\x45VIDENCE_TYPE_GENETIC\x10\x01\x12\x1e\n\x1a\x45VIDENCE_TYPE_EXPERIMENTAL\x10\x02\x12\x1c\n\x18\x45VIDENCE_TYPE_POPULATION\x10\x03\x12\x1f\n\x1b\x45VIDENCE_TYPE_COMPUTATIONAL\x10\x04*\xc0\x03\n\x0eMethodListType\x12 \n\x1cMETHOD_LIST_TYPE_UNSPECIFIED\x10\x00\x12$\n METHOD_LIST_TYPE_LITERATURE_ONLY\x10\x01\x12)\n%METHOD_LIST_TYPE_REFERENCE_POPULATION\x10\x02\x12!\n\x1dMETHOD_LIST_TYPE_CASE_CONTROL\x10\x03\x12%\n!METHOD_LIST_TYPE_CLINICAL_TESTING\x10\x04\x12\x1d\n\x19METHOD_LIST_TYPE_IN_VITRO\x10\x05\x12\x1c\n\x18METHOD_LIST_TYPE_IN_VIVO\x10\x06\x12\x1d\n\x19METHOD_LIST_TYPE_RESEARCH\x10\x07\x12\x1d\n\x19METHOD_LIST_TYPE_CURATION\x10\x08\x12!\n\x1dMETHOD_LIST_TYPE_NOT_PROVIDED\x10\t\x12,\n(METHOD_LIST_TYPE_PROVIDER_INTERPRETATION\x10\n\x12%\n!METHOD_LIST_TYPE_PHENOTYPING_ONLY\x10\x0b*\xa4\x01\n\x08HgvsType\x12\x19\n\x15HGVS_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10HGVS_TYPE_CODING\x10\x01\x12\x15\n\x11HGVS_TYPE_GENOMIC\x10\x02\x12\x1f\n\x1bHGVS_TYPE_GENOMIC_TOP_LEVEL\x10\x03\x12\x18\n\x14HGVS_TYPE_NON_CODING\x10\x04\x12\x15\n\x11HGVS_TYPE_PROTEIN\x10\x05*\xfa\x01\n"ClinicalFeaturesAffectedStatusType\x12\x36\n2CLINICAL_FEATURES_AFFECTED_STATUS_TYPE_UNSPECIFIED\x10\x00\x12\x32\n.CLINICAL_FEATURES_AFFECTED_STATUS_TYPE_PRESENT\x10\x01\x12\x31\n-CLINICAL_FEATURES_AFFECTED_STATUS_TYPE_ABSENT\x10\x02\x12\x35\n1CLINICAL_FEATURES_AFFECTED_STATUS_TYPE_NOT_TESTED\x10\x03*\x9b\x02\n\x12HaploVariationType\x12$\n HAPLO_VARIATION_TYPE_UNSPECIFIED\x10\x00\x12"\n\x1eHAPLO_VARIATION_TYPE_HAPLOTYPE\x10\x01\x12\x31\n-HAPLO_VARIATION_TYPE_HAPLOTYPE_SINGLE_VARIANT\x10\x02\x12"\n\x1eHAPLO_VARIATION_TYPE_VARIATION\x10\x03\x12&\n"HAPLO_VARIATION_TYPE_PHASE_UNKNOWN\x10\x04\x12<\n8HAPLO_VARIATION_TYPE_HAPLOTYPE_DEFINED_BY_SINGLE_VARIANT\x10\x05\x62\x06proto3'
)
_globals = globals()
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "clinvar_data.pbs.clinvar_public_pb2", _globals)
if _descriptor._USE_C_DESCRIPTORS == False:
+
DESCRIPTOR._options = None
- _globals["_GENEVARIANTRELATIONSHIP"]._serialized_start = 36167
- _globals["_GENEVARIANTRELATIONSHIP"]._serialized_end = 36617
- _globals["_SEVERITY"]._serialized_start = 36619
- _globals["_SEVERITY"]._serialized_end = 36718
- _globals["_STATUS"]._serialized_start = 36721
- _globals["_STATUS"]._serialized_end = 36967
- _globals["_SUBMITTERREVIEWSTATUS"]._serialized_start = 36970
- _globals["_SUBMITTERREVIEWSTATUS"]._serialized_end = 37761
- _globals["_ZYGOSITY"]._serialized_start = 37764
- _globals["_ZYGOSITY"]._serialized_end = 37947
- _globals["_ASSERTION"]._serialized_start = 37950
- _globals["_ASSERTION"]._serialized_end = 38231
- _globals["_AGGREGATEGERMLINEREVIEWSTATUS"]._serialized_start = 38234
- _globals["_AGGREGATEGERMLINEREVIEWSTATUS"]._serialized_end = 38974
- _globals["_AGGREGATESOMATICCLINICALIMPACTREVIEWSTATUS"]._serialized_start = 38977
- _globals["_AGGREGATESOMATICCLINICALIMPACTREVIEWSTATUS"]._serialized_end = 39768
- _globals["_AGGREGATEONCOGENICITYREVIEWSTATUS"]._serialized_start = 39771
- _globals["_AGGREGATEONCOGENICITYREVIEWSTATUS"]._serialized_end = 40555
- _globals["_ORIGIN"]._serialized_start = 40558
- _globals["_ORIGIN"]._serialized_end = 40928
- _globals["_CHROMOSOME"]._serialized_start = 40931
- _globals["_CHROMOSOME"]._serialized_end = 41474
- _globals["_COMMENTTYPE"]._serialized_start = 41477
- _globals["_COMMENTTYPE"]._serialized_end = 41993
- _globals["_NUCLEOTIDESEQUENCE"]._serialized_start = 41996
- _globals["_NUCLEOTIDESEQUENCE"]._serialized_end = 42276
- _globals["_PROTEINSEQUENCE"]._serialized_start = 42278
- _globals["_PROTEINSEQUENCE"]._serialized_end = 42359
- _globals["_PHENOTYPESETTYPE"]._serialized_start = 42362
- _globals["_PHENOTYPESETTYPE"]._serialized_end = 42601
- _globals["_VARIATIONTYPE"]._serialized_start = 42604
- _globals["_VARIATIONTYPE"]._serialized_end = 42764
- _globals["_EVIDENCETYPE"]._serialized_start = 42767
- _globals["_EVIDENCETYPE"]._serialized_end = 42934
- _globals["_METHODLISTTYPE"]._serialized_start = 42937
- _globals["_METHODLISTTYPE"]._serialized_end = 43385
- _globals["_HGVSTYPE"]._serialized_start = 43388
- _globals["_HGVSTYPE"]._serialized_end = 43552
- _globals["_CLINICALFEATURESAFFECTEDSTATUSTYPE"]._serialized_start = 43555
- _globals["_CLINICALFEATURESAFFECTEDSTATUSTYPE"]._serialized_end = 43805
- _globals["_HAPLOVARIATIONTYPE"]._serialized_start = 43808
- _globals["_HAPLOVARIATIONTYPE"]._serialized_end = 44091
+ _globals["_GENEVARIANTRELATIONSHIP"]._serialized_start = 36055
+ _globals["_GENEVARIANTRELATIONSHIP"]._serialized_end = 36505
+ _globals["_SEVERITY"]._serialized_start = 36507
+ _globals["_SEVERITY"]._serialized_end = 36606
+ _globals["_STATUS"]._serialized_start = 36609
+ _globals["_STATUS"]._serialized_end = 36855
+ _globals["_SUBMITTERREVIEWSTATUS"]._serialized_start = 36858
+ _globals["_SUBMITTERREVIEWSTATUS"]._serialized_end = 37649
+ _globals["_ZYGOSITY"]._serialized_start = 37652
+ _globals["_ZYGOSITY"]._serialized_end = 37835
+ _globals["_ASSERTION"]._serialized_start = 37838
+ _globals["_ASSERTION"]._serialized_end = 38119
+ _globals["_AGGREGATEGERMLINEREVIEWSTATUS"]._serialized_start = 38122
+ _globals["_AGGREGATEGERMLINEREVIEWSTATUS"]._serialized_end = 38862
+ _globals["_AGGREGATESOMATICCLINICALIMPACTREVIEWSTATUS"]._serialized_start = 38865
+ _globals["_AGGREGATESOMATICCLINICALIMPACTREVIEWSTATUS"]._serialized_end = 39656
+ _globals["_AGGREGATEONCOGENICITYREVIEWSTATUS"]._serialized_start = 39659
+ _globals["_AGGREGATEONCOGENICITYREVIEWSTATUS"]._serialized_end = 40443
+ _globals["_ORIGIN"]._serialized_start = 40446
+ _globals["_ORIGIN"]._serialized_end = 40816
+ _globals["_CHROMOSOME"]._serialized_start = 40819
+ _globals["_CHROMOSOME"]._serialized_end = 41362
+ _globals["_COMMENTTYPE"]._serialized_start = 41365
+ _globals["_COMMENTTYPE"]._serialized_end = 41881
+ _globals["_NUCLEOTIDESEQUENCE"]._serialized_start = 41884
+ _globals["_NUCLEOTIDESEQUENCE"]._serialized_end = 42164
+ _globals["_PROTEINSEQUENCE"]._serialized_start = 42166
+ _globals["_PROTEINSEQUENCE"]._serialized_end = 42247
+ _globals["_PHENOTYPESETTYPE"]._serialized_start = 42250
+ _globals["_PHENOTYPESETTYPE"]._serialized_end = 42489
+ _globals["_VARIATIONTYPE"]._serialized_start = 42492
+ _globals["_VARIATIONTYPE"]._serialized_end = 42652
+ _globals["_EVIDENCETYPE"]._serialized_start = 42655
+ _globals["_EVIDENCETYPE"]._serialized_end = 42822
+ _globals["_METHODLISTTYPE"]._serialized_start = 42825
+ _globals["_METHODLISTTYPE"]._serialized_end = 43273
+ _globals["_HGVSTYPE"]._serialized_start = 43276
+ _globals["_HGVSTYPE"]._serialized_end = 43440
+ _globals["_CLINICALFEATURESAFFECTEDSTATUSTYPE"]._serialized_start = 43443
+ _globals["_CLINICALFEATURESAFFECTEDSTATUSTYPE"]._serialized_end = 43693
+ _globals["_HAPLOVARIATIONTYPE"]._serialized_start = 43696
+ _globals["_HAPLOVARIATIONTYPE"]._serialized_end = 43979
_globals["_COMMENT"]._serialized_start = 108
_globals["_COMMENT"]._serialized_end = 248
_globals["_XREF"]._serialized_start = 251
@@ -92,191 +93,191 @@
_globals["_ATTRIBUTESETELEMENT_ATTRIBUTE"]._serialized_start = 2732
_globals["_ATTRIBUTESETELEMENT_ATTRIBUTE"]._serialized_end = 2819
_globals["_TRAIT"]._serialized_start = 2822
- _globals["_TRAIT"]._serialized_end = 3988
+ _globals["_TRAIT"]._serialized_end = 3845
_globals["_TRAIT_TRAITRELATIONSHIP"]._serialized_start = 3322
- _globals["_TRAIT_TRAITRELATIONSHIP"]._serialized_end = 3988
- _globals["_TRAIT_TRAITRELATIONSHIP_TYPE"]._serialized_start = 3824
- _globals["_TRAIT_TRAITRELATIONSHIP_TYPE"]._serialized_end = 3988
- _globals["_INDICATION"]._serialized_start = 3991
- _globals["_INDICATION"]._serialized_end = 4491
- _globals["_INDICATION_TYPE"]._serialized_start = 4442
- _globals["_INDICATION_TYPE"]._serialized_end = 4491
- _globals["_TRAITSET"]._serialized_start = 4494
- _globals["_TRAITSET"]._serialized_end = 5508
- _globals["_TRAITSET_TYPE"]._serialized_start = 5227
- _globals["_TRAITSET_TYPE"]._serialized_end = 5370
- _globals["_AGGREGATEDGERMLINECLASSIFICATION"]._serialized_start = 5511
- _globals["_AGGREGATEDGERMLINECLASSIFICATION"]._serialized_end = 6393
- _globals["_AGGREGATEDSOMATICCLINICALIMPACT"]._serialized_start = 6396
- _globals["_AGGREGATEDSOMATICCLINICALIMPACT"]._serialized_end = 7206
- _globals["_AGGREGATEDONCOGENICITYCLASSIFICATION"]._serialized_start = 7209
- _globals["_AGGREGATEDONCOGENICITYCLASSIFICATION"]._serialized_end = 8015
- _globals["_AGGREGATECLASSIFICATIONSET"]._serialized_start = 8018
- _globals["_AGGREGATECLASSIFICATIONSET"]._serialized_end = 8424
- _globals["_CLINICALSIGNIFICANCE"]._serialized_start = 8427
- _globals["_CLINICALSIGNIFICANCE"]._serialized_end = 8939
- _globals["_ALLELEDESCRIPTION"]._serialized_start = 8942
- _globals["_ALLELEDESCRIPTION"]._serialized_end = 9461
- _globals["_ALLELEDESCRIPTION_RELATIVEORIENTATION"]._serialized_start = 9242
- _globals["_ALLELEDESCRIPTION_RELATIVEORIENTATION"]._serialized_end = 9397
- _globals["_RECORDHISTORY"]._serialized_start = 9464
- _globals["_RECORDHISTORY"]._serialized_end = 9685
- _globals["_CLASSIFICATIONSCV"]._serialized_start = 9688
- _globals["_CLASSIFICATIONSCV"]._serialized_end = 10872
- _globals["_CLASSIFICATIONSCV_SOMATICCLINICALIMPACT"]._serialized_start = 10367
- _globals["_CLASSIFICATIONSCV_SOMATICCLINICALIMPACT"]._serialized_end = 10659
- _globals["_CLASSIFICATIONSCV_CLASSIFICATIONSCORE"]._serialized_start = 10661
- _globals["_CLASSIFICATIONSCV_CLASSIFICATIONSCORE"]._serialized_end = 10725
- _globals["_SUBMITTERIDENTIFIERS"]._serialized_start = 10875
- _globals["_SUBMITTERIDENTIFIERS"]._serialized_end = 11011
- _globals["_SPECIES"]._serialized_start = 11013
- _globals["_SPECIES"]._serialized_end = 11078
- _globals["_CLASSIFIEDCONDITION"]._serialized_start = 11080
- _globals["_CLASSIFIEDCONDITION"]._serialized_end = 11164
- _globals["_CLINICALASSERTIONRECORDHISTORY"]._serialized_start = 11167
- _globals["_CLINICALASSERTIONRECORDHISTORY"]._serialized_end = 11378
- _globals["_FUNCTIONALCONSEQUENCE"]._serialized_start = 11381
- _globals["_FUNCTIONALCONSEQUENCE"]._serialized_end = 11595
- _globals["_GENERALCITATIONS"]._serialized_start = 11598
- _globals["_GENERALCITATIONS"]._serialized_end = 11732
- _globals["_COOCCURRENCE"]._serialized_start = 11735
- _globals["_COOCCURRENCE"]._serialized_end = 11939
- _globals["_SUBMITTER"]._serialized_start = 11942
- _globals["_SUBMITTER"]._serialized_end = 12187
- _globals["_SUBMITTER_TYPE"]._serialized_start = 12104
- _globals["_SUBMITTER_TYPE"]._serialized_end = 12187
- _globals["_DOSAGESENSITIVITY"]._serialized_start = 12190
- _globals["_DOSAGESENSITIVITY"]._serialized_end = 12334
- _globals["_OTHERNAME"]._serialized_start = 12336
- _globals["_OTHERNAME"]._serialized_end = 12390
- _globals["_DELETEDSCV"]._serialized_start = 12392
- _globals["_DELETEDSCV"]._serialized_end = 12490
- _globals["_LOCATION"]._serialized_start = 12493
- _globals["_LOCATION"]._serialized_end = 13900
- _globals["_LOCATION_SEQUENCELOCATION"]._serialized_start = 12703
- _globals["_LOCATION_SEQUENCELOCATION"]._serialized_end = 13900
- _globals["_LOCATION_SEQUENCELOCATION_ASSEMBLYSTATUS"]._serialized_start = 13433
- _globals["_LOCATION_SEQUENCELOCATION_ASSEMBLYSTATUS"]._serialized_end = 13541
- _globals["_SCV"]._serialized_start = 13902
- _globals["_SCV"]._serialized_end = 13973
- _globals["_FAMILYDATA"]._serialized_start = 13976
- _globals["_FAMILYDATA"]._serialized_end = 14348
- _globals["_SAMPLE"]._serialized_start = 14351
- _globals["_SAMPLE"]._serialized_end = 17199
- _globals["_SAMPLE_SAMPLEDESCRIPTION"]._serialized_start = 15611
- _globals["_SAMPLE_SAMPLEDESCRIPTION"]._serialized_end = 15793
- _globals["_SAMPLE_AGE"]._serialized_start = 15796
- _globals["_SAMPLE_AGE"]._serialized_end = 15942
- _globals["_SAMPLE_SOMATICVARIANTINNORMALTISSUE"]._serialized_start = 15945
- _globals["_SAMPLE_SOMATICVARIANTINNORMALTISSUE"]._serialized_end = 16165
- _globals["_SAMPLE_AGEUNIT"]._serialized_start = 16168
- _globals["_SAMPLE_AGEUNIT"]._serialized_end = 16344
- _globals["_SAMPLE_AGETYPE"]._serialized_start = 16346
- _globals["_SAMPLE_AGETYPE"]._serialized_end = 16446
- _globals["_SAMPLE_AFFECTEDSTATUS"]._serialized_start = 16449
- _globals["_SAMPLE_AFFECTEDSTATUS"]._serialized_end = 16646
- _globals["_SAMPLE_GENDER"]._serialized_start = 16648
- _globals["_SAMPLE_GENDER"]._serialized_end = 16734
- _globals["_SAMPLE_SOURCETYPE"]._serialized_start = 16736
- _globals["_SAMPLE_SOURCETYPE"]._serialized_end = 16843
- _globals["_METHOD"]._serialized_start = 17202
- _globals["_METHOD"]._serialized_end = 19227
- _globals["_METHOD_METHODATTRIBUTE"]._serialized_start = 17982
- _globals["_METHOD_METHODATTRIBUTE"]._serialized_end = 18414
- _globals["_METHOD_METHODATTRIBUTE_ATTRIBUTETYPE"]._serialized_start = 18149
- _globals["_METHOD_METHODATTRIBUTE_ATTRIBUTETYPE"]._serialized_end = 18414
- _globals["_METHOD_OBSMETHODATTRIBUTE"]._serialized_start = 18417
- _globals["_METHOD_OBSMETHODATTRIBUTE"]._serialized_end = 18769
- _globals["_METHOD_OBSMETHODATTRIBUTE_ATTRIBUTETYPE"]._serialized_start = 18649
- _globals["_METHOD_OBSMETHODATTRIBUTE_ATTRIBUTETYPE"]._serialized_end = 18769
- _globals["_METHOD_RESULTTYPE"]._serialized_start = 18772
- _globals["_METHOD_RESULTTYPE"]._serialized_end = 18935
- _globals["_METHOD_SOURCETYPE"]._serialized_start = 18938
- _globals["_METHOD_SOURCETYPE"]._serialized_end = 19074
- _globals["_ALLELESCV"]._serialized_start = 19230
- _globals["_ALLELESCV"]._serialized_end = 20607
- _globals["_ALLELESCV_GENE"]._serialized_start = 20010
- _globals["_ALLELESCV_GENE"]._serialized_end = 20262
- _globals["_ALLELESCV_MOLECULARCONSEQUENCE"]._serialized_start = 20265
- _globals["_ALLELESCV_MOLECULARCONSEQUENCE"]._serialized_end = 20563
- _globals["_HAPLOTYPESCV"]._serialized_start = 20610
- _globals["_HAPLOTYPESCV"]._serialized_end = 21391
- _globals["_GENOTYPESCV"]._serialized_start = 21394
- _globals["_GENOTYPESCV"]._serialized_end = 22090
- _globals["_OBSERVEDIN"]._serialized_start = 22093
- _globals["_OBSERVEDIN"]._serialized_end = 24241
- _globals["_OBSERVEDIN_OBSERVEDDATAATTRIBUTE"]._serialized_start = 22563
- _globals["_OBSERVEDIN_OBSERVEDDATAATTRIBUTE"]._serialized_end = 23574
- _globals["_OBSERVEDIN_OBSERVEDDATAATTRIBUTE_TYPE"]._serialized_start = 22737
- _globals["_OBSERVEDIN_OBSERVEDDATAATTRIBUTE_TYPE"]._serialized_end = 23574
- _globals["_OBSERVEDIN_OBSERVEDDATA"]._serialized_start = 23577
- _globals["_OBSERVEDIN_OBSERVEDDATA"]._serialized_end = 23933
- _globals["_OBSERVEDIN_METHODTYPE"]._serialized_start = 23936
- _globals["_OBSERVEDIN_METHODTYPE"]._serialized_end = 24227
- _globals["_CLINICALASSERTION"]._serialized_start = 24244
- _globals["_CLINICALASSERTION"]._serialized_end = 27017
- _globals["_CLINICALASSERTION_CLINVARSUBMISSIONID"]._serialized_start = 25721
- _globals["_CLINICALASSERTION_CLINVARSUBMISSIONID"]._serialized_end = 25911
- _globals["_CLINICALASSERTION_ATTRIBUTESETELEMENT"]._serialized_start = 25914
- _globals["_CLINICALASSERTION_ATTRIBUTESETELEMENT"]._serialized_end = 26484
- _globals["_CLINICALASSERTION_ATTRIBUTESETELEMENT_TYPE"]._serialized_start = 26272
- _globals["_CLINICALASSERTION_ATTRIBUTESETELEMENT_TYPE"]._serialized_end = 26484
- _globals["_CLINICALASSERTION_CLINVARACCESSION"]._serialized_start = 26487
- _globals["_CLINICALASSERTION_CLINVARACCESSION"]._serialized_end = 26771
- _globals["_CLINICALASSERTION_RECORDSTATUS"]._serialized_start = 26773
- _globals["_CLINICALASSERTION_RECORDSTATUS"]._serialized_end = 26900
- _globals["_ALLELE"]._serialized_start = 27020
- _globals["_ALLELE"]._serialized_end = 28796
- _globals["_ALLELE_GENE"]._serialized_start = 27917
- _globals["_ALLELE_GENE"]._serialized_end = 28464
- _globals["_ALLELE_ALLELEFREQUENCY"]._serialized_start = 28466
- _globals["_ALLELE_ALLELEFREQUENCY"]._serialized_end = 28540
- _globals["_ALLELE_GLOBALMINORALLELEFREQUENCY"]._serialized_start = 28543
- _globals["_ALLELE_GLOBALMINORALLELEFREQUENCY"]._serialized_end = 28672
- _globals["_ALLELE_NAME"]._serialized_start = 28674
- _globals["_ALLELE_NAME"]._serialized_end = 28723
- _globals["_HAPLOTYPE"]._serialized_start = 28799
- _globals["_HAPLOTYPE"]._serialized_end = 29556
- _globals["_INCLUDEDRECORD"]._serialized_start = 29559
- _globals["_INCLUDEDRECORD"]._serialized_end = 30206
- _globals["_INCLUDEDRECORD_CLASSIFIEDVARIATION"]._serialized_start = 30056
- _globals["_INCLUDEDRECORD_CLASSIFIEDVARIATION"]._serialized_end = 30154
- _globals["_GENOTYPE"]._serialized_start = 30209
- _globals["_GENOTYPE"]._serialized_end = 31068
- _globals["_RCVACCESSION"]._serialized_start = 31071
- _globals["_RCVACCESSION"]._serialized_end = 33409
- _globals["_RCVACCESSION_CLASSIFIEDCONDITIONLIST"]._serialized_start = 31417
- _globals["_RCVACCESSION_CLASSIFIEDCONDITIONLIST"]._serialized_end = 31571
- _globals["_RCVACCESSION_GERMLINECLASSIFICATION"]._serialized_start = 31574
- _globals["_RCVACCESSION_GERMLINECLASSIFICATION"]._serialized_end = 31957
- _globals["_RCVACCESSION_GERMLINECLASSIFICATION_DESCRIPTION"]._serialized_start = 31791
- _globals["_RCVACCESSION_GERMLINECLASSIFICATION_DESCRIPTION"]._serialized_end = 31957
- _globals["_RCVACCESSION_SOMATICCLINICALIMPACT"]._serialized_start = 31960
- _globals["_RCVACCESSION_SOMATICCLINICALIMPACT"]._serialized_end = 32529
- _globals["_RCVACCESSION_SOMATICCLINICALIMPACT_DESCRIPTION"]._serialized_start = 32189
- _globals["_RCVACCESSION_SOMATICCLINICALIMPACT_DESCRIPTION"]._serialized_end = 32529
- _globals["_RCVACCESSION_ONCOGENICITYCLASSIFICATION"]._serialized_start = 32532
- _globals["_RCVACCESSION_ONCOGENICITYCLASSIFICATION"]._serialized_end = 32927
- _globals["_RCVACCESSION_ONCOGENICITYCLASSIFICATION_DESCRIPTION"]._serialized_start = 31791
- _globals["_RCVACCESSION_ONCOGENICITYCLASSIFICATION_DESCRIPTION"]._serialized_end = 31957
- _globals["_RCVACCESSION_RCVCLASSIFICATIONS"]._serialized_start = 32930
- _globals["_RCVACCESSION_RCVCLASSIFICATIONS"]._serialized_end = 33369
- _globals["_CLASSIFIEDRECORD"]._serialized_start = 33412
- _globals["_CLASSIFIEDRECORD"]._serialized_end = 34771
- _globals["_CLASSIFIEDRECORD_RCVLIST"]._serialized_start = 34113
- _globals["_CLASSIFIEDRECORD_RCVLIST"]._serialized_end = 34313
- _globals["_CLASSIFIEDRECORD_TRAITMAPPING"]._serialized_start = 34316
- _globals["_CLASSIFIEDRECORD_TRAITMAPPING"]._serialized_end = 34635
- _globals["_CLASSIFIEDRECORD_TRAITMAPPING_MEDGEN"]._serialized_start = 34600
- _globals["_CLASSIFIEDRECORD_TRAITMAPPING_MEDGEN"]._serialized_end = 34635
- _globals["_CLASSIFIEDRECORD_MAPPINGTYPE"]._serialized_start = 34637
- _globals["_CLASSIFIEDRECORD_MAPPINGTYPE"]._serialized_end = 34726
- _globals["_VARIATIONARCHIVE"]._serialized_start = 34774
- _globals["_VARIATIONARCHIVE"]._serialized_end = 36007
- _globals["_VARIATIONARCHIVE_RECORDTYPE"]._serialized_start = 35712
- _globals["_VARIATIONARCHIVE_RECORDTYPE"]._serialized_end = 35807
- _globals["_VARIATIONARCHIVE_RECORDSTATUS"]._serialized_start = 35810
- _globals["_VARIATIONARCHIVE_RECORDSTATUS"]._serialized_end = 35965
- _globals["_CLINVARVARIATIONRELEASE"]._serialized_start = 36010
- _globals["_CLINVARVARIATIONRELEASE"]._serialized_end = 36164
+ _globals["_TRAIT_TRAITRELATIONSHIP"]._serialized_end = 3845
+ _globals["_TRAIT_TRAITRELATIONSHIP_TYPE"]._serialized_start = 3681
+ _globals["_TRAIT_TRAITRELATIONSHIP_TYPE"]._serialized_end = 3845
+ _globals["_INDICATION"]._serialized_start = 3848
+ _globals["_INDICATION"]._serialized_end = 4348
+ _globals["_INDICATION_TYPE"]._serialized_start = 4299
+ _globals["_INDICATION_TYPE"]._serialized_end = 4348
+ _globals["_TRAITSET"]._serialized_start = 4351
+ _globals["_TRAITSET"]._serialized_end = 5365
+ _globals["_TRAITSET_TYPE"]._serialized_start = 5084
+ _globals["_TRAITSET_TYPE"]._serialized_end = 5227
+ _globals["_AGGREGATEDGERMLINECLASSIFICATION"]._serialized_start = 5368
+ _globals["_AGGREGATEDGERMLINECLASSIFICATION"]._serialized_end = 6250
+ _globals["_AGGREGATEDSOMATICCLINICALIMPACT"]._serialized_start = 6253
+ _globals["_AGGREGATEDSOMATICCLINICALIMPACT"]._serialized_end = 7063
+ _globals["_AGGREGATEDONCOGENICITYCLASSIFICATION"]._serialized_start = 7066
+ _globals["_AGGREGATEDONCOGENICITYCLASSIFICATION"]._serialized_end = 7872
+ _globals["_AGGREGATECLASSIFICATIONSET"]._serialized_start = 7875
+ _globals["_AGGREGATECLASSIFICATIONSET"]._serialized_end = 8313
+ _globals["_CLINICALSIGNIFICANCE"]._serialized_start = 8316
+ _globals["_CLINICALSIGNIFICANCE"]._serialized_end = 8828
+ _globals["_ALLELEDESCRIPTION"]._serialized_start = 8831
+ _globals["_ALLELEDESCRIPTION"]._serialized_end = 9350
+ _globals["_ALLELEDESCRIPTION_RELATIVEORIENTATION"]._serialized_start = 9131
+ _globals["_ALLELEDESCRIPTION_RELATIVEORIENTATION"]._serialized_end = 9286
+ _globals["_RECORDHISTORY"]._serialized_start = 9353
+ _globals["_RECORDHISTORY"]._serialized_end = 9574
+ _globals["_CLASSIFICATIONSCV"]._serialized_start = 9577
+ _globals["_CLASSIFICATIONSCV"]._serialized_end = 10759
+ _globals["_CLASSIFICATIONSCV_SOMATICCLINICALIMPACT"]._serialized_start = 10255
+ _globals["_CLASSIFICATIONSCV_SOMATICCLINICALIMPACT"]._serialized_end = 10547
+ _globals["_CLASSIFICATIONSCV_CLASSIFICATIONSCORE"]._serialized_start = 10549
+ _globals["_CLASSIFICATIONSCV_CLASSIFICATIONSCORE"]._serialized_end = 10613
+ _globals["_SUBMITTERIDENTIFIERS"]._serialized_start = 10762
+ _globals["_SUBMITTERIDENTIFIERS"]._serialized_end = 10898
+ _globals["_SPECIES"]._serialized_start = 10900
+ _globals["_SPECIES"]._serialized_end = 10965
+ _globals["_CLASSIFIEDCONDITION"]._serialized_start = 10967
+ _globals["_CLASSIFIEDCONDITION"]._serialized_end = 11051
+ _globals["_CLINICALASSERTIONRECORDHISTORY"]._serialized_start = 11054
+ _globals["_CLINICALASSERTIONRECORDHISTORY"]._serialized_end = 11265
+ _globals["_FUNCTIONALCONSEQUENCE"]._serialized_start = 11268
+ _globals["_FUNCTIONALCONSEQUENCE"]._serialized_end = 11482
+ _globals["_GENERALCITATIONS"]._serialized_start = 11485
+ _globals["_GENERALCITATIONS"]._serialized_end = 11619
+ _globals["_COOCCURRENCE"]._serialized_start = 11622
+ _globals["_COOCCURRENCE"]._serialized_end = 11826
+ _globals["_SUBMITTER"]._serialized_start = 11829
+ _globals["_SUBMITTER"]._serialized_end = 12074
+ _globals["_SUBMITTER_TYPE"]._serialized_start = 11991
+ _globals["_SUBMITTER_TYPE"]._serialized_end = 12074
+ _globals["_DOSAGESENSITIVITY"]._serialized_start = 12077
+ _globals["_DOSAGESENSITIVITY"]._serialized_end = 12221
+ _globals["_OTHERNAME"]._serialized_start = 12223
+ _globals["_OTHERNAME"]._serialized_end = 12277
+ _globals["_DELETEDSCV"]._serialized_start = 12279
+ _globals["_DELETEDSCV"]._serialized_end = 12377
+ _globals["_LOCATION"]._serialized_start = 12380
+ _globals["_LOCATION"]._serialized_end = 13787
+ _globals["_LOCATION_SEQUENCELOCATION"]._serialized_start = 12590
+ _globals["_LOCATION_SEQUENCELOCATION"]._serialized_end = 13787
+ _globals["_LOCATION_SEQUENCELOCATION_ASSEMBLYSTATUS"]._serialized_start = 13320
+ _globals["_LOCATION_SEQUENCELOCATION_ASSEMBLYSTATUS"]._serialized_end = 13428
+ _globals["_SCV"]._serialized_start = 13789
+ _globals["_SCV"]._serialized_end = 13860
+ _globals["_FAMILYDATA"]._serialized_start = 13863
+ _globals["_FAMILYDATA"]._serialized_end = 14235
+ _globals["_SAMPLE"]._serialized_start = 14238
+ _globals["_SAMPLE"]._serialized_end = 17086
+ _globals["_SAMPLE_SAMPLEDESCRIPTION"]._serialized_start = 15498
+ _globals["_SAMPLE_SAMPLEDESCRIPTION"]._serialized_end = 15680
+ _globals["_SAMPLE_AGE"]._serialized_start = 15683
+ _globals["_SAMPLE_AGE"]._serialized_end = 15829
+ _globals["_SAMPLE_SOMATICVARIANTINNORMALTISSUE"]._serialized_start = 15832
+ _globals["_SAMPLE_SOMATICVARIANTINNORMALTISSUE"]._serialized_end = 16052
+ _globals["_SAMPLE_AGEUNIT"]._serialized_start = 16055
+ _globals["_SAMPLE_AGEUNIT"]._serialized_end = 16231
+ _globals["_SAMPLE_AGETYPE"]._serialized_start = 16233
+ _globals["_SAMPLE_AGETYPE"]._serialized_end = 16333
+ _globals["_SAMPLE_AFFECTEDSTATUS"]._serialized_start = 16336
+ _globals["_SAMPLE_AFFECTEDSTATUS"]._serialized_end = 16533
+ _globals["_SAMPLE_GENDER"]._serialized_start = 16535
+ _globals["_SAMPLE_GENDER"]._serialized_end = 16621
+ _globals["_SAMPLE_SOURCETYPE"]._serialized_start = 16623
+ _globals["_SAMPLE_SOURCETYPE"]._serialized_end = 16730
+ _globals["_METHOD"]._serialized_start = 17089
+ _globals["_METHOD"]._serialized_end = 19114
+ _globals["_METHOD_METHODATTRIBUTE"]._serialized_start = 17869
+ _globals["_METHOD_METHODATTRIBUTE"]._serialized_end = 18301
+ _globals["_METHOD_METHODATTRIBUTE_ATTRIBUTETYPE"]._serialized_start = 18036
+ _globals["_METHOD_METHODATTRIBUTE_ATTRIBUTETYPE"]._serialized_end = 18301
+ _globals["_METHOD_OBSMETHODATTRIBUTE"]._serialized_start = 18304
+ _globals["_METHOD_OBSMETHODATTRIBUTE"]._serialized_end = 18656
+ _globals["_METHOD_OBSMETHODATTRIBUTE_ATTRIBUTETYPE"]._serialized_start = 18536
+ _globals["_METHOD_OBSMETHODATTRIBUTE_ATTRIBUTETYPE"]._serialized_end = 18656
+ _globals["_METHOD_RESULTTYPE"]._serialized_start = 18659
+ _globals["_METHOD_RESULTTYPE"]._serialized_end = 18822
+ _globals["_METHOD_SOURCETYPE"]._serialized_start = 18825
+ _globals["_METHOD_SOURCETYPE"]._serialized_end = 18961
+ _globals["_ALLELESCV"]._serialized_start = 19117
+ _globals["_ALLELESCV"]._serialized_end = 20493
+ _globals["_ALLELESCV_GENE"]._serialized_start = 19896
+ _globals["_ALLELESCV_GENE"]._serialized_end = 20148
+ _globals["_ALLELESCV_MOLECULARCONSEQUENCE"]._serialized_start = 20151
+ _globals["_ALLELESCV_MOLECULARCONSEQUENCE"]._serialized_end = 20449
+ _globals["_HAPLOTYPESCV"]._serialized_start = 20496
+ _globals["_HAPLOTYPESCV"]._serialized_end = 21279
+ _globals["_GENOTYPESCV"]._serialized_start = 21282
+ _globals["_GENOTYPESCV"]._serialized_end = 21978
+ _globals["_OBSERVEDIN"]._serialized_start = 21981
+ _globals["_OBSERVEDIN"]._serialized_end = 24129
+ _globals["_OBSERVEDIN_OBSERVEDDATAATTRIBUTE"]._serialized_start = 22451
+ _globals["_OBSERVEDIN_OBSERVEDDATAATTRIBUTE"]._serialized_end = 23462
+ _globals["_OBSERVEDIN_OBSERVEDDATAATTRIBUTE_TYPE"]._serialized_start = 22625
+ _globals["_OBSERVEDIN_OBSERVEDDATAATTRIBUTE_TYPE"]._serialized_end = 23462
+ _globals["_OBSERVEDIN_OBSERVEDDATA"]._serialized_start = 23465
+ _globals["_OBSERVEDIN_OBSERVEDDATA"]._serialized_end = 23821
+ _globals["_OBSERVEDIN_METHODTYPE"]._serialized_start = 23824
+ _globals["_OBSERVEDIN_METHODTYPE"]._serialized_end = 24115
+ _globals["_CLINICALASSERTION"]._serialized_start = 24132
+ _globals["_CLINICALASSERTION"]._serialized_end = 26905
+ _globals["_CLINICALASSERTION_CLINVARSUBMISSIONID"]._serialized_start = 25609
+ _globals["_CLINICALASSERTION_CLINVARSUBMISSIONID"]._serialized_end = 25799
+ _globals["_CLINICALASSERTION_ATTRIBUTESETELEMENT"]._serialized_start = 25802
+ _globals["_CLINICALASSERTION_ATTRIBUTESETELEMENT"]._serialized_end = 26372
+ _globals["_CLINICALASSERTION_ATTRIBUTESETELEMENT_TYPE"]._serialized_start = 26160
+ _globals["_CLINICALASSERTION_ATTRIBUTESETELEMENT_TYPE"]._serialized_end = 26372
+ _globals["_CLINICALASSERTION_CLINVARACCESSION"]._serialized_start = 26375
+ _globals["_CLINICALASSERTION_CLINVARACCESSION"]._serialized_end = 26659
+ _globals["_CLINICALASSERTION_RECORDSTATUS"]._serialized_start = 26661
+ _globals["_CLINICALASSERTION_RECORDSTATUS"]._serialized_end = 26788
+ _globals["_ALLELE"]._serialized_start = 26908
+ _globals["_ALLELE"]._serialized_end = 28684
+ _globals["_ALLELE_GENE"]._serialized_start = 27805
+ _globals["_ALLELE_GENE"]._serialized_end = 28352
+ _globals["_ALLELE_ALLELEFREQUENCY"]._serialized_start = 28354
+ _globals["_ALLELE_ALLELEFREQUENCY"]._serialized_end = 28428
+ _globals["_ALLELE_GLOBALMINORALLELEFREQUENCY"]._serialized_start = 28431
+ _globals["_ALLELE_GLOBALMINORALLELEFREQUENCY"]._serialized_end = 28560
+ _globals["_ALLELE_NAME"]._serialized_start = 28562
+ _globals["_ALLELE_NAME"]._serialized_end = 28611
+ _globals["_HAPLOTYPE"]._serialized_start = 28687
+ _globals["_HAPLOTYPE"]._serialized_end = 29444
+ _globals["_INCLUDEDRECORD"]._serialized_start = 29447
+ _globals["_INCLUDEDRECORD"]._serialized_end = 30094
+ _globals["_INCLUDEDRECORD_CLASSIFIEDVARIATION"]._serialized_start = 29944
+ _globals["_INCLUDEDRECORD_CLASSIFIEDVARIATION"]._serialized_end = 30042
+ _globals["_GENOTYPE"]._serialized_start = 30097
+ _globals["_GENOTYPE"]._serialized_end = 30956
+ _globals["_RCVACCESSION"]._serialized_start = 30959
+ _globals["_RCVACCESSION"]._serialized_end = 33297
+ _globals["_RCVACCESSION_CLASSIFIEDCONDITIONLIST"]._serialized_start = 31305
+ _globals["_RCVACCESSION_CLASSIFIEDCONDITIONLIST"]._serialized_end = 31459
+ _globals["_RCVACCESSION_GERMLINECLASSIFICATION"]._serialized_start = 31462
+ _globals["_RCVACCESSION_GERMLINECLASSIFICATION"]._serialized_end = 31845
+ _globals["_RCVACCESSION_GERMLINECLASSIFICATION_DESCRIPTION"]._serialized_start = 31679
+ _globals["_RCVACCESSION_GERMLINECLASSIFICATION_DESCRIPTION"]._serialized_end = 31845
+ _globals["_RCVACCESSION_SOMATICCLINICALIMPACT"]._serialized_start = 31848
+ _globals["_RCVACCESSION_SOMATICCLINICALIMPACT"]._serialized_end = 32417
+ _globals["_RCVACCESSION_SOMATICCLINICALIMPACT_DESCRIPTION"]._serialized_start = 32077
+ _globals["_RCVACCESSION_SOMATICCLINICALIMPACT_DESCRIPTION"]._serialized_end = 32417
+ _globals["_RCVACCESSION_ONCOGENICITYCLASSIFICATION"]._serialized_start = 32420
+ _globals["_RCVACCESSION_ONCOGENICITYCLASSIFICATION"]._serialized_end = 32815
+ _globals["_RCVACCESSION_ONCOGENICITYCLASSIFICATION_DESCRIPTION"]._serialized_start = 31679
+ _globals["_RCVACCESSION_ONCOGENICITYCLASSIFICATION_DESCRIPTION"]._serialized_end = 31845
+ _globals["_RCVACCESSION_RCVCLASSIFICATIONS"]._serialized_start = 32818
+ _globals["_RCVACCESSION_RCVCLASSIFICATIONS"]._serialized_end = 33257
+ _globals["_CLASSIFIEDRECORD"]._serialized_start = 33300
+ _globals["_CLASSIFIEDRECORD"]._serialized_end = 34659
+ _globals["_CLASSIFIEDRECORD_RCVLIST"]._serialized_start = 34001
+ _globals["_CLASSIFIEDRECORD_RCVLIST"]._serialized_end = 34201
+ _globals["_CLASSIFIEDRECORD_TRAITMAPPING"]._serialized_start = 34204
+ _globals["_CLASSIFIEDRECORD_TRAITMAPPING"]._serialized_end = 34523
+ _globals["_CLASSIFIEDRECORD_TRAITMAPPING_MEDGEN"]._serialized_start = 34488
+ _globals["_CLASSIFIEDRECORD_TRAITMAPPING_MEDGEN"]._serialized_end = 34523
+ _globals["_CLASSIFIEDRECORD_MAPPINGTYPE"]._serialized_start = 34525
+ _globals["_CLASSIFIEDRECORD_MAPPINGTYPE"]._serialized_end = 34614
+ _globals["_VARIATIONARCHIVE"]._serialized_start = 34662
+ _globals["_VARIATIONARCHIVE"]._serialized_end = 35895
+ _globals["_VARIATIONARCHIVE_RECORDTYPE"]._serialized_start = 35600
+ _globals["_VARIATIONARCHIVE_RECORDTYPE"]._serialized_end = 35695
+ _globals["_VARIATIONARCHIVE_RECORDSTATUS"]._serialized_start = 35698
+ _globals["_VARIATIONARCHIVE_RECORDSTATUS"]._serialized_end = 35853
+ _globals["_CLINVARVARIATIONRELEASE"]._serialized_start = 35898
+ _globals["_CLINVARVARIATIONRELEASE"]._serialized_end = 36052
# @@protoc_insertion_point(module_scope)
diff --git a/clinvar_data/pbs/clinvar_public_pb2.pyi b/clinvar_data/pbs/clinvar_public_pb2.pyi
index 3786435..5c17456 100644
--- a/clinvar_data/pbs/clinvar_public_pb2.pyi
+++ b/clinvar_data/pbs/clinvar_public_pb2.pyi
@@ -2296,8 +2296,6 @@ class Trait(google.protobuf.message.Message):
"""corresponds to "Finding member" """
NAMES_FIELD_NUMBER: builtins.int
- SYMBOLS_FIELD_NUMBER: builtins.int
- ATTRIBUTES_FIELD_NUMBER: builtins.int
CITATIONS_FIELD_NUMBER: builtins.int
XREFS_FIELD_NUMBER: builtins.int
COMMENTS_FIELD_NUMBER: builtins.int
@@ -2316,28 +2314,9 @@ class Trait(google.protobuf.message.Message):
]:
"""nested elements
- names
-
- NB: in XSD this is explictely given as unbounded but XML always has
- one element
+ Name(s) of the trait.
"""
- @property
- def symbols(
- self,
- ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
- global___GenericSetElement
- ]:
- """symbols (NB: never occur in the XML)"""
-
- @property
- def attributes(
- self,
- ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
- global___AttributeSetElement
- ]:
- """attributes (NB: never occur in the XML)"""
-
@property
def citations(
self,
@@ -2366,8 +2345,6 @@ class Trait(google.protobuf.message.Message):
self,
*,
names: collections.abc.Iterable[global___GenericSetElement] | None = ...,
- symbols: collections.abc.Iterable[global___GenericSetElement] | None = ...,
- attributes: collections.abc.Iterable[global___AttributeSetElement] | None = ...,
citations: collections.abc.Iterable[global___Citation] | None = ...,
xrefs: collections.abc.Iterable[global___Xref] | None = ...,
comments: collections.abc.Iterable[global___Comment] | None = ...,
@@ -2377,8 +2354,6 @@ class Trait(google.protobuf.message.Message):
def ClearField(
self,
field_name: typing.Literal[
- "attributes",
- b"attributes",
"citations",
b"citations",
"comments",
@@ -2387,8 +2362,6 @@ class Trait(google.protobuf.message.Message):
b"names",
"sources",
b"sources",
- "symbols",
- b"symbols",
"type",
b"type",
"xrefs",
@@ -3422,18 +3395,14 @@ class AggregateClassificationSet(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
GERMLINE_CLASSIFICATION_FIELD_NUMBER: builtins.int
- SOMATIC_CLINICAL_IMPACTS_FIELD_NUMBER: builtins.int
+ SOMATIC_CLINICAL_IMPACT_FIELD_NUMBER: builtins.int
ONCOGENICITY_CLASSIFICATION_FIELD_NUMBER: builtins.int
@property
def germline_classification(self) -> global___AggregatedGermlineClassification:
"""The aggregate germline classification."""
@property
- def somatic_clinical_impacts(
- self,
- ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
- global___AggregatedSomaticClinicalImpact
- ]:
+ def somatic_clinical_impact(self) -> global___AggregatedSomaticClinicalImpact:
"""The aggregate somatic clinical impact."""
@property
@@ -3444,9 +3413,7 @@ class AggregateClassificationSet(google.protobuf.message.Message):
self,
*,
germline_classification: global___AggregatedGermlineClassification | None = ...,
- somatic_clinical_impacts: (
- collections.abc.Iterable[global___AggregatedSomaticClinicalImpact] | None
- ) = ...,
+ somatic_clinical_impact: global___AggregatedSomaticClinicalImpact | None = ...,
oncogenicity_classification: global___AggregatedOncogenicityClassification | None = ...,
) -> None: ...
def HasField(
@@ -3456,10 +3423,14 @@ class AggregateClassificationSet(google.protobuf.message.Message):
b"_germline_classification",
"_oncogenicity_classification",
b"_oncogenicity_classification",
+ "_somatic_clinical_impact",
+ b"_somatic_clinical_impact",
"germline_classification",
b"germline_classification",
"oncogenicity_classification",
b"oncogenicity_classification",
+ "somatic_clinical_impact",
+ b"somatic_clinical_impact",
],
) -> builtins.bool: ...
def ClearField(
@@ -3469,12 +3440,14 @@ class AggregateClassificationSet(google.protobuf.message.Message):
b"_germline_classification",
"_oncogenicity_classification",
b"_oncogenicity_classification",
+ "_somatic_clinical_impact",
+ b"_somatic_clinical_impact",
"germline_classification",
b"germline_classification",
"oncogenicity_classification",
b"oncogenicity_classification",
- "somatic_clinical_impacts",
- b"somatic_clinical_impacts",
+ "somatic_clinical_impact",
+ b"somatic_clinical_impact",
],
) -> None: ...
@typing.overload
@@ -3488,6 +3461,10 @@ class AggregateClassificationSet(google.protobuf.message.Message):
"_oncogenicity_classification", b"_oncogenicity_classification"
],
) -> typing.Literal["oncogenicity_classification"] | None: ...
+ @typing.overload
+ def WhichOneof(
+ self, oneof_group: typing.Literal["_somatic_clinical_impact", b"_somatic_clinical_impact"]
+ ) -> typing.Literal["somatic_clinical_impact"] | None: ...
global___AggregateClassificationSet = AggregateClassificationSet
@@ -3969,7 +3946,7 @@ class ClassificationScv(google.protobuf.message.Message):
REVIEW_STATUS_FIELD_NUMBER: builtins.int
GERMLINE_CLASSIFICATION_FIELD_NUMBER: builtins.int
- SOMATIC_CLINICAL_IMPACTS_FIELD_NUMBER: builtins.int
+ SOMATIC_CLINICAL_IMPACT_FIELD_NUMBER: builtins.int
ONCOGENICITY_CLASSIFICATION_FIELD_NUMBER: builtins.int
EXPLANATION_OF_CLASSIFICATION_FIELD_NUMBER: builtins.int
CLASSIFICATION_SCORES_FIELD_NUMBER: builtins.int
@@ -3993,7 +3970,7 @@ class ClassificationScv(google.protobuf.message.Message):
explanation_of_classification: builtins.str
"""Optional explanation of classification."""
@property
- def somatic_clinical_impacts(self) -> global___ClassificationScv.SomaticClinicalImpact:
+ def somatic_clinical_impact(self) -> global___ClassificationScv.SomaticClinicalImpact:
"""Information on the clinical impact; mutually exlusive with `germline_classification`
and `oncogenicity_classification`.
"""
@@ -4036,7 +4013,7 @@ class ClassificationScv(google.protobuf.message.Message):
*,
review_status: global___SubmitterReviewStatus.ValueType = ...,
germline_classification: builtins.str | None = ...,
- somatic_clinical_impacts: global___ClassificationScv.SomaticClinicalImpact | None = ...,
+ somatic_clinical_impact: global___ClassificationScv.SomaticClinicalImpact | None = ...,
oncogenicity_classification: builtins.str | None = ...,
explanation_of_classification: builtins.str | None = ...,
classification_scores: (
@@ -4058,8 +4035,8 @@ class ClassificationScv(google.protobuf.message.Message):
b"_germline_classification",
"_oncogenicity_classification",
b"_oncogenicity_classification",
- "_somatic_clinical_impacts",
- b"_somatic_clinical_impacts",
+ "_somatic_clinical_impact",
+ b"_somatic_clinical_impact",
"date_last_evaluated",
b"date_last_evaluated",
"explanation_of_classification",
@@ -4068,8 +4045,8 @@ class ClassificationScv(google.protobuf.message.Message):
b"germline_classification",
"oncogenicity_classification",
b"oncogenicity_classification",
- "somatic_clinical_impacts",
- b"somatic_clinical_impacts",
+ "somatic_clinical_impact",
+ b"somatic_clinical_impact",
],
) -> builtins.bool: ...
def ClearField(
@@ -4083,8 +4060,8 @@ class ClassificationScv(google.protobuf.message.Message):
b"_germline_classification",
"_oncogenicity_classification",
b"_oncogenicity_classification",
- "_somatic_clinical_impacts",
- b"_somatic_clinical_impacts",
+ "_somatic_clinical_impact",
+ b"_somatic_clinical_impact",
"citations",
b"citations",
"classification_scores",
@@ -4101,8 +4078,8 @@ class ClassificationScv(google.protobuf.message.Message):
b"oncogenicity_classification",
"review_status",
b"review_status",
- "somatic_clinical_impacts",
- b"somatic_clinical_impacts",
+ "somatic_clinical_impact",
+ b"somatic_clinical_impact",
"xrefs",
b"xrefs",
],
@@ -4131,8 +4108,8 @@ class ClassificationScv(google.protobuf.message.Message):
) -> typing.Literal["oncogenicity_classification"] | None: ...
@typing.overload
def WhichOneof(
- self, oneof_group: typing.Literal["_somatic_clinical_impacts", b"_somatic_clinical_impacts"]
- ) -> typing.Literal["somatic_clinical_impacts"] | None: ...
+ self, oneof_group: typing.Literal["_somatic_clinical_impact", b"_somatic_clinical_impact"]
+ ) -> typing.Literal["somatic_clinical_impact"] | None: ...
global___ClassificationScv = ClassificationScv
@@ -6707,7 +6684,7 @@ class AlleleScv(google.protobuf.message.Message):
) -> typing.Literal["so_id"] | None: ...
GENES_FIELD_NUMBER: builtins.int
- NAMES_FIELD_NUMBER: builtins.int
+ NAME_FIELD_NUMBER: builtins.int
VARIANT_TYPE_FIELD_NUMBER: builtins.int
LOCATION_FIELD_NUMBER: builtins.int
OTHER_NAMES_FIELD_NUMBER: builtins.int
@@ -6739,9 +6716,7 @@ class AlleleScv(google.protobuf.message.Message):
"""
@property
- def names(
- self,
- ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___OtherName]:
+ def name(self) -> global___OtherName:
"""Name provided by the submitter."""
@property
@@ -6810,7 +6785,7 @@ class AlleleScv(google.protobuf.message.Message):
self,
*,
genes: collections.abc.Iterable[global___AlleleScv.Gene] | None = ...,
- names: collections.abc.Iterable[global___OtherName] | None = ...,
+ name: global___OtherName | None = ...,
variant_type: builtins.str | None = ...,
location: global___Location | None = ...,
other_names: collections.abc.Iterable[global___OtherName] | None = ...,
@@ -6840,6 +6815,8 @@ class AlleleScv(google.protobuf.message.Message):
b"allele_id",
"location",
b"location",
+ "name",
+ b"name",
"variant_type",
b"variant_type",
],
@@ -6869,8 +6846,8 @@ class AlleleScv(google.protobuf.message.Message):
b"location",
"molecular_consequences",
b"molecular_consequences",
- "names",
- b"names",
+ "name",
+ b"name",
"other_names",
b"other_names",
"protein_changes",
@@ -6908,7 +6885,7 @@ class HaplotypeScv(google.protobuf.message.Message):
SIMPLE_ALLELES_FIELD_NUMBER: builtins.int
NAME_FIELD_NUMBER: builtins.int
OTHER_NAMES_FIELD_NUMBER: builtins.int
- CLASSIFICATION_FIELD_NUMBER: builtins.int
+ CLASSIFICATIONS_FIELD_NUMBER: builtins.int
FUNCTIONAL_CONSEQUENCES_FIELD_NUMBER: builtins.int
ATTRIBUTES_FIELD_NUMBER: builtins.int
CITATIONS_FIELD_NUMBER: builtins.int
@@ -6938,7 +6915,7 @@ class HaplotypeScv(google.protobuf.message.Message):
"""Names other than 'preferred' used for the haplotype."""
@property
- def classification(self) -> global___AggregateClassificationSet:
+ def classifications(self) -> global___AggregateClassificationSet:
"""Classification of the variant."""
@property
@@ -6981,7 +6958,7 @@ class HaplotypeScv(google.protobuf.message.Message):
simple_alleles: collections.abc.Iterable[global___AlleleScv] | None = ...,
name: builtins.str | None = ...,
other_names: collections.abc.Iterable[global___OtherName] | None = ...,
- classification: global___AggregateClassificationSet | None = ...,
+ classifications: global___AggregateClassificationSet | None = ...,
functional_consequences: (
collections.abc.Iterable[global___FunctionalConsequence] | None
) = ...,
@@ -6996,8 +6973,8 @@ class HaplotypeScv(google.protobuf.message.Message):
def HasField(
self,
field_name: typing.Literal[
- "_classification",
- b"_classification",
+ "_classifications",
+ b"_classifications",
"_name",
b"_name",
"_number_of_chromosomes",
@@ -7006,8 +6983,8 @@ class HaplotypeScv(google.protobuf.message.Message):
b"_number_of_copies",
"_variation_id",
b"_variation_id",
- "classification",
- b"classification",
+ "classifications",
+ b"classifications",
"name",
b"name",
"number_of_chromosomes",
@@ -7021,8 +6998,8 @@ class HaplotypeScv(google.protobuf.message.Message):
def ClearField(
self,
field_name: typing.Literal[
- "_classification",
- b"_classification",
+ "_classifications",
+ b"_classifications",
"_name",
b"_name",
"_number_of_chromosomes",
@@ -7035,8 +7012,8 @@ class HaplotypeScv(google.protobuf.message.Message):
b"attributes",
"citations",
b"citations",
- "classification",
- b"classification",
+ "classifications",
+ b"classifications",
"comments",
b"comments",
"functional_consequences",
@@ -7059,8 +7036,8 @@ class HaplotypeScv(google.protobuf.message.Message):
) -> None: ...
@typing.overload
def WhichOneof(
- self, oneof_group: typing.Literal["_classification", b"_classification"]
- ) -> typing.Literal["classification"] | None: ...
+ self, oneof_group: typing.Literal["_classifications", b"_classifications"]
+ ) -> typing.Literal["classifications"] | None: ...
@typing.overload
def WhichOneof(
self, oneof_group: typing.Literal["_name", b"_name"]
@@ -8054,12 +8031,8 @@ class ClinicalAssertion(google.protobuf.message.Message):
"""Replaced list; mutually exclusive with replaces"""
@property
- def classifications(
- self,
- ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
- global___ClassificationScv
- ]:
- """SCV classifications."""
+ def classifications(self) -> global___ClassificationScv:
+ """SCV classification."""
@property
def attributes(
@@ -8133,7 +8106,7 @@ class ClinicalAssertion(google.protobuf.message.Message):
record_status: global___ClinicalAssertion.RecordStatus.ValueType = ...,
replaces: collections.abc.Iterable[builtins.str] | None = ...,
replaceds: collections.abc.Iterable[global___ClinicalAssertionRecordHistory] | None = ...,
- classifications: collections.abc.Iterable[global___ClassificationScv] | None = ...,
+ classifications: global___ClassificationScv | None = ...,
assertion: global___Assertion.ValueType = ...,
attributes: (
collections.abc.Iterable[global___ClinicalAssertion.AttributeSetElement] | None
@@ -8171,6 +8144,8 @@ class ClinicalAssertion(google.protobuf.message.Message):
b"_study_description",
"_study_name",
b"_study_name",
+ "classifications",
+ b"classifications",
"clinvar_accession",
b"clinvar_accession",
"clinvar_submission_id",
diff --git a/clinvar_data/pbs/extracted_vars_pb2.py b/clinvar_data/pbs/extracted_vars_pb2.py
index 3a69f83..f2e1184 100644
--- a/clinvar_data/pbs/extracted_vars_pb2.py
+++ b/clinvar_data/pbs/extracted_vars_pb2.py
@@ -24,6 +24,7 @@
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "clinvar_data.pbs.extracted_vars_pb2", _globals)
if _descriptor._USE_C_DESCRIPTORS == False:
+
DESCRIPTOR._options = None
_globals["_VARIATIONTYPE"]._serialized_start = 812
_globals["_VARIATIONTYPE"]._serialized_end = 1276
diff --git a/clinvar_data/pbs/gene_impact_pb2.py b/clinvar_data/pbs/gene_impact_pb2.py
index 84033a9..2270e73 100644
--- a/clinvar_data/pbs/gene_impact_pb2.py
+++ b/clinvar_data/pbs/gene_impact_pb2.py
@@ -24,6 +24,7 @@
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "clinvar_data.pbs.gene_impact_pb2", _globals)
if _descriptor._USE_C_DESCRIPTORS == False:
+
DESCRIPTOR._options = None
_globals["_GENEIMPACT"]._serialized_start = 458
_globals["_GENEIMPACT"]._serialized_end = 1091
diff --git a/clinvar_data/pbs/phenotype_link_pb2.py b/clinvar_data/pbs/phenotype_link_pb2.py
index 71536fd..2420ef8 100644
--- a/clinvar_data/pbs/phenotype_link_pb2.py
+++ b/clinvar_data/pbs/phenotype_link_pb2.py
@@ -24,6 +24,7 @@
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "clinvar_data.pbs.phenotype_link_pb2", _globals)
if _descriptor._USE_C_DESCRIPTORS == False:
+
DESCRIPTOR._options = None
_globals["_GENEPHENOTYPERECORD"]._serialized_start = 114
_globals["_GENEPHENOTYPERECORD"]._serialized_end = 402
diff --git a/clinvar_data/phenotype_link.py b/clinvar_data/phenotype_link.py
index db3918b..d65dcea 100644
--- a/clinvar_data/phenotype_link.py
+++ b/clinvar_data/phenotype_link.py
@@ -60,14 +60,14 @@ def run_report(path_input: str, path_output: str, needs_hpo_terms: bool = True):
version=clinical_assertion.clinvar_accession.version,
)
germline_classification: str | None = None
- for classification in clinical_assertion.classifications:
- if (
- classification.HasField("germline_classification")
- # and "pathogenic" in classification.germline_classification.lower()
- ):
- germline_classification = classification.germline_classification
- print("\n\n", germline_classification)
- break
+ if (
+ clinical_assertion.HasField("classifications")
+ and clinical_assertion.classifications.HasField("germline_classification")
+ # and "pathogenic" in classification.germline_classification.lower()
+ ):
+ germline_classification = (
+ clinical_assertion.classifications.germline_classification
+ )
if not germline_classification:
continue
diff --git a/protos/clinvar_data/pbs/clinvar_public.proto b/protos/clinvar_data/pbs/clinvar_public.proto
index d471690..9e48bd2 100644
--- a/protos/clinvar_data/pbs/clinvar_public.proto
+++ b/protos/clinvar_data/pbs/clinvar_public.proto
@@ -731,28 +731,21 @@ message Trait {
/* nested elements */
- // names
- //
- // NB: in XSD this is explictely given as unbounded but XML always has
- // one element
+ // Name(s) of the trait.
repeated GenericSetElement names = 1;
- // symbols (NB: never occur in the XML)
- repeated GenericSetElement symbols = 2;
- // attributes (NB: never occur in the XML)
- repeated AttributeSetElement attributes = 3;
// Citation list.
- repeated Citation citations = 4;
+ repeated Citation citations = 2;
// Xref list.
- repeated Xref xrefs = 5;
+ repeated Xref xrefs = 3;
// Comment list.
- repeated Comment comments = 6;
+ repeated Comment comments = 4;
// Sources
- repeated string sources = 7;
+ repeated string sources = 5;
/* attributes */
// Trait type.
- Type type = 8;
+ Type type = 6;
}
// names
@@ -985,7 +978,7 @@ message AggregateClassificationSet {
// The aggregate germline classification.
optional AggregatedGermlineClassification germline_classification = 1;
// The aggregate somatic clinical impact.
- repeated AggregatedSomaticClinicalImpact somatic_clinical_impacts = 2;
+ optional AggregatedSomaticClinicalImpact somatic_clinical_impact = 2;
// The aggregate oncogenicity classification.
optional AggregatedOncogenicityClassification oncogenicity_classification = 3;
}
@@ -1116,7 +1109,7 @@ message ClassificationScv {
optional string germline_classification = 2;
// Information on the clinical impact; mutually exlusive with `germline_classification`
// and `oncogenicity_classification`.
- optional SomaticClinicalImpact somatic_clinical_impacts = 3;
+ optional SomaticClinicalImpact somatic_clinical_impact = 3;
// The oncogenicity classification; mutually exlusive with `germline_classification`
// and `oncogenicity_classification`.
optional string oncogenicity_classification = 4;
@@ -1770,7 +1763,7 @@ message AlleleScv {
// being reported.
repeated Gene genes = 1;
// Name provided by the submitter.
- repeated OtherName names = 2;
+ OtherName name = 2;
// Variant type.
optional string variant_type = 3;
// Location.
@@ -1811,7 +1804,7 @@ message HaplotypeScv {
// Names other than 'preferred' used for the haplotype.
repeated OtherName other_names = 3;
// Classification of the variant.
- optional AggregateClassificationSet classification = 4;
+ optional AggregateClassificationSet classifications = 4;
// Functional consequences of the variant.
repeated FunctionalConsequence functional_consequences = 5;
// List of attributes.
@@ -2129,8 +2122,8 @@ message ClinicalAssertion {
// Replaced list; mutually exclusive with replaces
repeated ClinicalAssertionRecordHistory replaceds = 6;
- // SCV classifications.
- repeated ClassificationScv classifications = 7;
+ // SCV classification.
+ ClassificationScv classifications = 7;
// The assertion.
Assertion assertion = 8;
// Attributes.
diff --git a/tests/clinvar_data/data/_extract_variation_archives.py b/tests/clinvar_data/data/_extract_variation_archives.py
index 1e2f337..2922ee2 100755
--- a/tests/clinvar_data/data/_extract_variation_archives.py
+++ b/tests/clinvar_data/data/_extract_variation_archives.py
@@ -163,7 +163,7 @@ class Target:
def main() -> int:
args = sys.argv
if len(args) != 2:
- print("Usage: extract_variation_archives.py ")
+ print("Usage: _extract_variation_archives.py ")
return 1
input_xml = args[1]
diff --git a/tests/clinvar_data/data/ex_kynu.jsonl b/tests/clinvar_data/data/ex_kynu.jsonl
index 32455fe..e27aa9b 100644
--- a/tests/clinvar_data/data/ex_kynu.jsonl
+++ b/tests/clinvar_data/data/ex_kynu.jsonl
@@ -1 +1 @@
-{"variationId": "978270", "variationName": "NM_003937.3(KYNU):c.326G>C (p.Trp109Ser)", "variationType": "single nucleotide variant", "dateCreated": "2020-09-27T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2020-09-27T00:00:00Z", "accession": "VCV000978270", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2q22.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 142877664, "stop": 143055833, "displayStart": 142877664, "displayStop": 143055833, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 143635194, "stop": 143799884, "displayStart": 143635194, "displayStop": 143799884, "strand": "+"}]}], "omims": ["605197"], "fullName": "kynureninase", "geneId": "8942", "hgncId": "HGNC:6469", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_003937.3(KYNU):c.326G>C (p.Trp109Ser)", "canonicalSpdi": "NC_000002.12:142927693:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2q22.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 142927694, "stop": 142927694, "displayStart": 142927694, "displayStop": 142927694, "variantLength": 1, "positionVcf": 142927694, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 143685263, "stop": 143685263, "displayStart": 143685263, "displayStop": 143685263, "variantLength": 1, "referenceAllele": "G", "alternateAllele": "C", "positionVcf": 143685263, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["W109S"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000002.11:g.143685263G>C", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.143685263G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.142927694G>C", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.142927694G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_023254.1:g.55069G>C", "sequenceAccessionVersion": "NG_023254.1", "sequenceAccession": "NG_023254", "sequenceVersion": 1, "change": "g.55069G>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001032998.2:c.326G>C", "sequenceAccessionVersion": "NM_001032998.2", "sequenceAccession": "NM_001032998", "sequenceVersion": 2, "change": "c.326G>C"}, "proteinExpression": {"expression": "NP_001028170.1:p.Trp109Ser", "sequenceAccessionVersion": "NP_001028170.1", "sequenceAccession": "NP_001028170", "sequenceVersion": 1, "change": "p.Trp109Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001199241.2:c.326G>C", "sequenceAccessionVersion": "NM_001199241.2", "sequenceAccession": "NM_001199241", "sequenceVersion": 2, "change": "c.326G>C"}, "proteinExpression": {"expression": "NP_001186170.1:p.Trp109Ser", "sequenceAccessionVersion": "NP_001186170.1", "sequenceAccession": "NP_001186170", "sequenceVersion": 1, "change": "p.Trp109Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_003937.3:c.326G>C", "sequenceAccessionVersion": "NM_003937.3", "sequenceAccession": "NM_003937", "sequenceVersion": 3, "change": "c.326G>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_003928.1:p.Trp109Ser", "sequenceAccessionVersion": "NP_003928.1", "sequenceAccession": "NP_003928", "sequenceVersion": 1, "change": "p.Trp109Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "dbSNP", "id": "780720490", "type": "rs"}], "alleleId": "966396", "variationId": "978270"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Catel-Manzke syndrome", "db": "MedGen", "id": "C1844887"}], "traitSetId": "20503"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "dateLastEvaluated": "2012-01-07T00:00:00Z", "submissionCount": 1}}}, "title": "NM_003937.3(KYNU):c.326G>C (p.Trp109Ser) AND Catel-Manzke syndrome", "accession": "RCV001256675", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "conditions": [{"traits": [{"names": [{"value": "Hyperphalangy-clinodactyly of index finger with Pierre Robin syndrome", "type": "Alternate"}, {"value": "Pierre Robin syndrome with hyperphalangy and clinodactyly", "type": "Alternate"}, {"value": "Palatodigital syndrome Catel-Manzke type", "type": "Alternate"}, {"value": "Index finger anomaly with Pierre Robin syndrome", "type": "Alternate"}, {"value": "Catel-Manzke syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0014507"}]}, {"value": "MICROGNATHIA DIGITAL SYNDROME", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "616145", "type": "MIM"}]}], "symbols": [{"value": "CATMANS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "616145", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "28"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "28"}]}], "xrefs": [{"db": "Orphanet", "id": "1388"}, {"db": "MedGen", "id": "C1844887"}, {"db": "MONDO", "id": "MONDO:0014507"}, {"db": "OMIM", "id": "616145", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "20503", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2012-01-07T00:00:00Z", "dateCreated": "2020-09-27T00:00:00Z", "mostRecentSubmission": "2020-09-27T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "20200511-001-003", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001433049", "version": 1, "submitterIdentifiers": {"submitterName": "Institute for Medical Genetics and Human Genetics, Charit\u00e9 - Universit\u00e4tsmedizin Berlin", "orgId": "505735", "orgCategory": "clinic", "orgAbbreviation": "Charit\u00e9 - Universit\u00e4tsmedizin"}, "dateUpdated": "2020-09-27T00:00:00Z", "dateCreated": "2020-09-27T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "CUBI - Core Unit Bioinformatics, Berlin Institute of Health", "orgId": "507461", "orgCategory": "laboratory"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2012-01-07T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}, {"attribute": {"value": "Antenatal"}, "type": "TYPE_AGE_OF_ONSET"}, {"attribute": {"value": "Autosomal recessive inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "tissue": "blood", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE", "familyData": {"pedigreeId": "PM31923704-3"}, "citations": [{"ids": [{"value": "31923704", "source": "PubMed"}]}]}, "observedData": [{"attributes": [{"base": {"integerValue": "2"}, "type": "TYPE_COMPOUND_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "PM31923704-3"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}], "traitSet": {"traits": [{"names": [{"value": "Finger hyperphalangy", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0030367"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"genes": [{"symbol": "KYNU"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 143685263, "stop": 143685263, "referenceAllele": "G", "alternateAllele": "C"}]}}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "616145", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "id": "2829930"}], "traitMappings": [{"medgens": [{"name": "Finger hyperphalangy", "cui": "C4072906"}], "clinicalAssertionId": "2829930", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Finger hyperphalangy", "mappingRef": "Preferred"}, {"medgens": [{"name": "Catel-Manzke syndrome", "cui": "C1844887"}], "clinicalAssertionId": "2829930", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "616145", "mappingRef": "OMIM"}]}}
+{"variationId": "978270", "variationName": "NM_003937.3(KYNU):c.326G>C (p.Trp109Ser)", "variationType": "single nucleotide variant", "dateCreated": "2020-09-27T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2020-09-27T00:00:00Z", "accession": "VCV000978270", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2q22.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 142877664, "stop": 143055833, "displayStart": 142877664, "displayStop": 143055833, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 143635194, "stop": 143799884, "displayStart": 143635194, "displayStop": 143799884, "strand": "+"}]}], "omims": ["605197"], "fullName": "kynureninase", "geneId": "8942", "hgncId": "HGNC:6469", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_003937.3(KYNU):c.326G>C (p.Trp109Ser)", "canonicalSpdi": "NC_000002.12:142927693:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2q22.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 142927694, "stop": 142927694, "displayStart": 142927694, "displayStop": 142927694, "variantLength": 1, "positionVcf": 142927694, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 143685263, "stop": 143685263, "displayStart": 143685263, "displayStop": 143685263, "variantLength": 1, "referenceAllele": "G", "alternateAllele": "C", "positionVcf": 143685263, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["W109S"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000002.11:g.143685263G>C", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.143685263G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.142927694G>C", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.142927694G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_023254.1:g.55069G>C", "sequenceAccessionVersion": "NG_023254.1", "sequenceAccession": "NG_023254", "sequenceVersion": 1, "change": "g.55069G>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001032998.2:c.326G>C", "sequenceAccessionVersion": "NM_001032998.2", "sequenceAccession": "NM_001032998", "sequenceVersion": 2, "change": "c.326G>C"}, "proteinExpression": {"expression": "NP_001028170.1:p.Trp109Ser", "sequenceAccessionVersion": "NP_001028170.1", "sequenceAccession": "NP_001028170", "sequenceVersion": 1, "change": "p.Trp109Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001199241.2:c.326G>C", "sequenceAccessionVersion": "NM_001199241.2", "sequenceAccession": "NM_001199241", "sequenceVersion": 2, "change": "c.326G>C"}, "proteinExpression": {"expression": "NP_001186170.1:p.Trp109Ser", "sequenceAccessionVersion": "NP_001186170.1", "sequenceAccession": "NP_001186170", "sequenceVersion": 1, "change": "p.Trp109Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_003937.3:c.326G>C", "sequenceAccessionVersion": "NM_003937.3", "sequenceAccession": "NM_003937", "sequenceVersion": 3, "change": "c.326G>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_003928.1:p.Trp109Ser", "sequenceAccessionVersion": "NP_003928.1", "sequenceAccession": "NP_003928", "sequenceVersion": 1, "change": "p.Trp109Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "dbSNP", "id": "780720490", "type": "rs"}], "alleleId": "966396", "variationId": "978270"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Catel-Manzke syndrome", "db": "MedGen", "id": "C1844887"}], "traitSetId": "20503"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "dateLastEvaluated": "2012-01-07T00:00:00Z", "submissionCount": 1}}}, "title": "NM_003937.3(KYNU):c.326G>C (p.Trp109Ser) AND Catel-Manzke syndrome", "accession": "RCV001256675", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "conditions": [{"traits": [{"names": [{"value": "Hyperphalangy-clinodactyly of index finger with Pierre Robin syndrome", "type": "Alternate"}, {"value": "Pierre Robin syndrome with hyperphalangy and clinodactyly", "type": "Alternate"}, {"value": "Palatodigital syndrome Catel-Manzke type", "type": "Alternate"}, {"value": "Index finger anomaly with Pierre Robin syndrome", "type": "Alternate"}, {"value": "Catel-Manzke syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0014507"}]}, {"value": "MICROGNATHIA DIGITAL SYNDROME", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "616145", "type": "MIM"}]}], "symbols": [{"value": "CATMANS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "616145", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "28"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "28"}]}], "xrefs": [{"db": "Orphanet", "id": "1388"}, {"db": "MedGen", "id": "C1844887"}, {"db": "MONDO", "id": "MONDO:0014507"}, {"db": "OMIM", "id": "616145", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "20503", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2012-01-07T00:00:00Z", "dateCreated": "2020-09-27T00:00:00Z", "mostRecentSubmission": "2020-09-27T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "20200511-001-003", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001433049", "version": 1, "submitterIdentifiers": {"submitterName": "Institute for Medical Genetics and Human Genetics, Charit\u00e9 - Universit\u00e4tsmedizin Berlin", "orgId": "505735", "orgCategory": "clinic", "orgAbbreviation": "Charit\u00e9 - Universit\u00e4tsmedizin"}, "dateUpdated": "2020-09-27T00:00:00Z", "dateCreated": "2020-09-27T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "CUBI - Core Unit Bioinformatics, Berlin Institute of Health", "orgId": "507461", "orgCategory": "laboratory"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2012-01-07T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}, {"attribute": {"value": "Antenatal"}, "type": "TYPE_AGE_OF_ONSET"}, {"attribute": {"value": "Autosomal recessive inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "tissue": "blood", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE", "familyData": {"pedigreeId": "PM31923704-3"}, "citations": [{"ids": [{"value": "31923704", "source": "PubMed"}]}]}, "observedData": [{"attributes": [{"base": {"integerValue": "2"}, "type": "TYPE_COMPOUND_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "PM31923704-3"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}], "traitSet": {"traits": [{"names": [{"value": "Finger hyperphalangy", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0030367"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"genes": [{"symbol": "KYNU"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 143685263, "stop": 143685263, "referenceAllele": "G", "alternateAllele": "C"}]}}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "616145", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "id": "2829930"}], "traitMappings": [{"medgens": [{"name": "Finger hyperphalangy", "cui": "C4072906"}], "clinicalAssertionId": "2829930", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Finger hyperphalangy", "mappingRef": "Preferred"}, {"medgens": [{"name": "Catel-Manzke syndrome", "cui": "C1844887"}], "clinicalAssertionId": "2829930", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "616145", "mappingRef": "OMIM"}]}}
diff --git a/tests/clinvar_data/data/one_record.xml.gz b/tests/clinvar_data/data/one_record.xml.gz
index 0ff1ede..6e416ed 100644
Binary files a/tests/clinvar_data/data/one_record.xml.gz and b/tests/clinvar_data/data/one_record.xml.gz differ
diff --git a/tests/clinvar_data/data/record_with_submitter.jsonl b/tests/clinvar_data/data/record_with_submitter.jsonl
index 5bf0184..45db286 100644
--- a/tests/clinvar_data/data/record_with_submitter.jsonl
+++ b/tests/clinvar_data/data/record_with_submitter.jsonl
@@ -1 +1 @@
-{"variationId": "253751", "variationName": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3", "variationType": "copy number gain", "dateCreated": "2016-09-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-09-04T00:00:00Z", "accession": "VCV000253751", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86213993, "stop": 86338083, "displayStart": 86213993, "displayStop": 86338083, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86441115, "stop": 86565205, "displayStart": 86441115, "displayStop": 86565205, "strand": "-"}]}], "omims": ["609139"], "fullName": "receptor accessory protein 1", "geneId": "65055", "hgncId": "HGNC:25786", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86199433, "stop": 86213794, "displayStart": 86199433, "displayStop": 86213794, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86426555, "stop": 86440476, "displayStart": 86426555, "displayStop": 86440476, "strand": "+"}]}], "omims": ["611841"], "fullName": "mitochondrial ribosomal protein L35", "geneId": "51318", "hgncId": "HGNC:14489", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86020216, "stop": 86105886, "displayStart": 86020216, "displayStop": 86105886, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86253450, "stop": 86333277, "displayStart": 86253450, "displayStop": 86333277, "strand": "-"}]}], "omims": ["616404"], "fullName": "RNA polymerase I subunit A", "geneId": "25885", "hgncId": "HGNC:17264", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86143936, "stop": 86195462, "displayStart": 86143936, "displayStop": 86195462, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86371054, "stop": 86422892, "displayStart": 86371054, "displayStop": 86422892, "strand": "-"}]}], "omims": ["600378"], "fullName": "inner membrane mitochondrial protein", "geneId": "10989", "hgncId": "HGNC:6047", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86106235, "stop": 86142157, "displayStart": 86106235, "displayStop": 86142157, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86333304, "stop": 86369279, "displayStart": 86333304, "displayStop": 86369279, "strand": "+"}]}], "omims": ["614918"], "fullName": "pentatricopeptide repeat domain 3", "geneId": "55037", "hgncId": "HGNC:24717", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3", "variantTypes": ["copy number gain"], "locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "innerStart": 86269067, "innerStop": 86509326, "displayStart": 86269067, "displayStop": 86509326}]}], "alleleId": "248199", "variationId": "253751"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "See cases"}], "traitSetId": "16994"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2016-01-20T00:00:00Z", "submissionCount": 1}}}, "title": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3 AND See cases", "accession": "RCV000240383", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Uncertain significance", "conditions": [{"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION", "id": "16994", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2016-01-20T00:00:00Z", "dateCreated": "2016-09-04T00:00:00Z", "mostRecentSubmission": "2016-09-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "GDX_L_37834", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000298786", "version": 1, "submitterIdentifiers": {"submitterName": "GeneDx", "orgId": "26957", "orgCategory": "laboratory"}, "dateUpdated": "2016-09-04T00:00:00Z", "dateCreated": "2016-09-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Uncertain significance", "dateLastEvaluated": "2016-01-20T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "GeneDx Variant Classification (06012015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/ft/byid/dhtz9flo/genedx_interprules_final_061215.pdf", "type": "general"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"names": [{"value": "Specific learning disability", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001328"}]}, {"names": [{"value": "Intellectual disability", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001249"}]}, {"names": [{"value": "Delayed speech and language development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0000750"}]}, {"names": [{"value": "Dystonia", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001332"}]}, {"names": [{"value": "Muscular hypotonia", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001252"}]}, {"names": [{"value": "Delayed gross motor development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0002194"}]}, {"names": [{"value": "Constipation", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0002019"}]}, {"names": [{"value": "Seizures", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001250"}]}, {"names": [{"value": "Delayed fine motor development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0010862"}]}, {"names": [{"value": "Epileptic spasms", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0011097"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"variantType": "copy number gain", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "innerStart": 86269067, "innerStop": 86509326}]}, "attributes": [{"attribute": {"base": {"value": "3"}, "type": "AbsoluteCopyNumber"}}]}, "traitSet": {"traits": [{"names": [{"value": "See Cases", "type": "Preferred"}]}], "type": "TYPE_FINDING"}, "id": "578243"}], "traitMappings": [{"medgens": [{"name": "Intellectual disability", "cui": "C3714756"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Intellectual disability", "mappingRef": "Preferred"}, {"medgens": [{"name": "Specific learning disability", "cui": "C4025790"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Specific learning disability", "mappingRef": "Preferred"}, {"medgens": [{"name": "Seizure", "cui": "C0036572"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Seizures", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed gross motor development", "cui": "C1837658"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed gross motor development", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed speech and language development", "cui": "C0454644"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed speech and language development", "mappingRef": "Preferred"}, {"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "578243", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See Cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "Constipation", "cui": "C0009806"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Constipation", "mappingRef": "Preferred"}, {"medgens": [{"name": "Dystonic disorder", "cui": "C0013421"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Dystonia", "mappingRef": "Preferred"}, {"medgens": [{"name": "Epileptic spasm", "cui": "C1527366"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Epileptic spasms", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed fine motor development", "cui": "C4023681"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed fine motor development", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hypotonia", "cui": "C0026827"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Muscular hypotonia", "mappingRef": "Preferred"}]}}
+{"variationId": "253751", "variationName": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3", "variationType": "copy number gain", "dateCreated": "2016-09-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-09-04T00:00:00Z", "accession": "VCV000253751", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86213993, "stop": 86338083, "displayStart": 86213993, "displayStop": 86338083, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86441115, "stop": 86565205, "displayStart": 86441115, "displayStop": 86565205, "strand": "-"}]}], "omims": ["609139"], "fullName": "receptor accessory protein 1", "geneId": "65055", "hgncId": "HGNC:25786", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86199433, "stop": 86213794, "displayStart": 86199433, "displayStop": 86213794, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86426555, "stop": 86440476, "displayStart": 86426555, "displayStop": 86440476, "strand": "+"}]}], "omims": ["611841"], "fullName": "mitochondrial ribosomal protein L35", "geneId": "51318", "hgncId": "HGNC:14489", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86020216, "stop": 86105886, "displayStart": 86020216, "displayStop": 86105886, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86253450, "stop": 86333277, "displayStart": 86253450, "displayStop": 86333277, "strand": "-"}]}], "omims": ["616404"], "fullName": "RNA polymerase I subunit A", "geneId": "25885", "hgncId": "HGNC:17264", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86143936, "stop": 86195462, "displayStart": 86143936, "displayStop": 86195462, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86371054, "stop": 86422892, "displayStart": 86371054, "displayStop": 86422892, "strand": "-"}]}], "omims": ["600378"], "fullName": "inner membrane mitochondrial protein", "geneId": "10989", "hgncId": "HGNC:6047", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86106235, "stop": 86142157, "displayStart": 86106235, "displayStop": 86142157, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86333304, "stop": 86369279, "displayStart": 86333304, "displayStop": 86369279, "strand": "+"}]}], "omims": ["614918"], "fullName": "pentatricopeptide repeat domain 3", "geneId": "55037", "hgncId": "HGNC:24717", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3", "variantTypes": ["copy number gain"], "locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "innerStart": 86269067, "innerStop": 86509326, "displayStart": 86269067, "displayStop": 86509326}]}], "alleleId": "248199", "variationId": "253751"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "See cases"}], "traitSetId": "16994"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2016-01-20T00:00:00Z", "submissionCount": 1}}}, "title": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3 AND See cases", "accession": "RCV000240383", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Uncertain significance", "conditions": [{"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION", "id": "16994", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2016-01-20T00:00:00Z", "dateCreated": "2016-09-04T00:00:00Z", "mostRecentSubmission": "2016-09-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "GDX_L_37834", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000298786", "version": 1, "submitterIdentifiers": {"submitterName": "GeneDx", "orgId": "26957", "orgCategory": "laboratory"}, "dateUpdated": "2016-09-04T00:00:00Z", "dateCreated": "2016-09-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Uncertain significance", "dateLastEvaluated": "2016-01-20T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "GeneDx Variant Classification (06012015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/ft/byid/dhtz9flo/genedx_interprules_final_061215.pdf", "type": "general"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"names": [{"value": "Specific learning disability", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001328"}]}, {"names": [{"value": "Intellectual disability", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001249"}]}, {"names": [{"value": "Delayed speech and language development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0000750"}]}, {"names": [{"value": "Dystonia", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001332"}]}, {"names": [{"value": "Muscular hypotonia", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001252"}]}, {"names": [{"value": "Delayed gross motor development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0002194"}]}, {"names": [{"value": "Constipation", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0002019"}]}, {"names": [{"value": "Seizures", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001250"}]}, {"names": [{"value": "Delayed fine motor development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0010862"}]}, {"names": [{"value": "Epileptic spasms", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0011097"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"variantType": "copy number gain", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "innerStart": 86269067, "innerStop": 86509326}]}, "attributes": [{"attribute": {"base": {"value": "3"}, "type": "AbsoluteCopyNumber"}}]}, "traitSet": {"traits": [{"names": [{"value": "See Cases", "type": "Preferred"}]}], "type": "TYPE_FINDING"}, "id": "578243"}], "traitMappings": [{"medgens": [{"name": "Intellectual disability", "cui": "C3714756"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Intellectual disability", "mappingRef": "Preferred"}, {"medgens": [{"name": "Specific learning disability", "cui": "C4025790"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Specific learning disability", "mappingRef": "Preferred"}, {"medgens": [{"name": "Seizure", "cui": "C0036572"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Seizures", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed gross motor development", "cui": "C1837658"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed gross motor development", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed speech and language development", "cui": "C0454644"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed speech and language development", "mappingRef": "Preferred"}, {"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "578243", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See Cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "Constipation", "cui": "C0009806"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Constipation", "mappingRef": "Preferred"}, {"medgens": [{"name": "Dystonic disorder", "cui": "C0013421"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Dystonia", "mappingRef": "Preferred"}, {"medgens": [{"name": "Epileptic spasm", "cui": "C1527366"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Epileptic spasms", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed fine motor development", "cui": "C4023681"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed fine motor development", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hypotonia", "cui": "C0026827"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Muscular hypotonia", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/data/records_with_hpo.jsonl b/tests/clinvar_data/data/records_with_hpo.jsonl
index 441c0a6..7cce66e 100644
--- a/tests/clinvar_data/data/records_with_hpo.jsonl
+++ b/tests/clinvar_data/data/records_with_hpo.jsonl
@@ -1,39 +1,39 @@
-{"variationId": "220", "variationName": "NM_000027.4(AGA):c.904G>A (p.Gly302Arg)", "variationType": "single nucleotide variant", "dateCreated": "2015-07-12T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "accession": "VCV000000220", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177430774, "stop": 177442437, "displayStart": 177430774, "displayStop": 177442437, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178351927, "stop": 178363656, "displayStart": 178351927, "displayStop": 178363656, "strand": "-"}]}], "omims": ["613228"], "fullName": "aspartylglucosaminidase", "geneId": "175", "hgncId": "HGNC:318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000027.4(AGA):c.904G>A (p.Gly302Arg)", "canonicalSpdi": "NC_000004.12:177433249:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177433250, "stop": 177433250, "displayStart": 177433250, "displayStop": 177433250, "variantLength": 1, "positionVcf": 177433250, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178354404, "stop": 178354404, "displayStart": 178354404, "displayStop": 178354404, "variantLength": 1, "positionVcf": 178354404, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["G302R", "G292R"], "hgvsExpressions": [{"proteinExpression": {"expression": "P20933:p.Gly302Arg", "sequenceAccessionVersion": "P20933", "sequenceAccession": "P20933", "change": "p.Gly302Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000004.11:g.178354404C>T", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.178354404C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.177433250C>T", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.177433250C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011845.2:g.14254G>A", "sequenceAccessionVersion": "NG_011845.2", "sequenceAccession": "NG_011845", "sequenceVersion": 2, "change": "g.14254G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000027.4:c.904G>A", "sequenceAccessionVersion": "NM_000027.4", "sequenceAccession": "NM_000027", "sequenceVersion": 4, "change": "c.904G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_000018.2:p.Gly302Arg", "sequenceAccessionVersion": "NP_000018.2", "sequenceAccession": "NP_000018", "sequenceVersion": 2, "change": "p.Gly302Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001171988.2:c.874G>A", "sequenceAccessionVersion": "NM_001171988.2", "sequenceAccession": "NM_001171988", "sequenceVersion": 2, "change": "c.874G>A"}, "proteinExpression": {"expression": "NP_001165459.1:p.Gly292Arg", "sequenceAccessionVersion": "NP_001165459.1", "sequenceAccession": "NP_001165459", "sequenceVersion": 1, "change": "p.Gly292Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033655.2:n.890G>A", "sequenceAccessionVersion": "NR_033655.2", "sequenceAccession": "NR_033655", "sequenceVersion": 2, "change": "n.890G>A"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114056"}, {"db": "UniProtKB", "id": "P20933#VAR_005074"}, {"db": "OMIM", "id": "613228.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121964905", "type": "rs"}], "alleleId": "15259", "variationId": "220"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Aspartylglucosaminuria", "db": "MedGen", "id": "C0268225"}], "traitSetId": "72"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000027.4(AGA):c.904G>A (p.Gly302Arg) AND Aspartylglucosaminuria", "accession": "RCV000000244", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Aspartylglucosaminuria", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012068"}, {"db": "MONDO", "id": "MONDO:0008830"}]}, {"value": "Aspartylglycosaminuria", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Aspartylglucosaminuria/622"}]}, {"value": "Aspartylglucos-aminuria", "type": "Alternate"}, {"value": "Aspartylglucos-amidase (AGA) deficiency", "type": "Alternate"}, {"value": "AGA deficiency", "type": "Alternate"}, {"value": "Glycosylasparaginase deficiency", "type": "Alternate"}, {"value": "GLYCOASPARAGINASE", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "symbols": [{"value": "AGU", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "5854"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "5854"}]}], "xrefs": [{"db": "Orphanet", "id": "93"}, {"db": "MedGen", "id": "C0268225"}, {"db": "MONDO", "id": "MONDO:0008830"}, {"db": "OMIM", "id": "208400", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012068", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "72", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1991-12-15T00:00:00Z", "dateCreated": "2015-07-12T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613228.0002_ASPARTYLGLUCOSAMINURIA", "title": "AGA, GLY302ARG_ASPARTYLGLUCOSAMINURIA"}, "clinvarAccession": {"accession": "SCV000020388", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-07-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 10-year-old Turkish child with aspartylglucosaminuria (AGU; 208400), Ikonen et al. (1991) found a G-to-A substitution at nucleotide 904 of the AGA gene, resulting in substitution of arginine for glycine-302 (G302R). The patient was homozygous for the mutation and showed fibroblast AGA activity about 7% of normal. The parents were first cousins."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AGA"}], "names": [{"value": "AGA, GLY302ARG"}], "variantType": "Variation", "otherNames": [{"value": "GLY302ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613228.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ASPARTYLGLUCOSAMINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20388"}], "traitMappings": [{"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "20388", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ASPARTYLGLUCOSAMINURIA", "mappingRef": "Preferred"}]}}
-{"variationId": "224", "variationName": "NM_000027.4(AGA):c.102_108del (p.Thr33_Trp34insTer)", "variationType": "Deletion", "dateCreated": "2013-07-24T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "accession": "VCV000000224", "version": 1, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177430774, "stop": 177442437, "displayStart": 177430774, "displayStop": 177442437, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178351927, "stop": 178363656, "displayStart": 178351927, "displayStop": 178363656, "strand": "-"}]}], "omims": ["613228"], "fullName": "aspartylglucosaminidase", "geneId": "175", "hgncId": "HGNC:318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177442146, "stop": 177681435, "displayStart": 177442146, "displayStop": 177681435, "strand": "+"}]}], "fullName": "AGA divergent transcript", "geneId": "285500", "hgncId": "HGNC:27730", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_000027.4(AGA):c.102_108del (p.Thr33_Trp34insTer)", "canonicalSpdi": "NC_000004.12:177442267:AAAGGGC:", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177442268, "stop": 177442274, "displayStart": 177442268, "displayStop": 177442274, "variantLength": 7, "positionVcf": 177442267, "referenceAlleleVcf": "TAAAGGGC", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178363422, "stop": 178363428, "displayStart": 178363422, "displayStop": 178363428, "variantLength": 7, "positionVcf": 178363421, "referenceAlleleVcf": "TAAAGGGC", "alternateAlleleVcf": "T"}]}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000004.11:g.178363422_178363428del", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.178363422_178363428del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.177442268_177442274del", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.177442268_177442274del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011845.2:g.5230_5236del", "sequenceAccessionVersion": "NG_011845.2", "sequenceAccession": "NG_011845", "sequenceVersion": 2, "change": "g.5230_5236del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000027.4:c.102_108del", "sequenceAccessionVersion": "NM_000027.4", "sequenceAccession": "NM_000027", "sequenceVersion": 4, "change": "c.102_108del", "maneSelect": true}, "proteinExpression": {"expression": "NP_000018.2:p.Thr33_Trp34insTer", "sequenceAccessionVersion": "NP_000018.2", "sequenceAccession": "NP_000018", "sequenceVersion": 2, "change": "p.Thr33_Trp34insTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001171988.2:c.102_108del", "sequenceAccessionVersion": "NM_001171988.2", "sequenceAccession": "NM_001171988", "sequenceVersion": 2, "change": "c.102_108del"}, "proteinExpression": {"expression": "NP_001165459.1:p.Thr33_Trp34insTer", "sequenceAccessionVersion": "NP_001165459.1", "sequenceAccession": "NP_001165459", "sequenceVersion": 1, "change": "p.Thr33_Trp34insTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033655.2:n.164_170del", "sequenceAccessionVersion": "NR_033655.2", "sequenceAccession": "NR_033655", "sequenceVersion": 2, "change": "n.164_170del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA212726"}, {"db": "OMIM", "id": "613228.0006", "type": "Allelic variant"}, {"db": "dbSNP", "id": "386833417", "type": "rs"}], "alleleId": "15263", "variationId": "224"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Aspartylglucosaminuria", "db": "MedGen", "id": "C0268225"}], "traitSetId": "72"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic/Likely pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000027.4(AGA):c.102_108del (p.Thr33_Trp34insTer) AND Aspartylglucosaminuria", "accession": "RCV000000248", "version": 7}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic/Likely pathogenic", "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8457202", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Aspartylglucosaminuria", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012068"}, {"db": "MONDO", "id": "MONDO:0008830"}]}, {"value": "Aspartylglycosaminuria", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Aspartylglucosaminuria/622"}]}, {"value": "Aspartylglucos-aminuria", "type": "Alternate"}, {"value": "Aspartylglucos-amidase (AGA) deficiency", "type": "Alternate"}, {"value": "AGA deficiency", "type": "Alternate"}, {"value": "Glycosylasparaginase deficiency", "type": "Alternate"}, {"value": "GLYCOASPARAGINASE", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "symbols": [{"value": "AGU", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "5854"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "5854"}]}], "xrefs": [{"db": "Orphanet", "id": "93"}, {"db": "MedGen", "id": "C0268225"}, {"db": "MONDO", "id": "MONDO:0008830"}, {"db": "OMIM", "id": "208400", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012068", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "72", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1991-12-15T00:00:00Z", "dateCreated": "2013-07-24T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "FINDIS233"}, "clinvarAccession": {"accession": "SCV000081777", "version": 1, "submitterIdentifiers": {"submitterName": "Juha Muilu Group; Institute for Molecular Medicine Finland (FIMM)", "orgId": "500116", "orgCategory": "laboratory"}, "dateUpdated": "2013-07-24T00:00:00Z", "dateCreated": "2013-07-24T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "probable-pathogenic", "comments": [{"value": "Converted during submission to Likely pathogenic.", "type": "COMMENT_TYPE_CONVERTED_BY_NCB"}]}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "numerTested": 1}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8457202", "source": "PubMed"}], "type": "general"}], "attributes": [{"attribute": {"base": {"value": "NM_000027.3:c.102_108delGCCCTTT"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Aspartylglycosaminuria", "type": "Preferred"}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "comments": [{"value": "FinDis database variant: This variant was not found or characterized by our laboratory, data were collected from public sources: see reference", "type": "COMMENT_TYPE_PUBLIC"}], "submissionNames": ["FinDis_mutations"], "id": "131137"}, {"clinvarSubmissionId": {"localKey": "613228.0006_ASPARTYLGLUCOSAMINURIA", "title": "AGA, 7-BP DEL, NT102_ASPARTYLGLUCOSAMINURIA"}, "clinvarAccession": {"accession": "SCV000020392", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-07-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 5-year-old English child with aspartylglucosaminuria (AGU; 208400), Ikonen et al. (1991) found compound heterozygosity for the A101V mutation (613228.0005) and a 7-nucleotide deletion (102_108delfs34Ter) in the AGA gene. The gene deletion would be predicted to result in the formation of a truncated polypeptide chain of only 33 amino acids."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AGA"}], "names": [{"value": "AGA, 7-BP DEL, NT102"}], "variantType": "Variation", "otherNames": [{"value": "7-BP DEL, NT102", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613228.0006", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ASPARTYLGLUCOSAMINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20392"}], "traitMappings": [{"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "20392", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ASPARTYLGLUCOSAMINURIA", "mappingRef": "Preferred"}, {"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "131137", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Aspartylglycosaminuria", "mappingRef": "Preferred"}]}}
-{"variationId": "228", "variationName": "NM_000027.4(AGA):c.800del (p.Leu267fs)", "variationType": "Deletion", "dateCreated": "2015-07-12T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "accession": "VCV000000228", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177430774, "stop": 177442437, "displayStart": 177430774, "displayStop": 177442437, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178351927, "stop": 178363656, "displayStart": 178351927, "displayStop": 178363656, "strand": "-"}]}], "omims": ["613228"], "fullName": "aspartylglucosaminidase", "geneId": "175", "hgncId": "HGNC:318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000027.4(AGA):c.800del (p.Leu267fs)", "canonicalSpdi": "NC_000004.12:177434387:A:", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177434388, "stop": 177434388, "displayStart": 177434388, "displayStop": 177434388, "variantLength": 1, "positionVcf": 177434387, "referenceAlleleVcf": "CA", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178355542, "stop": 178355542, "displayStart": 178355542, "displayStop": 178355542, "variantLength": 1, "positionVcf": 178355541, "referenceAlleleVcf": "CA", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["L267fs", "L257fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000004.11:g.178355542del", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.178355542del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.177434388del", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.177434388del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011845.2:g.13116del", "sequenceAccessionVersion": "NG_011845.2", "sequenceAccession": "NG_011845", "sequenceVersion": 2, "change": "g.13116del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000027.4:c.800del", "sequenceAccessionVersion": "NM_000027.4", "sequenceAccession": "NM_000027", "sequenceVersion": 4, "change": "c.800del", "maneSelect": true}, "proteinExpression": {"expression": "NP_000018.2:p.Leu267fs", "sequenceAccessionVersion": "NP_000018.2", "sequenceAccession": "NP_000018", "sequenceVersion": 2, "change": "p.Leu267fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001171988.2:c.770del", "sequenceAccessionVersion": "NM_001171988.2", "sequenceAccession": "NM_001171988", "sequenceVersion": 2, "change": "c.770del"}, "proteinExpression": {"expression": "NP_001165459.1:p.Leu257fs", "sequenceAccessionVersion": "NP_001165459.1", "sequenceAccession": "NP_001165459", "sequenceVersion": 1, "change": "p.Leu257fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033655.2:n.786del", "sequenceAccessionVersion": "NR_033655.2", "sequenceAccession": "NR_033655", "sequenceVersion": 2, "change": "n.786del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA212729"}, {"db": "OMIM", "id": "613228.0010", "type": "Allelic variant"}, {"db": "dbSNP", "id": "794728009", "type": "rs"}], "alleleId": "15267", "variationId": "228"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Aspartylglucosaminuria", "db": "MedGen", "id": "C0268225"}], "traitSetId": "72"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1991-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000027.4(AGA):c.800del (p.Leu267fs) AND Aspartylglucosaminuria", "accession": "RCV000000252", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "1765378", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Aspartylglucosaminuria", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012068"}, {"db": "MONDO", "id": "MONDO:0008830"}]}, {"value": "Aspartylglycosaminuria", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Aspartylglucosaminuria/622"}]}, {"value": "Aspartylglucos-aminuria", "type": "Alternate"}, {"value": "Aspartylglucos-amidase (AGA) deficiency", "type": "Alternate"}, {"value": "AGA deficiency", "type": "Alternate"}, {"value": "Glycosylasparaginase deficiency", "type": "Alternate"}, {"value": "GLYCOASPARAGINASE", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "symbols": [{"value": "AGU", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "5854"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "5854"}]}], "xrefs": [{"db": "Orphanet", "id": "93"}, {"db": "MedGen", "id": "C0268225"}, {"db": "MONDO", "id": "MONDO:0008830"}, {"db": "OMIM", "id": "208400", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012068", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "72", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1991-09-01T00:00:00Z", "dateCreated": "2015-07-12T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613228.0010_ASPARTYLGLUCOSAMINURIA", "title": "AGA, 1-BP DEL, 336T_ASPARTYLGLUCOSAMINURIA"}, "clinvarAccession": {"accession": "SCV000020396", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-07-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1991-09-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In an 8-year-old Dutch child with aspartylglucosaminuria (AGU; 208400), Ikonen et al. (1991) found deletion of 1 nucleotide, thymidine-336, in the AGA gene. This resulted in a frameshift and premature termination of the polypeptide chain after 126 amino acids."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1765378", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AGA"}], "names": [{"value": "AGA, 1-BP DEL, 336T"}], "variantType": "Variation", "otherNames": [{"value": "1-BP DEL, 336T", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613228.0010", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ASPARTYLGLUCOSAMINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20396"}], "traitMappings": [{"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "20396", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ASPARTYLGLUCOSAMINURIA", "mappingRef": "Preferred"}]}}
-{"variationId": "408", "variationName": "NM_144639.3(UROC1):c.209T>C (p.Leu70Pro)", "variationType": "single nucleotide variant", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "accession": "VCV000000408", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 126481166, "stop": 126517773, "displayStart": 126481166, "displayStop": 126517773, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 126200007, "stop": 126236615, "displayStart": 126200007, "displayStop": 126236615, "strand": "-"}]}], "omims": ["613012"], "fullName": "urocanate hydratase 1", "geneId": "131669", "hgncId": "HGNC:26444", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_144639.3(UROC1):c.209T>C (p.Leu70Pro)", "canonicalSpdi": "NC_000003.12:126510711:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["3q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 126510712, "stop": 126510712, "displayStart": 126510712, "displayStop": 126510712, "variantLength": 1, "positionVcf": 126510712, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 126229555, "stop": 126229555, "displayStart": 126229555, "displayStop": 126229555, "variantLength": 1, "positionVcf": 126229555, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["L70P"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q96N76:p.Leu70Pro", "sequenceAccessionVersion": "Q96N76", "sequenceAccession": "Q96N76", "change": "p.Leu70Pro"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000003.11:g.126229555A>G", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.126229555A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.126510712A>G", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.126510712A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016286.1:g.12040T>C", "sequenceAccessionVersion": "NG_016286.1", "sequenceAccession": "NG_016286", "sequenceVersion": 1, "change": "g.12040T>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001165974.2:c.209T>C", "sequenceAccessionVersion": "NM_001165974.2", "sequenceAccession": "NM_001165974", "sequenceVersion": 2, "change": "c.209T>C"}, "proteinExpression": {"expression": "NP_001159446.1:p.Leu70Pro", "sequenceAccessionVersion": "NP_001159446.1", "sequenceAccession": "NP_001159446", "sequenceVersion": 1, "change": "p.Leu70Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_144639.3:c.209T>C", "sequenceAccessionVersion": "NM_144639.3", "sequenceAccession": "NM_144639", "sequenceVersion": 3, "change": "c.209T>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_653240.1:p.Leu70Pro", "sequenceAccessionVersion": "NP_653240.1", "sequenceAccession": "NP_653240", "sequenceVersion": 1, "change": "p.Leu70Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114250"}, {"db": "UniProtKB", "id": "Q96N76#VAR_062649"}, {"db": "OMIM", "id": "613012.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "137852796", "type": "rs"}], "alleleId": "15447", "variationId": "408"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Urocanate hydratase deficiency", "db": "MedGen", "id": "C0268514"}], "traitSetId": "111"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2009-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_144639.3(UROC1):c.209T>C (p.Leu70Pro) AND Urocanate hydratase deficiency", "accession": "RCV000000435", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "19304569", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Urocanic aciduria", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012237"}, {"db": "MONDO", "id": "MONDO:0010167"}]}, {"value": "Urocanate hydratase deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Urocanate+hydratase+deficiency/9437"}, {"db": "SNOMED CT", "id": "60952007"}]}, {"value": "Urocanase deficiency", "type": "Alternate"}], "symbols": [{"value": "UROCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "276880", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "8539"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "8539"}]}], "xrefs": [{"db": "Orphanet", "id": "210128"}, {"db": "MedGen", "id": "C0268514"}, {"db": "MONDO", "id": "MONDO:0010167"}, {"db": "OMIM", "id": "276880", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012237", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "111", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-06-01T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613012.0002_UROCANASE DEFICIENCY (1 family)", "title": "UROC1, LEU70PRO_UROCANASE DEFICIENCY (1 family)"}, "clinvarAccession": {"accession": "SCV000020583", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-18T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2009-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "familyData": {"numFamilies": 1}}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the leu70-to-pro (L70P) mutation in the UROC1 gene that was found in compound heterozygous state in a patient with urocanic aciduria, mental retardation, and ataxia (UROCD; 276880) by Espinos et al. (2009), see 613012.0001."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19304569", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "276880", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UROC1"}], "names": [{"value": "UROC1, LEU70PRO"}], "variantType": "Variation", "otherNames": [{"value": "LEU70PRO", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613012.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "UROCANASE DEFICIENCY (1 family)", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20583"}], "traitMappings": [{"medgens": [{"name": "Urocanate hydratase deficiency", "cui": "C0268514"}], "clinicalAssertionId": "20583", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "UROCANASE DEFICIENCY (1 family)", "mappingRef": "Preferred"}]}}
-{"variationId": "351", "variationName": "NF1, IVS34, G-A, +18", "variationType": "single nucleotide variant", "dateCreated": "2016-08-22T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-08-22T00:00:00Z", "accession": "VCV000000351", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["17q11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_17", "accession": "NW_025791803.1", "start": 174101, "stop": 456540, "displayStart": 174101, "displayStop": 456540, "strand": "+"}, {"assembly": "GRCh38", "chr": "CHROMOSOME_17", "accession": "NC_000017.11", "start": 31094927, "stop": 31377677, "displayStart": 31094927, "displayStop": 31377677, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_17", "accession": "NC_000017.10", "start": 29421944, "stop": 29704694, "displayStart": 29421944, "displayStop": 29704694, "strand": "+"}]}], "omims": ["613113"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2012-07-12T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=NF1"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2012-07-12T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=NF1"}, "fullName": "neurofibromin 1", "geneId": "4763", "hgncId": "HGNC:7765", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}], "name": "NF1, IVS34, G-A, +18", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["17q11.2"]}], "otherNames": [{"value": "IVS34, G-A, +18"}], "xrefs": [{"db": "OMIM", "id": "613113.0020", "type": "Allelic variant"}], "alleleId": "15390", "variationId": "351"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Juvenile myelomonocytic leukemia", "db": "MedGen", "id": "C0349639"}], "traitSetId": "99"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1997-06-12T00:00:00Z", "submissionCount": 1}}}, "title": "NF1, IVS34, G-A, +18 AND Juvenile myelomonocytic leukemia", "accession": "RCV000000379", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "9180088", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "176876.0014", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0017", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0015", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0016", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, {"value": "Juvenile myelomonocytic leukemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Juvenile+Myelomonocytic+Leukemia+%28JMML%29/3936"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209"}, {"db": "MONDO", "id": "MONDO:0011908"}]}], "symbols": [{"value": "JMML", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}, {"attribute": {"base": {"integerValue": "9884"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9884"}]}], "citations": [{"ids": [{"value": "24493721", "source": "PubMed"}], "type": "practice guideline", "abbrev": "ASCO, 2014"}], "xrefs": [{"db": "Orphanet", "id": "86834"}, {"db": "MedGen", "id": "C0349639"}, {"db": "MONDO", "id": "MONDO:0011908"}, {"db": "OMIM", "id": "607785", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "99", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1997-06-12T00:00:00Z", "dateCreated": "2016-08-22T00:00:00Z", "mostRecentSubmission": "2016-08-22T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613113.0020_LEUKEMIA, JUVENILE MYELOMONOCYTIC", "title": "NF1, IVS34, G-A, +18_LEUKEMIA, JUVENILE MYELOMONOCYTIC"}, "clinvarAccession": {"accession": "SCV000020523", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-08-22T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1997-06-12T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 19-month-old boy with juvenile myelomonocytic leukemia (JMML/Mo7; 607785), Side et al. (1998) found in cloned cDNA aberrant splicing resulting in a shift in the reading frame. Genomic DNA showed an alteration (6579,G-A,+18) in the splice donor consensus sequence flanking exon 34. This mutation introduced an additional 17 nucleotides containing a novel BglI restriction enzyme site into the patient's cDNA. Side et al. (1998) identified this restriction site in amplified cDNA derived from the patient's EBV cell line RNA, thus confirming that this mutation existed in the germline. Furthermore, loss of heterozygosity was demonstrated, indicating inactivation of another NF1 allele."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9180088", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "NF1"}], "names": [{"value": "NF1, IVS34, G-A, +18"}], "variantType": "Variation", "otherNames": [{"value": "IVS34, G-A, +18", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613113.0020", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20523"}], "traitMappings": [{"medgens": [{"name": "Juvenile myelomonocytic leukemia", "cui": "C0349639"}], "clinicalAssertionId": "20523", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "LEUKEMIA, JUVENILE MYELOMONOCYTIC", "mappingRef": "Preferred"}]}}
-{"variationId": "574", "variationName": "NM_001102416.3(KNG1):c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "variationType": "Indel", "dateCreated": "2016-10-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-10-23T00:00:00Z", "accession": "VCV000000574", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186717359, "stop": 186744410, "displayStart": 186717359, "displayStop": 186744410, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186435097, "stop": 186462198, "displayStart": 186435097, "displayStop": 186462198, "strand": "+"}]}], "omims": ["612358"], "fullName": "kininogen 1", "geneId": "3827", "hgncId": "HGNC:6383", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001102416.3(KNG1):c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "canonicalSpdi": "NC_000003.12:186740983:TTGTTGTTGTTGTTGTTTGTTTTTTGT:GGTGGTGGTGGTGGTGGTTTGTTTTTGG", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186740984, "stop": 186741010, "displayStart": 186740984, "displayStop": 186741010, "variantLength": 28, "positionVcf": 186740984, "referenceAlleleVcf": "TTGTTGTTGTTGTTGTTTGTTTTTTGT", "alternateAlleleVcf": "GGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186458773, "stop": 186458799, "displayStart": 186458773, "displayStop": 186458799, "variantLength": 28, "positionVcf": 186458773, "referenceAlleleVcf": "TTGTTGTTGTTGTTGTTTGTTTTTTGT", "alternateAlleleVcf": "GGTGGTGGTGGTGGTGGTTTGTTTTTGG"}]}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NM_000893.4:c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NM_000893.4", "sequenceAccession": "NM_000893", "sequenceVersion": 4, "change": "c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001166451.2:c.1018-538_1018-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NM_001166451.2", "sequenceAccession": "NM_001166451", "sequenceVersion": 2, "change": "c.1018-538_1018-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000003.11:g.186458773_186458799delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.186458773_186458799delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.186740984_186741010delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.186740984_186741010delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_001102416.3:c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NM_001102416.3", "sequenceAccession": "NM_001102416", "sequenceVersion": 3, "change": "c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598t1:c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "LRG_598t1", "sequenceAccession": "LRG_598t1", "change": "c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598:g.28676_28702delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "LRG_598", "sequenceAccession": "LRG_598", "change": "g.28676_28702delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_598t2:c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "LRG_598t2", "sequenceAccession": "LRG_598t2", "change": "c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "dbSNP", "id": "869320718", "type": "rs"}, {"db": "ClinGen", "id": "CA358418"}, {"db": "OMIM", "id": "612358.0003", "type": "Allelic variant"}], "comments": [{"value": "NCBI determined the location of the deletion and the sequence of the insert by aligning AY183666.1 to AY206689.1.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "15613", "variationId": "574"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "High molecular weight kininogen deficiency", "db": "MedGen", "id": "C0272340"}], "traitSetId": "158"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Affects", "dateLastEvaluated": "2003-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001102416.3(KNG1):c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG AND High molecular weight kininogen deficiency", "accession": "RCV000000604", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Affects", "citations": [{"ids": [{"value": "12576314", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "48123", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Flaujeac factor deficiency", "type": "Alternate"}, {"value": "High molecular weight kininogen deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Flaujeac+Factor+Deficiency/2875"}, {"db": "SNOMED CT", "id": "27312002"}]}, {"value": "Congenital high-molecular-weight kininogen deficiency", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0009234"}]}, {"value": "Reduced kininogen activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0005527"}]}, {"value": "FITZGERALD TRAIT", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "483"}, {"db": "MedGen", "id": "C0272340"}, {"db": "MONDO", "id": "MONDO:0009234"}, {"db": "OMIM", "id": "228960", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0005527", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0004867", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005500", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005530", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005538", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "158", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2003-06-01T00:00:00Z", "dateCreated": "2016-10-23T00:00:00Z", "mostRecentSubmission": "2016-10-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612358.0003_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "title": "KNG1, 17-BP DEL/17-BP INS, NT1559_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020754", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-10-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Affects", "dateLastEvaluated": "2003-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "The first plasma with HMWK deficiency (228960) to be recognized was derived from an African American of the surname Fitzgerald (Waldmann et al., 1975). Studying DNA prepared from a more that 25-year-old frozen plasma specimen, Krijanovski et al. (2003) determined that the KNG1 defect in Fitzgerald trait resides in intron 9, with substitution of 17 consecutive basepairs at nucleotides 1559 through 1575. The substituted segment had 1559T and 1575A at its 2 ends and consisted of 5 TGT triplets, which in Fitzgerald DNA were changed to 5 GTG triplets, the end nucleotides being changed to 1559G and 1575G. Also at nucleotide position 1578, a GT sequence in normal DNA was changed to TG in Fitzgerald intron 9. Furthermore, in Fitzgerald intron 9, single basepair polymorphisms were found at nucleotide positions 119 (C to T), 1586 (T to G), and 1736 (A to G)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "48123", "source": "PubMed"}]}, {"ids": [{"value": "12576314", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "KNG1"}], "names": [{"value": "KNG1, 17-BP DEL/17-BP INS, NT1559"}], "variantType": "Variation", "otherNames": [{"value": "17-BP DEL/17-BP INS, NT1559", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612358.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20754"}], "traitMappings": [{"medgens": [{"name": "High molecular weight kininogen deficiency", "cui": "C0272340"}], "clinicalAssertionId": "20754", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "mappingRef": "Preferred"}]}}
-{"variationId": "575", "variationName": "NM_001102416.3(KNG1):c.1216dup (p.His406fs)", "variationType": "Duplication", "dateCreated": "2016-10-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-10-23T00:00:00Z", "accession": "VCV000000575", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186717359, "stop": 186744410, "displayStart": 186717359, "displayStop": 186744410, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186435097, "stop": 186462198, "displayStart": 186435097, "displayStop": 186462198, "strand": "+"}]}], "omims": ["612358"], "fullName": "kininogen 1", "geneId": "3827", "hgncId": "HGNC:6383", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001102416.3(KNG1):c.1216dup (p.His406fs)", "canonicalSpdi": "NC_000003.12:186741608:CCCC:CCCCC", "variantTypes": ["Duplication"], "locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186741608, "stop": 186741609, "displayStart": 186741608, "displayStop": 186741609, "variantLength": 1, "positionVcf": 186741608, "referenceAlleleVcf": "A", "alternateAlleleVcf": "AC"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186459397, "stop": 186459398, "displayStart": 186459397, "displayStop": 186459398, "variantLength": 1, "positionVcf": 186459397, "referenceAlleleVcf": "A", "alternateAlleleVcf": "AC"}]}], "proteinChanges": ["H406fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000003.11:g.186459401dup", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.186459401dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.186741612dup", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.186741612dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_001102416.3:c.1216dup", "sequenceAccessionVersion": "NM_001102416.3", "sequenceAccession": "NM_001102416", "sequenceVersion": 3, "change": "c.1216dup", "maneSelect": true}, "proteinExpression": {"expression": "NP_001095886.1:p.His406fs", "sequenceAccessionVersion": "NP_001095886.1", "sequenceAccession": "NP_001095886", "sequenceVersion": 1, "change": "p.His406fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_000893.4:c.1203+13dup", "sequenceAccessionVersion": "NM_000893.4", "sequenceAccession": "NM_000893", "sequenceVersion": 4, "change": "c.1203+13dup"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001166451.2:c.1095+13dup", "sequenceAccessionVersion": "NM_001166451.2", "sequenceAccession": "NM_001166451", "sequenceVersion": 2, "change": "c.1095+13dup"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NG_016009.1:g.29304dup", "sequenceAccessionVersion": "NG_016009.1", "sequenceAccession": "NG_016009", "sequenceVersion": 1, "change": "g.29304dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_598:g.29304dup", "sequenceAccessionVersion": "LRG_598", "sequenceAccession": "LRG_598", "change": "g.29304dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_598t1:c.1203+13dup", "sequenceAccessionVersion": "LRG_598t1", "sequenceAccession": "LRG_598t1", "change": "c.1203+13dup"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598t2:c.1216dup", "sequenceAccessionVersion": "LRG_598t2", "sequenceAccession": "LRG_598t2", "change": "c.1216dup"}, "proteinExpression": {"expression": "LRG_598p2:p.His406fs", "sequenceAccessionVersion": "LRG_598p2", "sequenceAccession": "LRG_598p2", "change": "p.His406fs"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA212750"}, {"db": "OMIM", "id": "612358.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "797044430", "type": "rs"}], "alleleId": "15614", "variationId": "575"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "High molecular weight kininogen deficiency", "db": "MedGen", "id": "C0272340"}], "traitSetId": "158"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Affects", "dateLastEvaluated": "2007-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001102416.3(KNG1):c.1216dup (p.His406fs) AND High molecular weight kininogen deficiency", "accession": "RCV000000605", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Affects", "citations": [{"ids": [{"value": "17522339", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "1968772", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Flaujeac factor deficiency", "type": "Alternate"}, {"value": "High molecular weight kininogen deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Flaujeac+Factor+Deficiency/2875"}, {"db": "SNOMED CT", "id": "27312002"}]}, {"value": "Congenital high-molecular-weight kininogen deficiency", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0009234"}]}, {"value": "Reduced kininogen activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0005527"}]}, {"value": "FITZGERALD TRAIT", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "483"}, {"db": "MedGen", "id": "C0272340"}, {"db": "MONDO", "id": "MONDO:0009234"}, {"db": "OMIM", "id": "228960", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0005527", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0004867", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005500", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005530", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005538", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "158", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-06-01T00:00:00Z", "dateCreated": "2016-10-23T00:00:00Z", "mostRecentSubmission": "2016-10-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612358.0004_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "title": "KNG1, 1-BP INS, 1217C_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020755", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-10-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Affects", "dateLastEvaluated": "2007-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Using restriction analysis, Hayashi et al. (1990) found that a Japanese patient with isolated HMWK deficiency (228960) had a partial deletion in intron 7 of the KNG1 gene. This partial deletion was assumed to be related to an abnormality of alternative splicing of HMW prekininogen mRNA. However, Shigekiyo et al. (2007) found that this patient with isolated HMWK deficiency was homozygous for a 1-bp insertion (C) at nucleotide 1217 in exon 10 of the KNG1 gene. The insertion resulted in a frameshift in codon 406 and a premature stop signal in codon 415. The patient's brother and parents, who were second cousins, were heterozygous for the mutation."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1968772", "source": "PubMed"}]}, {"ids": [{"value": "17522339", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "KNG1"}], "names": [{"value": "KNG1, 1-BP INS, 1217C"}], "variantType": "Variation", "otherNames": [{"value": "1-BP INS, 1217C", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612358.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20755"}], "traitMappings": [{"medgens": [{"name": "High molecular weight kininogen deficiency", "cui": "C0272340"}], "clinicalAssertionId": "20755", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "mappingRef": "Preferred"}]}}
-{"variationId": "573", "variationName": "NM_001102416.3(KNG1):c.1493del (p.Lys498fs)", "variationType": "Deletion", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000573", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186717359, "stop": 186744410, "displayStart": 186717359, "displayStop": 186744410, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186435097, "stop": 186462198, "displayStart": 186435097, "displayStop": 186462198, "strand": "+"}]}], "omims": ["612358"], "fullName": "kininogen 1", "geneId": "3827", "hgncId": "HGNC:6383", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001102416.3(KNG1):c.1493del (p.Lys498fs)", "canonicalSpdi": "NC_000003.12:186741887:AA:A", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186741888, "stop": 186741888, "displayStart": 186741888, "displayStop": 186741888, "variantLength": 1, "positionVcf": 186741887, "referenceAlleleVcf": "TA", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186459677, "stop": 186459677, "displayStart": 186459677, "displayStop": 186459677, "variantLength": 1, "positionVcf": 186459676, "referenceAlleleVcf": "TA", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["K498fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000003.11:g.186459678del", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.186459678del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.186741889del", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.186741889del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016009.1:g.29581del", "sequenceAccessionVersion": "NG_016009.1", "sequenceAccession": "NG_016009", "sequenceVersion": 1, "change": "g.29581del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001102416.3:c.1493del", "sequenceAccessionVersion": "NM_001102416.3", "sequenceAccession": "NM_001102416", "sequenceVersion": 3, "change": "c.1493del", "maneSelect": true}, "proteinExpression": {"expression": "NP_001095886.1:p.Lys498fs", "sequenceAccessionVersion": "NP_001095886.1", "sequenceAccession": "NP_001095886", "sequenceVersion": 1, "change": "p.Lys498fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_000893.4:c.1203+290del", "sequenceAccessionVersion": "NM_000893.4", "sequenceAccession": "NM_000893", "sequenceVersion": 4, "change": "c.1203+290del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001166451.2:c.1095+290del", "sequenceAccessionVersion": "NM_001166451.2", "sequenceAccession": "NM_001166451", "sequenceVersion": 2, "change": "c.1095+290del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598t1:c.1203+290del", "sequenceAccessionVersion": "LRG_598t1", "sequenceAccession": "LRG_598t1", "change": "c.1203+290del"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598t2:c.1493del", "sequenceAccessionVersion": "LRG_598t2", "sequenceAccession": "LRG_598t2", "change": "c.1493del"}, "proteinExpression": {"expression": "LRG_598p2:p.Lys498fs", "sequenceAccessionVersion": "LRG_598p2", "sequenceAccession": "LRG_598p2", "change": "p.Lys498fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598:g.29581del", "sequenceAccessionVersion": "LRG_598", "sequenceAccession": "LRG_598", "change": "g.29581del"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA212749"}, {"db": "OMIM", "id": "612358.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "797044429", "type": "rs"}], "alleleId": "15612", "variationId": "573"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "High molecular weight kininogen deficiency", "db": "MedGen", "id": "C0272340"}], "traitSetId": "158"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Affects", "dateLastEvaluated": "2003-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001102416.3(KNG1):c.1493del (p.Lys498fs) AND High molecular weight kininogen deficiency", "accession": "RCV000000603", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Affects", "citations": [{"ids": [{"value": "12576314", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Flaujeac factor deficiency", "type": "Alternate"}, {"value": "High molecular weight kininogen deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Flaujeac+Factor+Deficiency/2875"}, {"db": "SNOMED CT", "id": "27312002"}]}, {"value": "Congenital high-molecular-weight kininogen deficiency", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0009234"}]}, {"value": "Reduced kininogen activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0005527"}]}, {"value": "FITZGERALD TRAIT", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "483"}, {"db": "MedGen", "id": "C0272340"}, {"db": "MONDO", "id": "MONDO:0009234"}, {"db": "OMIM", "id": "228960", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0005527", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0004867", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005500", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005530", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005538", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "158", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2003-06-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612358.0002_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "title": "KNG1, 1-BP DEL, 1492A_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020753", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Affects", "dateLastEvaluated": "2003-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Krijanovski et al. (2003) described studies of the plasma and DNA of a 6-year-old male, born of first-cousin parents, with cerebral artery thrombosis and HMWK deficiency (228960). The previously healthy child had headache and vomiting 10 days after moderate cerebral trauma, followed by loss of consciousness and subsequent visual impairment. CT scan and angiography showed extensive left vertebral-basilar artery thrombosis and a left vertebral artery dissection. The patient had a prolonged activated partial thromboplastin time (APTT) and received fresh frozen plasma before arteriography and then daily for 8 days, which resulted in normalization of the APTT and resolution of neurologic symptoms. There was full neurologic recovery with warfarin anticoagulant therapy for 6 months, and there had been no recurrence after 2 years of follow-up. The child had no high molecular weight kininogen procoagulant activity and antigen (less than 1%). He was found to be homozygous for deletion of an adenine at cDNA position 1492 in exon 10 of the KNG1 gene, corresponding to position 480 of the mature protein. The mutation resulted in a frameshift and premature termination at amino acid 532 of the mature protein. Each parent and a sib were heterozygous for the same defect. Krijanovski et al. (2003) found that truncation or frameshift at or before position 480 of mature HMWK prevented biosynthesis, processing, and/or secretion of the protein into plasma."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12576314", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "KNG1"}], "names": [{"value": "KNG1, 1-BP DEL, 1492A"}], "variantType": "Variation", "otherNames": [{"value": "1-BP DEL, 1492A", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612358.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20753"}], "traitMappings": [{"medgens": [{"name": "High molecular weight kininogen deficiency", "cui": "C0272340"}], "clinicalAssertionId": "20753", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "mappingRef": "Preferred"}]}}
-{"variationId": "857", "variationName": "NM_013319.3(UBIAD1):c.529G>C (p.Gly177Arg)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000857", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.529G>C (p.Gly177Arg)", "canonicalSpdi": "NC_000001.11:11274059:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11274060, "stop": 11274060, "displayStart": 11274060, "displayStop": 11274060, "variantLength": 1, "positionVcf": 11274060, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11334117, "stop": 11334117, "displayStart": 11334117, "displayStop": 11334117, "variantLength": 1, "positionVcf": 11334117, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["G177R", "V177L"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.11334117G>C", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11334117G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11274060G>C", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11274060G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5863G>C", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5863G>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.529G>C", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.529G>C"}, "proteinExpression": {"expression": "NP_001317278.1:p.Gly177Arg", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Gly177Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.529G>C", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.529G>C"}, "proteinExpression": {"expression": "NP_001317279.1:p.Val177Leu", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Val177Leu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.529G>C", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.529G>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Gly177Arg", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Gly177Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114576"}, {"db": "OMIM", "id": "611632.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203946", "type": "rs"}], "alleleId": "15896", "variationId": "857"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2013-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.529G>C (p.Gly177Arg) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000905", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17962451", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "23169578", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2013-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0002_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, GLY177ARG_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021055", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2013-02-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a Caucasian family with Schnyder corneal dystrophy (SCCD; 121800), Weiss et al. (2007) identified heterozygosity for a G-to-C transversion in the UBIAD1 gene, resulting in a gly177-to-arg (G177R) substitution. This amino acid is evolutionarily conserved. Prediction of the protein structure indicated that a prenyltransferase domain and several transmembrane helices are affected by the mutation. The mutation was not found in any unaffected family members tested or in 200 control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17962451", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}, {"attributes": [{"base": {"value": "In 3 affected individuals from 2 families with SCCD, 1 from Taiwan and 1 from Kosovo, Weiss et al. (2008) identified heterozygosity for the G177R mutation in exon 2 of the UBIAD1 gene. The mutation was not found in 1 unaffected Kosovar family member or in 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "18176953", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Nickerson et al. (2013) analyzed SCCD patient B-cell lysates and observed that the G177R mutant had significantly reduced biosynthetic activity, 39% lower than that of wildtype UBIAD1."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "23169578", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "names": [{"value": "UBIAD1, GLY177ARG"}], "variantType": "Variation", "otherNames": [{"value": "GLY177ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21055"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21055", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
-{"variationId": "861", "variationName": "NM_013319.3(UBIAD1):c.335A>G (p.Asp112Gly)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000861", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.335A>G (p.Asp112Gly)", "canonicalSpdi": "NC_000001.11:11273865:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273866, "stop": 11273866, "displayStart": 11273866, "displayStop": 11273866, "variantLength": 1, "positionVcf": 11273866, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333923, "stop": 11333923, "displayStart": 11333923, "displayStop": 11333923, "variantLength": 1, "positionVcf": 11333923, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["D112G"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Asp112Gly", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Asp112Gly"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11333923A>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11333923A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11273866A>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11273866A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5669A>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5669A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.335A>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.335A>G"}, "proteinExpression": {"expression": "NP_001317278.1:p.Asp112Gly", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Asp112Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.335A>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.335A>G"}, "proteinExpression": {"expression": "NP_001317279.1:p.Asp112Gly", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Asp112Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.335A>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.335A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Asp112Gly", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Asp112Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114580"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043715"}, {"db": "OMIM", "id": "611632.0006", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203950", "type": "rs"}], "alleleId": "15900", "variationId": "861"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.335A>G (p.Asp112Gly) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000909", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-08-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0006_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ASP112GLY_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021059", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of an East Indian family with Schnyder crystalline corneal dystrophy (SCCD; 121800), Orr et al. (2007) identified heterozygosity for a 335A-G transition in the UBIAD1 gene, resulting in an asp112-to-gly (D112G) substitution at a highly conserved residue. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "names": [{"value": "UBIAD1, ASP112GLY"}], "variantType": "Variation", "otherNames": [{"value": "ASP112GLY", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0006", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21059"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21059", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
-{"variationId": "856", "variationName": "NM_013319.3(UBIAD1):c.305A>G (p.Asn102Ser)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-14T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-14T00:00:00Z", "accession": "VCV000000856", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.305A>G (p.Asn102Ser)", "canonicalSpdi": "NC_000001.11:11273835:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273836, "stop": 11273836, "displayStart": 11273836, "displayStop": 11273836, "variantLength": 1, "positionVcf": 11273836, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333893, "stop": 11333893, "displayStart": 11333893, "displayStop": 11333893, "variantLength": 1, "positionVcf": 11333893, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N102S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Asn102Ser", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Asn102Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11333893A>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11333893A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11273836A>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11273836A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5639A>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5639A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.305A>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.305A>G"}, "proteinExpression": {"expression": "NP_001317278.1:p.Asn102Ser", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Asn102Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.305A>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.305A>G"}, "proteinExpression": {"expression": "NP_001317279.1:p.Asn102Ser", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Asn102Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.305A>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.305A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Asn102Ser", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Asn102Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114575"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043714"}, {"db": "OMIM", "id": "611632.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203945", "type": "rs"}], "alleleId": "15895", "variationId": "856"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2013-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.305A>G (p.Asn102Ser) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000904", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "17962451", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "23169578", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "3486394", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9450854", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2013-02-01T00:00:00Z", "dateCreated": "2017-10-14T00:00:00Z", "mostRecentSubmission": "2017-10-14T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0001_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ASN102SER_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021054", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-14T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2013-02-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a family with Schnyder crystalline corneal dystrophy (SCCD; 121800) originally described by Battisti et al. (1998), Orr et al. (2007) identified heterozygosity for an A-to-G transition in the UBIAD1 gene, resulting in an asn102-to-ser (N102S) substitution. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9450854", "source": "PubMed"}]}, {"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}, {"attributes": [{"base": {"value": "In affected members of 5 unrelated Caucasian families with SCCD, 2 of which were previously reported as pedigrees '11' and '12' in a mapping analysis by Theendakara et al. (2004), Weiss et al. (2007) identified heterozygosity for the N102S substitution. Asn102 is evolutionarily conserved. Prediction of the protein structure indicated that a prenyltransferase domain and several transmembrane helices are affected by the mutation. The mutation was not found in any unaffected family members tested or in 200 control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}]}, {"ids": [{"value": "17962451", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "In affected members from 5 families with SCCD, 2 of which were American, 1 Czechoslovakian, 1 Taiwanese, and 1 German (previously described as 'family I' by Lisch et al., 1986), Weiss et al. (2008) identified heterozygosity for the N102S mutation in exon 1 of the UBIAD1 gene. The mutation was not found in 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "3486394", "source": "PubMed"}]}, {"ids": [{"value": "18176953", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Nickerson et al. (2013) analyzed SCCD patient B-cell lysates and observed that the N102S mutant had significantly reduced biosynthetic activity, 22% lower than that of wildtype UBIAD1."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "23169578", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "names": [{"value": "UBIAD1, ASN102SER"}], "variantType": "Variation", "otherNames": [{"value": "ASN102SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21054"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21054", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
-{"variationId": "860", "variationName": "NM_013319.3(UBIAD1):c.695A>G (p.Asn232Ser)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000860", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.695A>G (p.Asn232Ser)", "canonicalSpdi": "NC_000001.11:11285808:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11285809, "stop": 11285809, "displayStart": 11285809, "displayStop": 11285809, "variantLength": 1, "positionVcf": 11285809, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11345866, "stop": 11345866, "displayStart": 11345866, "displayStop": 11345866, "variantLength": 1, "positionVcf": 11345866, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N232S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Asn232Ser", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Asn232Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11345866A>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11345866A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.618+77A>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.618+77A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.530-9064A>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.530-9064A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11285809A>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11285809A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.17612A>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.17612A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.695A>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.695A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Asn232Ser", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Asn232Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114579"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043723"}, {"db": "OMIM", "id": "611632.0005", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203949", "type": "rs"}], "alleleId": "15899", "variationId": "860"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.695A>G (p.Asn232Ser) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000908", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8190477", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-08-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0005_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ASN232SER_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021058", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a family with Schnyder crystalline corneal dystrophy (SCCD; 121800), originally described by McCarthy et al. (1994), Orr et al. (2007) identified heterozygosity for a 695A-G transition in the UBIAD1 gene, resulting in an asn232-to-ser (N232S) substitution at a highly conserved residue. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8190477", "source": "PubMed"}]}, {"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "names": [{"value": "UBIAD1, ASN232SER"}], "variantType": "Variation", "otherNames": [{"value": "ASN232SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0005", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21058"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21058", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
-{"variationId": "864", "variationName": "NM_013319.3(UBIAD1):c.708C>G (p.Asp236Glu)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000864", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.708C>G (p.Asp236Glu)", "canonicalSpdi": "NC_000001.11:11285821:C:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11285822, "stop": 11285822, "displayStart": 11285822, "displayStop": 11285822, "variantLength": 1, "positionVcf": 11285822, "referenceAlleleVcf": "C", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11345879, "stop": 11345879, "displayStart": 11345879, "displayStop": 11345879, "variantLength": 1, "positionVcf": 11345879, "referenceAlleleVcf": "C", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["D236E"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Asp236Glu", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Asp236Glu"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.708C>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.708C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Asp236Glu", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Asp236Glu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.618+90C>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.618+90C>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.530-9051C>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.530-9051C>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11345879C>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11345879C>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11285822C>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11285822C>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.17625C>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.17625C>G"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA114583"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043724"}, {"db": "OMIM", "id": "611632.0009", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203953", "type": "rs"}], "alleleId": "15903", "variationId": "864"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.708C>G (p.Asp236Glu) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000912", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0009_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ASP236GLU_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021062", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 42-year-old African American woman with Schnyder corneal dystrophy (SCCD; 121800), Weiss et al. (2008) identified heterozygosity for a 1040C-G transversion in exon 2 of the UBIAD1 gene, resulting in an asp236-to-glu (D236E) substitution. The mutation was not found in 200 chromosomes from 100 unrelated Caucasian DNA samples. The authors stated that this was the first African American individual reported with SCCD."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "18176953", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "names": [{"value": "UBIAD1, ASP236GLU"}], "variantType": "Variation", "otherNames": [{"value": "ASP236GLU", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0009", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21062"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21062", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
-{"variationId": "859", "variationName": "NM_013319.3(UBIAD1):c.524C>T (p.Thr175Ile)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000859", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.524C>T (p.Thr175Ile)", "canonicalSpdi": "NC_000001.11:11274054:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11274055, "stop": 11274055, "displayStart": 11274055, "displayStop": 11274055, "variantLength": 1, "positionVcf": 11274055, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11334112, "stop": 11334112, "displayStart": 11334112, "displayStop": 11334112, "variantLength": 1, "positionVcf": 11334112, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["T175I"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Thr175Ile", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Thr175Ile"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11334112C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11334112C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11274055C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11274055C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5858C>T", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5858C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.524C>T", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.524C>T"}, "proteinExpression": {"expression": "NP_001317278.1:p.Thr175Ile", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Thr175Ile"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.524C>T", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.524C>T"}, "proteinExpression": {"expression": "NP_001317279.1:p.Thr175Ile", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Thr175Ile"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.524C>T", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.524C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Thr175Ile", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Thr175Ile"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114578"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043720"}, {"db": "OMIM", "id": "611632.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203948", "type": "rs"}], "alleleId": "15898", "variationId": "859"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.524C>T (p.Thr175Ile) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000907", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0004_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, THR175ILE_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021057", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 affected members of a family from Scotland with Schnyder crystalline corneal dystrophy (SCCD; 121800), Orr et al. (2007) identified heterozygosity for a 524C-T transition in the UBIAD1 gene, resulting in a thr175-to-ile (T175I) substitution at a highly conserved residue. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}, {"attributes": [{"base": {"value": "In 8 affected members of a Hungarian-American family with SCCD, previously reported as 'pedigree 10' in a mapping analysis by Theendakara et al. (2004), Weiss et al. (2008) identified heterozygosity for the T175I mutation in exon 1 of the UBIAD1 gene. All affected individuals demonstrated prominent diffuse corneal haze, typically without corneal crystals. The mutation was not found in 1 unaffected family member, 1 unaffected spouse, or in 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}]}, {"ids": [{"value": "18176953", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "names": [{"value": "UBIAD1, THR175ILE"}], "variantType": "Variation", "otherNames": [{"value": "THR175ILE", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21057"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21057", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
-{"variationId": "863", "variationName": "NM_013319.3(UBIAD1):c.556G>A (p.Gly186Arg)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000863", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.556G>A (p.Gly186Arg)", "canonicalSpdi": "NC_000001.11:11285669:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11285670, "stop": 11285670, "displayStart": 11285670, "displayStop": 11285670, "variantLength": 1, "positionVcf": 11285670, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11345727, "stop": 11345727, "displayStart": 11345727, "displayStop": 11345727, "variantLength": 1, "positionVcf": 11345727, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["G186R"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Gly186Arg", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Gly186Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11345727G>A", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11345727G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11285670G>A", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11285670G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.17473G>A", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.17473G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.556G>A", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.556G>A"}, "proteinExpression": {"expression": "NP_001317278.1:p.Gly186Arg", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Gly186Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.556G>A", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.556G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Gly186Arg", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Gly186Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.530-9203G>A", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.530-9203G>A"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114582"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043722"}, {"db": "OMIM", "id": "611632.0008", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203952", "type": "rs"}], "alleleId": "15902", "variationId": "863"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.556G>A (p.Gly186Arg) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000911", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0008_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, GLY186ARG_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021061", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 affected members of a German-American family with Schnyder crystalline corneal dystrophy (SCCD; 121800), previously reported as 'pedigree 8' in a mapping analysis by Theendakara et al. (2004), Weiss et al. (2008) identified heterozygosity for an 888G-A transition in exon 2 of the UBIAD1 gene, resulting in a gly186-to-arg (G186R) substitution. The mutation was not found in 3 unaffected family members, an unaffected spouse, or 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}]}, {"ids": [{"value": "18176953", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "names": [{"value": "UBIAD1, GLY186ARG"}], "variantType": "Variation", "otherNames": [{"value": "GLY186ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0008", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21061"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21061", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
-{"variationId": "858", "variationName": "NM_013319.3(UBIAD1):c.355A>G (p.Arg119Gly)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000858", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.355A>G (p.Arg119Gly)", "canonicalSpdi": "NC_000001.11:11273885:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273886, "stop": 11273886, "displayStart": 11273886, "displayStop": 11273886, "variantLength": 1, "positionVcf": 11273886, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333943, "stop": 11333943, "displayStart": 11333943, "displayStop": 11333943, "variantLength": 1, "positionVcf": 11333943, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["R119G"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Arg119Gly", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Arg119Gly"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11333943A>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11333943A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11273886A>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11273886A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5689A>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5689A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.355A>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.355A>G"}, "proteinExpression": {"expression": "NP_001317278.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.355A>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.355A>G"}, "proteinExpression": {"expression": "NP_001317279.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.355A>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.355A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114577"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043717"}, {"db": "OMIM", "id": "611632.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203947", "type": "rs"}], "alleleId": "15897", "variationId": "858"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.355A>G (p.Arg119Gly) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000906", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-08-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0003_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ARG119GLY_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021056", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a 5-generation Nova Scotian family with Schnyder crystalline corneal dystrophy (SCCD; 121800), Orr et al. (2007) identified heterozygosity for a 355A-G transition in the UBIAD1 gene, resulting in an arg119-to-gly (R119G) substitution at a highly conserved residue. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "names": [{"value": "UBIAD1, ARG119GLY"}], "variantType": "Variation", "otherNames": [{"value": "ARG119GLY", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21056"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21056", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
-{"variationId": "862", "variationName": "NM_013319.3(UBIAD1):c.511T>C (p.Ser171Pro)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000862", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.511T>C (p.Ser171Pro)", "canonicalSpdi": "NC_000001.11:11274041:T:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11274042, "stop": 11274042, "displayStart": 11274042, "displayStop": 11274042, "variantLength": 1, "positionVcf": 11274042, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11334099, "stop": 11334099, "displayStart": 11334099, "displayStop": 11334099, "variantLength": 1, "positionVcf": 11334099, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["S171P"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Ser171Pro", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Ser171Pro"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11334099T>C", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11334099T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11274042T>C", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11274042T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5845T>C", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5845T>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.511T>C", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.511T>C"}, "proteinExpression": {"expression": "NP_001317278.1:p.Ser171Pro", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Ser171Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.511T>C", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.511T>C"}, "proteinExpression": {"expression": "NP_001317279.1:p.Ser171Pro", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Ser171Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.511T>C", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.511T>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Ser171Pro", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Ser171Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114581"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043719"}, {"db": "OMIM", "id": "611632.0007", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203951", "type": "rs"}], "alleleId": "15901", "variationId": "862"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.511T>C (p.Ser171Pro) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000910", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "3486394", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0007_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, SER171PRO_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021060", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a German family with Schnyder corneal dystrophy (SCCD; 121800), previously described as 'family II' by Lisch et al. (1986), Weiss et al. (2008) identified heterozygosity for an 843T-C transition in exon 1 of the UBIAD1 gene, resulting in a ser171-to-pro (S171P) substitution. The mutation was not found in 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "3486394", "source": "PubMed"}]}, {"ids": [{"value": "18176953", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "names": [{"value": "UBIAD1, SER171PRO"}], "variantType": "Variation", "otherNames": [{"value": "SER171PRO", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0007", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21060"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21060", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
-{"variationId": "1192", "variationName": "NM_001029871.4(RSPO4):c.353G>A (p.Cys118Tyr)", "variationType": "single nucleotide variant", "dateCreated": "2019-09-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-09-23T00:00:00Z", "accession": "VCV000001192", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 958452, "stop": 1002311, "displayStart": 958452, "displayStop": 1002311, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 939094, "stop": 982906, "displayStart": 939094, "displayStop": 982906, "strand": "-"}]}], "omims": ["610573"], "fullName": "R-spondin 4", "geneId": "343637", "hgncId": "HGNC:16175", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001029871.4(RSPO4):c.353G>A (p.Cys118Tyr)", "canonicalSpdi": "NC_000020.11:967229:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 967230, "stop": 967230, "displayStart": 967230, "displayStop": 967230, "variantLength": 1, "positionVcf": 967230, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 947873, "stop": 947873, "displayStart": 947873, "displayStop": 947873, "variantLength": 1, "positionVcf": 947873, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["C118Y"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q2I0M5:p.Cys118Tyr", "sequenceAccessionVersion": "Q2I0M5", "sequenceAccession": "Q2I0M5", "change": "p.Cys118Tyr"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000020.10:g.947873C>T", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.947873C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.967230C>T", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.967230C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_013043.1:g.40035G>A", "sequenceAccessionVersion": "NG_013043.1", "sequenceAccession": "NG_013043", "sequenceVersion": 1, "change": "g.40035G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001029871.4:c.353G>A", "sequenceAccessionVersion": "NM_001029871.4", "sequenceAccession": "NM_001029871", "sequenceVersion": 4, "change": "c.353G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_001025042.2:p.Cys118Tyr", "sequenceAccessionVersion": "NP_001025042.2", "sequenceAccession": "NP_001025042", "sequenceVersion": 2, "change": "p.Cys118Tyr"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001040007.3:c.353G>A", "sequenceAccessionVersion": "NM_001040007.3", "sequenceAccession": "NM_001040007", "sequenceVersion": 3, "change": "c.353G>A"}, "proteinExpression": {"expression": "NP_001035096.1:p.Cys118Tyr", "sequenceAccessionVersion": "NP_001035096.1", "sequenceAccession": "NP_001035096", "sequenceVersion": 1, "change": "p.Cys118Tyr"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114827"}, {"db": "UniProtKB", "id": "Q2I0M5#VAR_030402"}, {"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "74315422", "type": "rs"}], "alleleId": "16231", "variationId": "1192"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Anonychia", "db": "MedGen", "id": "C0265998"}], "traitSetId": "316"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2006-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001029871.4(RSPO4):c.353G>A (p.Cys118Tyr) AND Anonychia", "accession": "RCV000001251", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17041604", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hyponychia congenita", "type": "Alternate"}, {"value": "Anonychia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Anonychia+Congenita/488"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798"}, {"db": "SNOMED CT", "id": "23610003"}]}, {"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "OMIM", "id": "610573.0007", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0006", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0008", "type": "Allelic variant"}]}, {"value": "ANONYCHIA/HYPONYCHIA CONGENITA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}, {"value": "ANONYCHIA TOTALIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "symbols": [{"value": "NDNC4", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "79143"}, {"db": "Orphanet", "id": "94150"}, {"db": "MedGen", "id": "C0265998"}, {"db": "MONDO", "id": "MONDO:0008798"}, {"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0007593", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0008384", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "316", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2006-11-01T00:00:00Z", "dateCreated": "2019-09-23T00:00:00Z", "mostRecentSubmission": "2019-09-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "610573.0003_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "title": "RSPO4, CYS118TYR_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4"}, "clinvarAccession": {"accession": "SCV000021401", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-09-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2006-11-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 1 of 3 consanguineous Indian families with nonsyndromic hyponychia (NDNC4; 206800), Blaydon et al. (2006) found homozygosity for a cys118-to-tyr (C118Y) mutation in exon 3 of the RSPO4 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17041604", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "RSPO4"}], "names": [{"value": "RSPO4, CYS118TYR"}], "variantType": "Variation", "otherNames": [{"value": "CYS118TYR", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21401"}], "traitMappings": [{"medgens": [{"name": "Anonychia", "cui": "C0265998"}], "clinicalAssertionId": "21401", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "mappingRef": "Preferred"}]}}
-{"variationId": "1408", "variationName": "NM_001374504.1(TMPRSS6):c.1768C>T (p.Arg590Ter)", "variationType": "single nucleotide variant", "dateCreated": "2019-03-31T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2020-02-27T00:00:00Z", "accession": "VCV000001408", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["22q12.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_22", "accession": "NC_000022.11", "start": 37065436, "stop": 37110536, "displayStart": 37065436, "displayStop": 37110536, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_22", "accession": "NC_000022.10", "start": 37461478, "stop": 37499692, "displayStart": 37461478, "displayStop": 37499692, "strand": "-"}]}], "omims": ["609862"], "fullName": "transmembrane serine protease 6", "geneId": "164656", "hgncId": "HGNC:16517", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001374504.1(TMPRSS6):c.1768C>T (p.Arg590Ter)", "canonicalSpdi": "NC_000022.11:37070556:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["22q12.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_22", "accession": "NC_000022.11", "start": 37070557, "stop": 37070557, "displayStart": 37070557, "displayStop": 37070557, "variantLength": 1, "positionVcf": 37070557, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_22", "accession": "NC_000022.10", "start": 37466597, "stop": 37466597, "displayStart": 37466597, "displayStop": 37466597, "variantLength": 1, "positionVcf": 37466597, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "R599*"}], "proteinChanges": ["R590*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000022.10:g.37466597G>A", "sequenceAccessionVersion": "NC_000022.10", "sequenceAccession": "NC_000022", "sequenceVersion": 10, "change": "g.37466597G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000022.11:g.37070557G>A", "sequenceAccessionVersion": "NC_000022.11", "sequenceAccession": "NC_000022", "sequenceVersion": 11, "change": "g.37070557G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_012856.2:g.44007C>T", "sequenceAccessionVersion": "NG_012856.2", "sequenceAccession": "NG_012856", "sequenceVersion": 2, "change": "g.44007C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001289000.2:c.1768C>T", "sequenceAccessionVersion": "NM_001289000.2", "sequenceAccession": "NM_001289000", "sequenceVersion": 2, "change": "c.1768C>T"}, "proteinExpression": {"expression": "NP_001275929.1:p.Arg590Ter", "sequenceAccessionVersion": "NP_001275929.1", "sequenceAccession": "NP_001275929", "sequenceVersion": 1, "change": "p.Arg590Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001289001.2:c.1768C>T", "sequenceAccessionVersion": "NM_001289001.2", "sequenceAccession": "NM_001289001", "sequenceVersion": 2, "change": "c.1768C>T"}, "proteinExpression": {"expression": "NP_001275930.1:p.Arg590Ter", "sequenceAccessionVersion": "NP_001275930.1", "sequenceAccession": "NP_001275930", "sequenceVersion": 1, "change": "p.Arg590Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001374504.1:c.1768C>T", "sequenceAccessionVersion": "NM_001374504.1", "sequenceAccession": "NM_001374504", "sequenceVersion": 1, "change": "c.1768C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_001361433.1:p.Arg590Ter", "sequenceAccessionVersion": "NP_001361433.1", "sequenceAccession": "NP_001361433", "sequenceVersion": 1, "change": "p.Arg590Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_153609.4:c.1768C>T", "sequenceAccessionVersion": "NM_153609.4", "sequenceAccession": "NM_153609", "sequenceVersion": 4, "change": "c.1768C>T"}, "proteinExpression": {"expression": "NP_705837.2:p.Arg590Ter", "sequenceAccessionVersion": "NP_705837.2", "sequenceAccession": "NP_705837", "sequenceVersion": 2, "change": "p.Arg590Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1128:g.44007C>T", "sequenceAccessionVersion": "LRG_1128", "sequenceAccession": "LRG_1128"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_1128t2:c.1768C>T", "sequenceAccessionVersion": "LRG_1128t2", "sequenceAccession": "LRG_1128t2"}, "proteinExpression": {"expression": "LRG_1128p2:p.Arg590Ter", "sequenceAccessionVersion": "LRG_1128p2", "sequenceAccession": "LRG_1128p2", "change": "p.Arg590Ter"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1128t1:c.1768C>T", "sequenceAccessionVersion": "LRG_1128t1", "sequenceAccession": "LRG_1128t1"}, "proteinExpression": {"expression": "LRG_1128p1:p.Arg590Ter", "sequenceAccessionVersion": "LRG_1128p1", "sequenceAccession": "LRG_1128p1", "change": "p.Arg590Ter"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114995"}, {"db": "OMIM", "id": "609862.0010", "type": "Allelic variant"}, {"db": "dbSNP", "id": "137853123", "type": "rs"}], "alleleId": "16447", "variationId": "1408"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcytic anemia", "db": "MedGen", "id": "C5194182"}], "traitSetId": "380"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Likely pathogenic", "submissionCount": 1}}}, "title": "NM_001374504.1(TMPRSS6):c.1768C>T (p.Arg590Ter) AND Microcytic anemia", "accession": "RCV000001473", "version": 6}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Iron-refractory iron deficiency anemia", "db": "MedGen", "id": "C0085576"}], "traitSetId": "66010"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001374504.1(TMPRSS6):c.1768C>T (p.Arg590Ter) AND Iron-refractory iron deficiency anemia", "accession": "RCV001375844", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic/Likely pathogenic", "citations": [{"ids": [{"value": "18596229", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "32581362", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "IRIDA syndrome", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0008788"}]}, {"value": "Iron-refractory iron deficiency anemia", "type": "Preferred", "xrefs": [{"db": "SNOMED CT", "id": "722005000"}]}, {"value": "ANEMIA, HYPOCHROMIC MICROCYTIC, WITH DEFECT IN IRON METABOLISM", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}, {"value": "IRON-HANDLING DISORDER, HEREDITARY", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}, {"value": "PSEUDO-IRON-DEFICIENCY ANEMIA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}], "symbols": [{"value": "IRIDA", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000500228"}]}], "xrefs": [{"db": "Orphanet", "id": "209981"}, {"db": "MedGen", "id": "C0085576"}, {"db": "MONDO", "id": "MONDO:0008788"}, {"db": "OMIM", "id": "206200", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "66010", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Microcytic anemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Microcytic+anemia/8872"}, {"db": "Human Phenotype Ontology", "id": "HP:0001935"}, {"db": "MONDO", "id": "MONDO:0001245"}, {"db": "SNOMED CT", "id": "234349007"}]}], "attributes": [{"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000500397"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000500228"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000508489"}]}], "xrefs": [{"db": "MedGen", "id": "C5194182"}, {"db": "MONDO", "id": "MONDO:0001245"}, {"db": "Human Phenotype Ontology", "id": "HP:0001935", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "380", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-09-01T00:00:00Z", "dateCreated": "2019-03-31T00:00:00Z", "mostRecentSubmission": "2020-02-27T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "609862.0010_IRON-REFRACTORY IRON DEFICIENCY ANEMIA", "title": "TMPRSS6, ARG599TER_IRON-REFRACTORY IRON DEFICIENCY ANEMIA"}, "clinvarAccession": {"accession": "SCV000021628", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-03-31T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-09-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the arg599-to-ter (R599X) mutation in the TMPRSS6 gene that was found in compound heterozygous state in a patient with iron-refractory iron deficiency anemia (IRIDA; 206200) by Guillem et al. (2008), see 609862.0009."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "18596229", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "TMPRSS6"}], "names": [{"value": "TMPRSS6, ARG599TER"}], "variantType": "Variation", "otherNames": [{"value": "ARG599TER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "609862.0010", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "IRON-REFRACTORY IRON DEFICIENCY ANEMIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21628"}, {"clinvarSubmissionId": {"localKey": "c.1795C>T_206200", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001162263", "version": 1, "submitterIdentifiers": {"submitterName": "NIHR Bioresource Rare Diseases, University of Cambridge", "orgId": "505998", "orgCategory": "consortium", "orgAbbreviation": "NIHR BR RD"}, "dateUpdated": "2020-02-27T00:00:00Z", "dateCreated": "2020-02-27T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Likely pathogenic", "citations": [{"ids": [{"value": "32581362", "source": "PubMed"}], "type": "general"}]}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}, {"attributes": [{"base": {"value": "L014876"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}]}], "simpleAllele": {"genes": [{"symbol": "TMPRSS6"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_22", "start": 37466597, "stop": 37466597, "variantLength": 1, "referenceAllele": "G", "alternateAllele": "A"}]}, "attributes": [{"attribute": {"base": {"value": "NM_153609.2:c.1795C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["NIHR_Bioresource_Rare_Diseases_13k"], "id": "2290339"}], "traitMappings": [{"medgens": [{"name": "Iron-refractory iron deficiency anemia", "cui": "C0085576"}], "clinicalAssertionId": "2290339", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "206200", "mappingRef": "OMIM"}, {"medgens": [{"name": "Iron-refractory iron deficiency anemia", "cui": "C0085576"}], "clinicalAssertionId": "21628", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "IRON-REFRACTORY IRON DEFICIENCY ANEMIA", "mappingRef": "Preferred"}]}}
-{"variationId": "1612", "variationName": "NM_024884.3(L2HGDH):c.293A>G (p.His98Arg)", "variationType": "single nucleotide variant", "dateCreated": "2017-11-10T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-12-19T00:00:00Z", "accession": "VCV000001612", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["14q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_14", "accession": "NC_000014.9", "start": 50242434, "stop": 50312229, "displayStart": 50242434, "displayStop": 50312229, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_14", "accession": "NC_000014.8", "start": 50709151, "stop": 50778946, "displayStart": 50709151, "displayStop": 50778946, "strand": "-"}]}], "omims": ["609584"], "fullName": "L-2-hydroxyglutarate dehydrogenase", "geneId": "79944", "hgncId": "HGNC:20499", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_024884.3(L2HGDH):c.293A>G (p.His98Arg)", "canonicalSpdi": "NC_000014.9:50302131:T:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["14q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_14", "accession": "NC_000014.9", "start": 50302132, "stop": 50302132, "displayStart": 50302132, "displayStop": 50302132, "variantLength": 1, "positionVcf": 50302132, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_14", "accession": "NC_000014.8", "start": 50768850, "stop": 50768850, "displayStart": 50768850, "displayStop": 50768850, "variantLength": 1, "positionVcf": 50768850, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}]}], "otherNames": [{"value": "L2HGDH, HIS98ARG"}], "proteinChanges": ["H98R"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9H9P8:p.His98Arg", "sequenceAccessionVersion": "Q9H9P8", "sequenceAccession": "Q9H9P8", "change": "p.His98Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000014.8:g.50768850T>C", "sequenceAccessionVersion": "NC_000014.8", "sequenceAccession": "NC_000014", "sequenceVersion": 8, "change": "g.50768850T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000014.9:g.50302132T>C", "sequenceAccessionVersion": "NC_000014.9", "sequenceAccession": "NC_000014", "sequenceVersion": 9, "change": "g.50302132T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008092.1:g.15098A>G", "sequenceAccessionVersion": "NG_008092.1", "sequenceAccession": "NG_008092", "sequenceVersion": 1, "change": "g.15098A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_024884.3:c.293A>G", "sequenceAccessionVersion": "NM_024884.3", "sequenceAccession": "NM_024884", "sequenceVersion": 3, "change": "c.293A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_079160.1:p.His98Arg", "sequenceAccessionVersion": "NP_079160.1", "sequenceAccession": "NP_079160", "sequenceVersion": 1, "change": "p.His98Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA115109"}, {"db": "UniProtKB", "id": "Q9H9P8#VAR_025685"}, {"db": "OMIM", "id": "609584.0006", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267607206", "type": "rs"}], "alleleId": "16651", "variationId": "1612"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "L-2-hydroxyglutaric aciduria", "db": "MedGen", "id": "C1855995"}], "traitSetId": "414"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-01-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_024884.3(L2HGDH):c.293A>G (p.His98Arg) AND L-2-hydroxyglutaric aciduria", "accession": "RCV000001679", "version": 4}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "CN517202"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2017-10-05T00:00:00Z", "submissionCount": 1}}}, "title": "NM_024884.3(L2HGDH):c.293A>G (p.His98Arg) AND not provided", "accession": "RCV000522298", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "19911013", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Developmental Genetics Unit, King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}, {"value": "none provided", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "CN517202"}]}], "type": "TYPE_DISEASE", "id": "9460", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "L-2-hydroxyglutaric aciduria", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "L-2-hydroxyglutaric+aciduria/4061"}, {"db": "Human Phenotype Ontology", "id": "HP:0040144"}, {"db": "MONDO", "id": "MONDO:0009370"}]}], "symbols": [{"value": "L2HGA", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "236792", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "10472"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10472"}]}], "xrefs": [{"db": "Orphanet", "id": "79314"}, {"db": "MedGen", "id": "C1855995"}, {"db": "MONDO", "id": "MONDO:0009370"}, {"db": "OMIM", "id": "236792", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0040144", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "414"}], "dateLastEvaluated": "2017-10-05T00:00:00Z", "dateCreated": "2017-11-10T00:00:00Z", "mostRecentSubmission": "2017-12-19T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "609584.0006_L-2-HYDROXYGLUTARIC ACIDURIA", "title": "L2HGDH, HIS98ARG_L-2-HYDROXYGLUTARIC ACIDURIA"}, "clinvarAccession": {"accession": "SCV000021835", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-11-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-01-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 unrelated Portuguese patients with L-2-hydroxyglutaric aciduria (L2HGA; 236792), Vilarinho et al. (2010) identified a homozygous 293A-G transition in the L2HGDH gene, resulting in a his98-to-arg (H98R) substitution in a conserved residue."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19911013", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "236792", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "L2HGDH"}], "names": [{"value": "L2HGDH, HIS98ARG"}], "variantType": "Variation", "otherNames": [{"value": "HIS98ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "609584.0006", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "L-2-HYDROXYGLUTARIC ACIDURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21835"}, {"clinvarSubmissionId": {"localKey": "GDX:742576|Not Provided", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000617755", "version": 2, "submitterIdentifiers": {"submitterName": "GeneDx", "orgId": "26957", "orgCategory": "laboratory"}, "dateUpdated": "2017-12-19T00:00:00Z", "dateCreated": "2017-12-19T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "comments": [{"value": "The H98R variant in the L2HGDH gene has been reported previously in the heterozygous state, in the presence of a second L2HGDH variant, and in the homozygous state, in multiple unrelated individuals with L-2-hydroxyglutaric aciduria, intellectual disability, and leukodystrophy (Vilarinho et al., 2005; Vilarinho et al., 2010). A different missense variant at the same residue, H98Y, has also been reported in the homozygous state in individuals with L-2-hydroxyglutaric aciduria (Top\u00c3\u00a7u et al., 2004; Haliloglu et al., 2008). The H98R variant is not observed in large population cohorts (Lek et al., 2016). The H98R variant is a conservative amino acid substitution, which is not likely to impact secondary protein structure as these residues share similar properties. This substitution occurs at a position that is conserved across species and in silico analysis predicts this variant is probably damaging to the protein structure/function. We interpret H98R as a likely pathogenic variant."}], "dateLastEvaluated": "2017-10-05T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "GeneDx Variant Classification (06012015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/ft/byid/dhtz9flo/genedx_interprules_final_061215.pdf"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "L2HGDH"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_14", "start": 50768850, "stop": 50768850, "variantLength": 1, "referenceAllele": "T", "alternateAllele": "C"}]}, "attributes": [{"attribute": {"base": {"value": "NM_024884.2:c.293A>G"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Not Provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB5098196"], "id": "1204167"}], "traitMappings": [{"medgens": [{"name": "L-2-hydroxyglutaric aciduria", "cui": "C1855995"}], "clinicalAssertionId": "21835", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "L-2-HYDROXYGLUTARIC ACIDURIA", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "CN517202"}], "clinicalAssertionId": "1204167", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Not Provided", "mappingRef": "Preferred"}]}}
-{"variationId": "1190", "variationName": "NM_001029871.4(RSPO4):c.194A>G (p.Gln65Arg)", "variationType": "single nucleotide variant", "dateCreated": "2019-09-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-09-23T00:00:00Z", "accession": "VCV000001190", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 958452, "stop": 1002311, "displayStart": 958452, "displayStop": 1002311, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 939094, "stop": 982906, "displayStart": 939094, "displayStop": 982906, "strand": "-"}]}], "omims": ["610573"], "fullName": "R-spondin 4", "geneId": "343637", "hgncId": "HGNC:16175", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001029871.4(RSPO4):c.194A>G (p.Gln65Arg)", "canonicalSpdi": "NC_000020.11:968023:T:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 968024, "stop": 968024, "displayStart": 968024, "displayStop": 968024, "variantLength": 1, "positionVcf": 968024, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 948667, "stop": 948667, "displayStart": 948667, "displayStop": 948667, "variantLength": 1, "positionVcf": 948667, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["Q65R"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q2I0M5:p.Gln65Arg", "sequenceAccessionVersion": "Q2I0M5", "sequenceAccession": "Q2I0M5", "change": "p.Gln65Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.968024T>C", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.968024T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_013043.1:g.39241A>G", "sequenceAccessionVersion": "NG_013043.1", "sequenceAccession": "NG_013043", "sequenceVersion": 1, "change": "g.39241A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001029871.4:c.194A>G", "sequenceAccessionVersion": "NM_001029871.4", "sequenceAccession": "NM_001029871", "sequenceVersion": 4, "change": "c.194A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_001025042.2:p.Gln65Arg", "sequenceAccessionVersion": "NP_001025042.2", "sequenceAccession": "NP_001025042", "sequenceVersion": 2, "change": "p.Gln65Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001040007.3:c.194A>G", "sequenceAccessionVersion": "NM_001040007.3", "sequenceAccession": "NM_001040007", "sequenceVersion": 3, "change": "c.194A>G"}, "proteinExpression": {"expression": "NP_001035096.1:p.Gln65Arg", "sequenceAccessionVersion": "NP_001035096.1", "sequenceAccession": "NP_001035096", "sequenceVersion": 1, "change": "p.Gln65Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000020.10:g.948667T>C", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.948667T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA114825"}, {"db": "UniProtKB", "id": "Q2I0M5#VAR_030399"}, {"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "74315420", "type": "rs"}], "alleleId": "16229", "variationId": "1190"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Anonychia", "db": "MedGen", "id": "C0265998"}], "traitSetId": "316"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2006-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001029871.4(RSPO4):c.194A>G (p.Gln65Arg) AND Anonychia", "accession": "RCV000001249", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17041604", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "4702713", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hyponychia congenita", "type": "Alternate"}, {"value": "Anonychia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Anonychia+Congenita/488"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798"}, {"db": "SNOMED CT", "id": "23610003"}]}, {"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "OMIM", "id": "610573.0007", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0006", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0008", "type": "Allelic variant"}]}, {"value": "ANONYCHIA/HYPONYCHIA CONGENITA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}, {"value": "ANONYCHIA TOTALIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "symbols": [{"value": "NDNC4", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "79143"}, {"db": "Orphanet", "id": "94150"}, {"db": "MedGen", "id": "C0265998"}, {"db": "MONDO", "id": "MONDO:0008798"}, {"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0007593", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0008384", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "316", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2006-11-01T00:00:00Z", "dateCreated": "2019-09-23T00:00:00Z", "mostRecentSubmission": "2019-09-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "610573.0001_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "title": "RSPO4, GLN65ARG_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4"}, "clinvarAccession": {"accession": "SCV000021399", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-09-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2006-11-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In members of a consanguineous Finnish family with anonychia congenita (NDNC4; 206800), originally reported by Hopsu-Havu and Jansen (1973), Blaydon et al. (2006) demonstrated homozygosity for a missense mutation, gln65 to arg (Q65R), in the RSPO4 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "4702713", "source": "PubMed"}]}, {"ids": [{"value": "17041604", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "RSPO4"}], "names": [{"value": "RSPO4, GLN65ARG"}], "variantType": "Variation", "otherNames": [{"value": "GLN65ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21399"}], "traitMappings": [{"medgens": [{"name": "Anonychia", "cui": "C0265998"}], "clinicalAssertionId": "21399", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "mappingRef": "Preferred"}]}}
-{"variationId": "2497", "variationName": "NM_000127.3(EXT1):c.528_535del (p.Lys177fs)", "variationType": "Deletion", "dateCreated": "2020-07-27T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2020-07-27T00:00:00Z", "accession": "VCV000002497", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["8q24.11"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_8", "accession": "NC_000008.11", "start": 117794490, "stop": 118111826, "displayStart": 117794490, "displayStop": 118111826, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_8", "accession": "NC_000008.10", "start": 118811601, "stop": 119124057, "displayStart": 118811601, "displayStop": 119124057, "strand": "-"}]}], "omims": ["608177"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2020-06-17T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=EXT1"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2020-06-17T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=EXT1"}, "fullName": "exostosin glycosyltransferase 1", "geneId": "2131", "hgncId": "HGNC:3512", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000127.3(EXT1):c.528_535del (p.Lys177fs)", "canonicalSpdi": "NC_000008.11:118110511:GCACTTTGG:G", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["8q24.11"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_8", "accession": "NC_000008.11", "start": 118110512, "stop": 118110519, "displayStart": 118110512, "displayStop": 118110519, "variantLength": 8, "positionVcf": 118110511, "referenceAlleleVcf": "TGCACTTTG", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_8", "accession": "NC_000008.10", "start": 119122751, "stop": 119122758, "displayStart": 119122751, "displayStop": 119122758, "variantLength": 8, "positionVcf": 119122750, "referenceAlleleVcf": "TGCACTTTG", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["K177fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000008.10:g.119122752_119122759del", "sequenceAccessionVersion": "NC_000008.10", "sequenceAccession": "NC_000008", "sequenceVersion": 10, "change": "g.119122752_119122759del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000008.11:g.118110513_118110520del", "sequenceAccessionVersion": "NC_000008.11", "sequenceAccession": "NC_000008", "sequenceVersion": 11, "change": "g.118110513_118110520del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_007455.2:g.6301_6308del", "sequenceAccessionVersion": "NG_007455.2", "sequenceAccession": "NG_007455", "sequenceVersion": 2, "change": "g.6301_6308del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000127.3:c.528_535del", "sequenceAccessionVersion": "NM_000127.3", "sequenceAccession": "NM_000127", "sequenceVersion": 3, "change": "c.528_535del", "maneSelect": true}, "proteinExpression": {"expression": "NP_000118.2:p.Lys177fs", "sequenceAccessionVersion": "NP_000118.2", "sequenceAccession": "NP_000118", "sequenceVersion": 2, "change": "p.Lys177fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_493:g.6301_6308del", "sequenceAccessionVersion": "LRG_493", "sequenceAccession": "LRG_493"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA115579"}, {"db": "OMIM", "id": "608177.0006", "type": "Allelic variant"}, {"db": "dbSNP", "id": "587776540", "type": "rs"}], "comments": [{"value": "NCBI staff reviewed the sequence information reported in PubMed 8981950 Fig. 4 to determine the location of this allele on the current reference sequence.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "17536", "variationId": "2497"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Chondrosarcoma", "db": "MedGen", "id": "C0008479"}], "traitSetId": "6434"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1997-01-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000127.3(EXT1):c.528_535del (p.Lys177fs) AND Chondrosarcoma", "accession": "RCV000002603", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "8981950", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Chondrosarcoma, somatic", "type": "Alternate"}, {"value": "Chondrosarcoma", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Chondrosarcoma/1378"}, {"db": "Human Phenotype Ontology", "id": "HP:0006765"}, {"db": "MONDO", "id": "MONDO:0008977"}]}], "attributes": [{"attribute": {"base": {"value": "Neoplasm"}, "type": "keyword"}}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}, {"attribute": {"base": {"integerValue": "6055"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "6055"}]}], "xrefs": [{"db": "Orphanet", "id": "55880"}, {"db": "MedGen", "id": "C0008479"}, {"db": "MONDO", "id": "MONDO:0008977"}, {"db": "OMIM", "id": "215300", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0006765", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "6434", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1997-01-01T00:00:00Z", "dateCreated": "2020-07-27T00:00:00Z", "mostRecentSubmission": "2020-07-27T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "608177.0006_CHONDROSARCOMA, SOMATIC", "title": "EXT1, 8-BP DEL, NT1178_CHONDROSARCOMA, SOMATIC"}, "clinvarAccession": {"accession": "SCV000022761", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2020-07-27T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1997-01-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In the tumor tissue of a patient (individual 10) with sporadic chondrosarcoma (215300), Hecht et al. (1997) identified an 8-bp deletion (1178del8) in the EXT1 gene, resulting in a premature stop codon at nucleotide 1213. This mutation did not appear in the patient's constitutional DNA, suggesting somatic origin."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8981950", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "215300", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "EXT1"}], "names": [{"value": "EXT1, 8-BP DEL, NT1178"}], "variantType": "Variation", "otherNames": [{"value": "8-BP DEL, NT1178", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "608177.0006", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CHONDROSARCOMA, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "22761"}], "traitMappings": [{"medgens": [{"name": "Chondrosarcoma", "cui": "C0008479"}], "clinicalAssertionId": "22761", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CHONDROSARCOMA, SOMATIC", "mappingRef": "Preferred"}]}}
-{"variationId": "2940", "variationName": "NM_001902.6(CTH):c.718C>G (p.Gln240Glu)", "variationType": "single nucleotide variant", "dateCreated": "2016-10-22T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-10-22T00:00:00Z", "accession": "VCV000002940", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p31.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 70411268, "stop": 70439851, "displayStart": 70411268, "displayStop": 70439851, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 70876900, "stop": 70905533, "displayStart": 70876900, "displayStop": 70905533, "strand": "+"}]}], "omims": ["607657"], "fullName": "cystathionine gamma-lyase", "geneId": "1491", "hgncId": "HGNC:2501", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001902.6(CTH):c.718C>G (p.Gln240Glu)", "canonicalSpdi": "NC_000001.11:70430387:C:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p31.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 70430388, "stop": 70430388, "displayStart": 70430388, "displayStop": 70430388, "variantLength": 1, "positionVcf": 70430388, "referenceAlleleVcf": "C", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 70896071, "stop": 70896071, "displayStart": 70896071, "displayStop": 70896071, "variantLength": 1, "positionVcf": 70896071, "referenceAlleleVcf": "C", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["Q240E", "Q196E", "Q208E"], "hgvsExpressions": [{"proteinExpression": {"expression": "P32929:p.Gln240Glu", "sequenceAccessionVersion": "P32929", "sequenceAccession": "P32929", "change": "p.Gln240Glu"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.70896071C>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.70896071C>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.70430388C>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.70430388C>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008041.1:g.24117C>G", "sequenceAccessionVersion": "NG_008041.1", "sequenceAccession": "NG_008041", "sequenceVersion": 1, "change": "g.24117C>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001190463.2:c.622C>G", "sequenceAccessionVersion": "NM_001190463.2", "sequenceAccession": "NM_001190463", "sequenceVersion": 2, "change": "c.622C>G"}, "proteinExpression": {"expression": "NP_001177392.1:p.Gln208Glu", "sequenceAccessionVersion": "NP_001177392.1", "sequenceAccession": "NP_001177392", "sequenceVersion": 1, "change": "p.Gln208Glu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001902.6:c.718C>G", "sequenceAccessionVersion": "NM_001902.6", "sequenceAccession": "NM_001902", "sequenceVersion": 6, "change": "c.718C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_001893.2:p.Gln240Glu", "sequenceAccessionVersion": "NP_001893.2", "sequenceAccession": "NP_001893", "sequenceVersion": 2, "change": "p.Gln240Glu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_153742.5:c.586C>G", "sequenceAccessionVersion": "NM_153742.5", "sequenceAccession": "NM_153742", "sequenceVersion": 5, "change": "c.586C>G"}, "proteinExpression": {"expression": "NP_714964.2:p.Gln196Glu", "sequenceAccessionVersion": "NP_714964.2", "sequenceAccession": "NP_714964", "sequenceVersion": 2, "change": "p.Gln196Glu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA115890"}, {"db": "UniProtKB", "id": "P32929#VAR_015451"}, {"db": "OMIM", "id": "607657.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "28941786", "type": "rs"}], "alleleId": "17979", "variationId": "2940"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Cystathioninuria", "db": "MedGen", "id": "C0220993"}], "traitSetId": "746"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2003-04-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001902.6(CTH):c.718C>G (p.Gln240Glu) AND Cystathioninuria", "accession": "RCV000003074", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "12574942", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Cystathioninuria", "type": "Preferred", "xrefs": [{"db": "GeneTests", "id": "204921"}, {"db": "Genetic Alliance", "id": "Gamma-Cystathionase+Deficiency/2980"}, {"db": "Human Phenotype Ontology", "id": "HP:0003153"}, {"db": "MONDO", "id": "MONDO:0009058"}, {"db": "SNOMED CT", "id": "13003007"}]}, {"value": "CYSTATHIONASE DEFICIENCY", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "219500", "type": "MIM"}]}, {"value": "Gamma-cystathionase deficiency", "type": "Alternate"}], "xrefs": [{"db": "Orphanet", "id": "212"}, {"db": "MedGen", "id": "C0220993"}, {"db": "MONDO", "id": "MONDO:0009058"}, {"db": "OMIM", "id": "219500", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0003153", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "746", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2003-04-01T00:00:00Z", "dateCreated": "2016-10-22T00:00:00Z", "mostRecentSubmission": "2016-10-22T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "607657.0004_CYSTATHIONINURIA", "title": "CTH, GLN240GLU_CYSTATHIONINURIA"}, "clinvarAccession": {"accession": "SCV000023232", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-10-22T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2003-04-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a patient of European descent with cystathioninuria (219500), Wang and Hegele (2003) identified compound heterozygosity for an 874C-G transversion in exon 7 of the CTH cDNA sequence, resulting in a gln240-to-glu (Q240E) mutation, and a T67I mutation (607657.0003)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12574942", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "219500", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "CTH"}], "names": [{"value": "CTH, GLN240GLU"}], "variantType": "Variation", "otherNames": [{"value": "GLN240GLU", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "607657.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CYSTATHIONINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "23232"}], "traitMappings": [{"medgens": [{"name": "Cystathioninuria", "cui": "C0220993"}], "clinicalAssertionId": "23232", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CYSTATHIONINURIA", "mappingRef": "Preferred"}]}}
-{"variationId": "3350", "variationName": "NM_000348.4(SRD5A2):c.78C>G (p.Tyr26Ter)", "variationType": "single nucleotide variant", "dateCreated": "2016-06-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-06-23T00:00:00Z", "accession": "VCV000003350", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2p23.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 31522480, "stop": 31663009, "displayStart": 31522480, "displayStop": 31663009, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 31749655, "stop": 31806039, "displayStart": 31749655, "displayStop": 31806039, "strand": "-"}]}], "omims": ["607306"], "fullName": "steroid 5 alpha-reductase 2", "geneId": "6716", "hgncId": "HGNC:11285", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000348.4(SRD5A2):c.78C>G (p.Tyr26Ter)", "canonicalSpdi": "NC_000002.12:31580822:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2p23.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 31580823, "stop": 31580823, "displayStart": 31580823, "displayStop": 31580823, "variantLength": 1, "positionVcf": 31580823, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 31805892, "stop": 31805892, "displayStart": 31805892, "displayStop": 31805892, "variantLength": 1, "positionVcf": 31805892, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["Y26*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NM_000348.4:c.78C>G", "sequenceAccessionVersion": "NM_000348.4", "sequenceAccession": "NM_000348", "sequenceVersion": 4, "change": "c.78C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_000339.2:p.Tyr26Ter", "sequenceAccessionVersion": "NP_000339.2", "sequenceAccession": "NP_000339", "sequenceVersion": 2, "change": "p.Tyr26Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.31580823G>C", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.31580823G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000002.11:g.31805892G>C", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.31805892G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_008365.1:g.5149C>G", "sequenceAccessionVersion": "NG_008365.1", "sequenceAccession": "NG_008365", "sequenceVersion": 1, "change": "g.5149C>G"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA346599154"}, {"db": "OMIM", "id": "607306.0015", "type": "Allelic variant"}, {"db": "dbSNP", "id": "104893667", "type": "rs"}], "alleleId": "18389", "variationId": "3350"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Micropenis", "db": "MedGen", "id": "C4551492"}], "traitSetId": "17560"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2003-07-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000348.4(SRD5A2):c.78C>G (p.Tyr26Ter) AND Micropenis", "accession": "RCV000003514", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "12843198", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Micropenis", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0000054"}]}], "xrefs": [{"db": "MedGen", "id": "C4551492"}, {"db": "Human Phenotype Ontology", "id": "HP:0000054", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0000038", "type": "secondary"}]}], "type": "TYPE_FINDING", "id": "17560", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2003-07-01T00:00:00Z", "dateCreated": "2016-06-23T00:00:00Z", "mostRecentSubmission": "2016-06-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "607306.0015_MICROPENIS", "title": "SRD5A2, TYR26TER _MICROPENIS"}, "clinvarAccession": {"accession": "SCV000023672", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-06-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2003-07-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a Japanese patient with micropenis (see 264600), Sasaki et al. (2003) found compound heterozygosity for mutation in the SRD5A2 gene, a 78C-G transversion in exon 1 resulting in substitution of tyr26 by a stop codon (Y26X), and a missense change at arg227 (R227Q; 607306.0016). The Y26X mutation was expected to abolish enzyme activity through early termination of the protein."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12843198", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "264600", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "SRD5A2"}], "names": [{"value": "SRD5A2, TYR26TER"}], "variantType": "Variation", "otherNames": [{"value": "TYR26TER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "607306.0015", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROPENIS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "23672"}], "traitMappings": [{"medgens": [{"name": "Micropenis", "cui": "C4551492"}], "clinicalAssertionId": "23672", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROPENIS", "mappingRef": "Preferred"}]}}
-{"variationId": "5052", "variationName": "NM_001135608.3(ARHGAP26):c.1250A>G (p.Asn417Ser)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000005052", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5q31.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 142770377, "stop": 143229011, "displayStart": 142770377, "displayStop": 143229011, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 142150291, "stop": 142608571, "displayStart": 142150291, "displayStop": 142608571, "strand": "+"}]}], "omims": ["605370"], "fullName": "Rho GTPase activating protein 26", "geneId": "23092", "hgncId": "HGNC:17073", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001135608.3(ARHGAP26):c.1250A>G (p.Asn417Ser)", "canonicalSpdi": "NC_000005.10:143041854:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["5q31.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 143041855, "stop": 143041855, "displayStart": 143041855, "displayStop": 143041855, "variantLength": 1, "positionVcf": 143041855, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 142421420, "stop": 142421420, "displayStart": 142421420, "displayStop": 142421420, "variantLength": 1, "positionVcf": 142421420, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N417S", "N381S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9UNA1:p.Asn417Ser", "sequenceAccessionVersion": "Q9UNA1", "sequenceAccession": "Q9UNA1", "change": "p.Asn417Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_1127:g.276486A>G", "sequenceAccessionVersion": "LRG_1127", "sequenceAccession": "LRG_1127"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_1127t1:c.1250A>G", "sequenceAccessionVersion": "LRG_1127t1", "sequenceAccession": "LRG_1127t1"}, "proteinExpression": {"expression": "LRG_1127p1:p.Asn417Ser", "sequenceAccessionVersion": "LRG_1127p1", "sequenceAccession": "LRG_1127p1", "change": "p.Asn417Ser"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001135608.3:c.1250A>G", "sequenceAccessionVersion": "NM_001135608.3", "sequenceAccession": "NM_001135608", "sequenceVersion": 3, "change": "c.1250A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_001129080.1:p.Asn417Ser", "sequenceAccessionVersion": "NP_001129080.1", "sequenceAccession": "NP_001129080", "sequenceVersion": 1, "change": "p.Asn417Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001349547.2:c.1142A>G", "sequenceAccessionVersion": "NM_001349547.2", "sequenceAccession": "NM_001349547", "sequenceVersion": 2, "change": "c.1142A>G"}, "proteinExpression": {"expression": "NP_001336476.1:p.Asn381Ser", "sequenceAccessionVersion": "NP_001336476.1", "sequenceAccession": "NP_001336476", "sequenceVersion": 1, "change": "p.Asn381Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_015071.6:c.1250A>G", "sequenceAccessionVersion": "NM_015071.6", "sequenceAccession": "NM_015071", "sequenceVersion": 6, "change": "c.1250A>G"}, "proteinExpression": {"expression": "NP_055886.1:p.Asn417Ser", "sequenceAccessionVersion": "NP_055886.1", "sequenceAccession": "NP_055886", "sequenceVersion": 1, "change": "p.Asn417Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_146198.2:n.1635A>G", "sequenceAccessionVersion": "NR_146198.2", "sequenceAccession": "NR_146198", "sequenceVersion": 2, "change": "n.1635A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NC_000005.10:g.143041855A>G", "sequenceAccessionVersion": "NC_000005.10", "sequenceAccession": "NC_000005", "sequenceVersion": 10, "change": "g.143041855A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000005.9:g.142421420A>G", "sequenceAccessionVersion": "NC_000005.9", "sequenceAccession": "NC_000005", "sequenceVersion": 9, "change": "g.142421420A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_016711.2:g.276486A>G", "sequenceAccessionVersion": "NG_016711.2", "sequenceAccession": "NG_016711", "sequenceVersion": 2, "change": "g.276486A>G"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "UniProtKB", "id": "Q9UNA1#VAR_013623"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121918546", "type": "rs"}, {"db": "ClinGen", "id": "CA117231"}], "alleleId": "20091", "variationId": "5052"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Juvenile myelomonocytic leukemia", "db": "MedGen", "id": "C0349639"}], "traitSetId": "99"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001135608.3(ARHGAP26):c.1250A>G (p.Asn417Ser) AND Juvenile myelomonocytic leukemia", "accession": "RCV000005355", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "176876.0014", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0017", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0015", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0016", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, {"value": "Juvenile myelomonocytic leukemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Juvenile+Myelomonocytic+Leukemia+%28JMML%29/3936"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209"}, {"db": "MONDO", "id": "MONDO:0011908"}]}], "symbols": [{"value": "JMML", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9884"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9884"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "citations": [{"ids": [{"value": "24493721", "source": "PubMed"}], "type": "practice guideline", "abbrev": "ASCO, 2014"}], "xrefs": [{"db": "Orphanet", "id": "86834"}, {"db": "MedGen", "id": "C0349639"}, {"db": "MONDO", "id": "MONDO:0011908"}, {"db": "OMIM", "id": "607785", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "99", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-08-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605370.0001_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "title": "ARHGAP26, ASN417SER_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC"}, "clinvarAccession": {"accession": "SCV000025533", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a leukemic cells derived from a patient with juvenile myelomonocytic leukemia (JMML; 607785) and a fusion between the MLL gene on 11q and the GRAF gene on 5q, Borkhardt et al. (2000) identified in the other GRAF allele an A-to-G transition at nucleotide 1255 that resulted in the substitution of a serine for an asparagine at amino acid 417. This was thought to be a second hit in a leukemogenic process."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ARHGAP26"}], "names": [{"value": "ARHGAP26, ASN417SER"}], "variantType": "Variation", "otherNames": [{"value": "ASN417SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25533"}], "traitMappings": [{"medgens": [{"name": "Juvenile myelomonocytic leukemia", "cui": "C0349639"}], "clinicalAssertionId": "25533", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "mappingRef": "Preferred"}]}}
-{"variationId": "5054", "variationName": "ARHGAP26, 74-BP INS", "variationType": "Insertion", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000005054", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5q31.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 142770377, "stop": 143229011, "displayStart": 142770377, "displayStop": 143229011, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 142150291, "stop": 142608571, "displayStart": 142150291, "displayStop": 142608571, "strand": "+"}]}], "omims": ["605370"], "fullName": "Rho GTPase activating protein 26", "geneId": "23092", "hgncId": "HGNC:17073", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}], "name": "ARHGAP26, 74-BP INS", "variantTypes": ["Insertion"], "locations": [{"cytogeneticLocations": ["5q31"]}], "otherNames": [{"value": "74-BP INS"}], "xrefs": [{"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}], "alleleId": "20093", "variationId": "5054"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Juvenile myelomonocytic leukemia", "db": "MedGen", "id": "C0349639"}], "traitSetId": "99"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "ARHGAP26, 74-BP INS AND Juvenile myelomonocytic leukemia", "accession": "RCV000005357", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "176876.0014", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0017", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0015", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0016", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, {"value": "Juvenile myelomonocytic leukemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Juvenile+Myelomonocytic+Leukemia+%28JMML%29/3936"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209"}, {"db": "MONDO", "id": "MONDO:0011908"}]}], "symbols": [{"value": "JMML", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9884"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9884"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "citations": [{"ids": [{"value": "24493721", "source": "PubMed"}], "type": "practice guideline", "abbrev": "ASCO, 2014"}], "xrefs": [{"db": "Orphanet", "id": "86834"}, {"db": "MedGen", "id": "C0349639"}, {"db": "MONDO", "id": "MONDO:0011908"}, {"db": "OMIM", "id": "607785", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "99", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-08-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605370.0003_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "title": "ARHGAP26, 74-BP INS_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC"}, "clinvarAccession": {"accession": "SCV000025535", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In leukemic cells from a patient with juvenile myelomonocytic leukemia (JMML; 607785) and a t(5;11)(q31;q23) involving the N-terminal part of MLL and the C-terminal part of the GRAF gene, Borkhardt et al. (2000) found that the GRAF allele on the other chromosome 5 carried a 74-bp insertion located in the 60-kb long intron between exons 15 and 16. The insertion presumably generated a stop codon. The predicted protein lacked the SH3 domain of GRAF that was shown to be necessary for the interaction with the focal adhesion kinase."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ARHGAP26"}], "names": [{"value": "ARHGAP26, 74-BP INS"}], "variantType": "Variation", "otherNames": [{"value": "74-BP INS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25535"}], "traitMappings": [{"medgens": [{"name": "Juvenile myelomonocytic leukemia", "cui": "C0349639"}], "clinicalAssertionId": "25535", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "mappingRef": "Preferred"}]}}
-{"variationId": "5053", "variationName": "ARHGAP26, 52-BP INS", "variationType": "Insertion", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000005053", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5q31.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 142770377, "stop": 143229011, "displayStart": 142770377, "displayStop": 143229011, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 142150291, "stop": 142608571, "displayStart": 142150291, "displayStop": 142608571, "strand": "+"}]}], "omims": ["605370"], "fullName": "Rho GTPase activating protein 26", "geneId": "23092", "hgncId": "HGNC:17073", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}], "name": "ARHGAP26, 52-BP INS", "variantTypes": ["Insertion"], "locations": [{"cytogeneticLocations": ["5q31"]}], "otherNames": [{"value": "52-BP INS"}], "xrefs": [{"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}], "alleleId": "20092", "variationId": "5053"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Juvenile myelomonocytic leukemia", "db": "MedGen", "id": "C0349639"}], "traitSetId": "99"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "ARHGAP26, 52-BP INS AND Juvenile myelomonocytic leukemia", "accession": "RCV000005356", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "176876.0014", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0017", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0015", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0016", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, {"value": "Juvenile myelomonocytic leukemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Juvenile+Myelomonocytic+Leukemia+%28JMML%29/3936"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209"}, {"db": "MONDO", "id": "MONDO:0011908"}]}], "symbols": [{"value": "JMML", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9884"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9884"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "citations": [{"ids": [{"value": "24493721", "source": "PubMed"}], "type": "practice guideline", "abbrev": "ASCO, 2014"}], "xrefs": [{"db": "Orphanet", "id": "86834"}, {"db": "MedGen", "id": "C0349639"}, {"db": "MONDO", "id": "MONDO:0011908"}, {"db": "OMIM", "id": "607785", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "99", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-08-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605370.0002_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "title": "ARHGAP26, 52-BP INS_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC"}, "clinvarAccession": {"accession": "SCV000025534", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In leukemic cells from a patient with juvenile myelomonocytic leukemia (JMML; 607785) and a reciprocal translocation t(5;11)(q31;q23) involving the GRAF and MLL genes, Borkhardt et al. (2000) found that the other allele of the GRAF gene carried a 52-bp insertion at the splice junction of exons 12 and 13. The exon/intron boundary was located at nucleotides 1290/91. The insertion led to a reading frameshift that generated a stop codon. The predicted truncated GRAF protein lacked almost the entire GAP domain and therefore was most likely not functional. The 52-bp insertion (nucleotides 32560-32611) originated from a 524-bp long sequence located upstream of the 3-prime splice site of the adjacent nearly 13-kb long intron. Because the insertion is imbedded in perfect splice donor and acceptor sites, it was thought to be the result of aberrant splicing."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ARHGAP26"}], "names": [{"value": "ARHGAP26, 52-BP INS"}], "variantType": "Variation", "otherNames": [{"value": "52-BP INS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25534"}], "traitMappings": [{"medgens": [{"name": "Juvenile myelomonocytic leukemia", "cui": "C0349639"}], "clinicalAssertionId": "25534", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "mappingRef": "Preferred"}]}}
-{"variationId": "2752", "variationName": "NM_014319.5(LEMD3):c.457C>T (p.Gln153Ter)", "variationType": "single nucleotide variant", "dateCreated": "2020-06-27T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2020-06-27T00:00:00Z", "accession": "VCV000002752", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["12q14.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 65169583, "stop": 65248355, "displayStart": 65169583, "displayStop": 65248355, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 65563350, "stop": 65642140, "displayStart": 65563350, "displayStop": 65642140, "strand": "+"}]}], "omims": ["607844"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2020-10-19T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=LEMD3"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2020-10-19T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=LEMD3"}, "fullName": "LEM domain containing 3", "geneId": "23592", "hgncId": "HGNC:28887", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["12q14.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 65169871, "stop": 65170080, "displayStart": 65169871, "displayStop": 65170080, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 4630", "geneId": "130008224", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_014319.5(LEMD3):c.457C>T (p.Gln153Ter)", "canonicalSpdi": "NC_000012.12:65170052:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["12q14.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 65170053, "stop": 65170053, "displayStart": 65170053, "displayStop": 65170053, "variantLength": 1, "positionVcf": 65170053, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 65563833, "stop": 65563833, "displayStart": 65563833, "displayStop": 65563833, "variantLength": 1, "positionVcf": 65563833, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "457C-T"}], "proteinChanges": ["Q153*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000012.11:g.65563833C>T", "sequenceAccessionVersion": "NC_000012.11", "sequenceAccession": "NC_000012", "sequenceVersion": 11, "change": "g.65563833C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000012.12:g.65170053C>T", "sequenceAccessionVersion": "NC_000012.12", "sequenceAccession": "NC_000012", "sequenceVersion": 12, "change": "g.65170053C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016210.2:g.5483C>T", "sequenceAccessionVersion": "NG_016210.2", "sequenceAccession": "NG_016210", "sequenceVersion": 2, "change": "g.5483C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001167614.2:c.457C>T", "sequenceAccessionVersion": "NM_001167614.2", "sequenceAccession": "NM_001167614", "sequenceVersion": 2, "change": "c.457C>T"}, "proteinExpression": {"expression": "NP_001161086.1:p.Gln153Ter", "sequenceAccessionVersion": "NP_001161086.1", "sequenceAccession": "NP_001161086", "sequenceVersion": 1, "change": "p.Gln153Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_014319.5:c.457C>T", "sequenceAccessionVersion": "NM_014319.5", "sequenceAccession": "NM_014319", "sequenceVersion": 5, "change": "c.457C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_055134.2:p.Gln153Ter", "sequenceAccessionVersion": "NP_055134.2", "sequenceAccession": "NP_055134", "sequenceVersion": 2, "change": "p.Gln153Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "OMIM", "id": "607844.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "1018165800", "type": "rs"}], "comments": [{"value": "ClinGen staff contributed the HGVS expression for this variant.", "dataSource": "ClinGen", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "17791", "variationId": "2752"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Osteopoikilosis", "db": "MedGen", "id": "C0029455"}], "traitSetId": "705"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2004-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_014319.5(LEMD3):c.457C>T (p.Gln153Ter) AND Osteopoikilosis", "accession": "RCV000002877", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15489854", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Osteopoikilosis (disease)", "type": "Alternate"}, {"value": "Osteopoikilosis", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Osteopoikilosis/5484"}, {"db": "Human Phenotype Ontology", "id": "HP:0010739"}, {"db": "MONDO", "id": "MONDO:0001414"}]}], "attributes": [{"attribute": {"base": {"integerValue": "4158"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "4158"}]}], "xrefs": [{"db": "MedGen", "id": "C0029455"}, {"db": "MONDO", "id": "MONDO:0001414"}, {"db": "Human Phenotype Ontology", "id": "HP:0010739", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "705", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2004-11-01T00:00:00Z", "dateCreated": "2020-06-27T00:00:00Z", "mostRecentSubmission": "2020-06-27T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "607844.0001_OSTEOPOIKILOSIS", "title": "LEMD3, 457C-T_OSTEOPOIKILOSIS"}, "clinvarAccession": {"accession": "SCV000023035", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2020-06-27T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2004-11-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a Belgian individual with osteopoikilosis (see 166700), Hellemans et al. (2004) found a 457C-T transition in the LEMD3 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15489854", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "166700", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "LEMD3"}], "names": [{"value": "LEMD3, 457C-T"}], "variantType": "Variation", "otherNames": [{"value": "457C-T", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "607844.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "OSTEOPOIKILOSIS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "23035"}], "traitMappings": [{"medgens": [{"name": "Osteopoikilosis", "cui": "C0029455"}], "clinicalAssertionId": "23035", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "OSTEOPOIKILOSIS", "mappingRef": "Preferred"}]}}
-{"variationId": "273", "variationName": "NM_173546.3(KLHDC8B):c.-158C>T", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000273", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3p21.31"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 49171598, "stop": 49176486, "displayStart": 49171598, "displayStop": 49176486, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 49209017, "stop": 49213918, "displayStart": 49209017, "displayStop": 49213918, "strand": "+"}]}], "omims": ["613169"], "fullName": "kelch domain containing 8B", "geneId": "200942", "hgncId": "HGNC:28557", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_173546.3(KLHDC8B):c.-158C>T", "canonicalSpdi": "NC_000003.12:49171661:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["3p21.31"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 49171662, "stop": 49171662, "displayStart": 49171662, "displayStop": 49171662, "variantLength": 1, "positionVcf": 49171662, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 49209095, "stop": 49209095, "displayStart": 49209095, "displayStop": 49209095, "variantLength": 1, "positionVcf": 49209095, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "KLHDC8B, 5-PRIME UTR, +28C-T"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NG_027702.1:g.5078C>T", "sequenceAccessionVersion": "NG_027702.1", "sequenceAccession": "NG_027702", "sequenceVersion": 1, "change": "g.5078C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_173546.3:c.-158C>T", "sequenceAccessionVersion": "NM_173546.3", "sequenceAccession": "NM_173546", "sequenceVersion": 3, "change": "c.-158C>T", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001623", "type": "5 prime UTR variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000003.11:g.49209095C>T", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.49209095C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.49171662C>T", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.49171662C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}], "xrefs": [{"db": "OMIM", "id": "613169.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "387906223", "type": "rs"}, {"db": "ClinGen", "id": "CA114098"}], "globalMinorAlleleFrequency": {"value": 0.003, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "15312", "variationId": "273"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Classic Hodgkin lymphoma", "db": "MedGen", "id": "C0019829"}], "traitSetId": "81"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2009-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_173546.3(KLHDC8B):c.-158C>T AND Classic Hodgkin lymphoma", "accession": "RCV000000297", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "19706467", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Classic Hodgkin lymphoma", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0009348"}]}, {"value": "Hodgkin lymphoma", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Hodgkin+lymphoma/3444"}, {"db": "Human Phenotype Ontology", "id": "HP:0012189"}]}], "symbols": [{"value": "CHL", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "236000", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "16529"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "16529"}]}], "citations": [{"url": "https://www.nccn.org/professionals/physician_gls/pdf/hodgkins.pdf", "citationText": "NCCN Clinical Practice Guidelines in Oncology (NCCN Guidelines\u00ae) Hodgkin Lymphoma, 2022", "type": "practice guideline", "abbrev": "NCCN, 2022"}], "xrefs": [{"db": "Orphanet", "id": "391"}, {"db": "MedGen", "id": "C0019829"}, {"db": "MONDO", "id": "MONDO:0009348"}, {"db": "OMIM", "id": "236000", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012189", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "81", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-09-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613169.0001_HODGKIN LYMPHOMA", "title": "KLHDC8B, 5-PRIME UTR, +28C-T_HODGKIN LYMPHOMA"}, "clinvarAccession": {"accession": "SCV000020441", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2009-09-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Salipante et al. (2009) analyzed the KLHDC8B gene in 52 probands from families with 2 or more individuals with classic Hodgkin lymphoma (236000) and identified a +28C-T transition at a highly conserved nucleotide in the 5-prime UTR that was present in probands from 3 (5.8%) of 52 families compared with 4 (1.3%) of 307 controls (odds ratio, 4.64; 95% confidence interval, 1.01-21.4). The variant segregated with disease, and individuals heterozygous for the T allele were found to produce lower levels of KLHDC8B than those homozygous for the more common C allele. Studies in transfected HeLA cells demonstrated an approximately 50% reduction in translation of mRNA with the T allele compared to the C allele."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19706467", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "236000", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "KLHDC8B"}], "names": [{"value": "KLHDC8B, 5-PRIME UTR, +28C-T"}], "variantType": "Variation", "otherNames": [{"value": "5-PRIME UTR, +28C-T", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613169.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HODGKIN LYMPHOMA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20441"}], "traitMappings": [{"medgens": [{"name": "Classic Hodgkin lymphoma", "cui": "C0019829"}], "clinicalAssertionId": "20441", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HODGKIN LYMPHOMA", "mappingRef": "Preferred"}]}}
-{"variationId": "407", "variationName": "NM_144639.3(UROC1):c.1348C>T (p.Arg450Cys)", "variationType": "single nucleotide variant", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "accession": "VCV000000407", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 126481166, "stop": 126517773, "displayStart": 126481166, "displayStop": 126517773, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 126200007, "stop": 126236615, "displayStart": 126200007, "displayStop": 126236615, "strand": "-"}]}], "omims": ["613012"], "fullName": "urocanate hydratase 1", "geneId": "131669", "hgncId": "HGNC:26444", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_144639.3(UROC1):c.1348C>T (p.Arg450Cys)", "canonicalSpdi": "NC_000003.12:126498140:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["3q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 126498141, "stop": 126498141, "displayStart": 126498141, "displayStop": 126498141, "variantLength": 1, "positionVcf": 126498141, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 126216984, "stop": 126216984, "displayStart": 126216984, "displayStop": 126216984, "variantLength": 1, "positionVcf": 126216984, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["R450C", "R510C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NM_001165974.2:c.1528C>T", "sequenceAccessionVersion": "NM_001165974.2", "sequenceAccession": "NM_001165974", "sequenceVersion": 2, "change": "c.1528C>T"}, "proteinExpression": {"expression": "NP_001159446.1:p.Arg510Cys", "sequenceAccessionVersion": "NP_001159446.1", "sequenceAccession": "NP_001159446", "sequenceVersion": 1, "change": "p.Arg510Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_144639.3:c.1348C>T", "sequenceAccessionVersion": "NM_144639.3", "sequenceAccession": "NM_144639", "sequenceVersion": 3, "change": "c.1348C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_653240.1:p.Arg450Cys", "sequenceAccessionVersion": "NP_653240.1", "sequenceAccession": "NP_653240", "sequenceVersion": 1, "change": "p.Arg450Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.126498141G>A", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.126498141G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016286.1:g.24611C>T", "sequenceAccessionVersion": "NG_016286.1", "sequenceAccession": "NG_016286", "sequenceVersion": 1, "change": "g.24611C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NC_000003.11:g.126216984G>A", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.126216984G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA114248"}, {"db": "OMIM", "id": "613012.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "137852795", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.0002, "source": "1000 Genomes Project", "minorAllele": "A"}, "alleleId": "15446", "variationId": "407"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Urocanate hydratase deficiency", "db": "MedGen", "id": "C0268514"}], "traitSetId": "111"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2009-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_144639.3(UROC1):c.1348C>T (p.Arg450Cys) AND Urocanate hydratase deficiency", "accession": "RCV000000434", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "19304569", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Urocanate hydratase deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Urocanate+hydratase+deficiency/9437"}, {"db": "SNOMED CT", "id": "60952007"}]}, {"value": "Urocanic aciduria", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012237"}, {"db": "MONDO", "id": "MONDO:0010167"}]}, {"value": "Urocanase deficiency", "type": "Alternate"}], "symbols": [{"value": "UROCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "276880", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "8539"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "8539"}]}], "xrefs": [{"db": "Orphanet", "id": "210128"}, {"db": "MedGen", "id": "C0268514"}, {"db": "MONDO", "id": "MONDO:0010167"}, {"db": "OMIM", "id": "276880", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012237", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "111", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-06-01T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613012.0001_UROCANASE DEFICIENCY (1 family)", "title": "UROC1, ARG450CYS_UROCANASE DEFICIENCY (1 family)"}, "clinvarAccession": {"accession": "SCV000020582", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-18T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2009-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "familyData": {"numFamilies": 1}}, "observedData": [{"attributes": [{"base": {"value": "In a 19-year-old Spanish woman with urocanic aciduria, mental retardation, and ataxia (UROCD; 276880), Espinos et al. (2009) identified compound heterozygosity for a 1348C-T transition in exon 14 of the UROC1 gene, resulting in an arg450-to-cys (R450C) substitution at a highly conserved residue, and a 209T-C transition in exon 2 (613012.0002), resulting in a leu70to-pro (L70P) substitution in the N-terminal alpha helix. Both mutations were predicted to have a pathologic effect, and enzyme activity was not detectable in R450C urocanase extracts in a bacterial expression system. The unaffected father was heterozygous for R450C mutation, but DNA from the mother was unavailable for testing. Neither mutation was found in 200 ethnically matched control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19304569", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "276880", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UROC1"}], "names": [{"value": "UROC1, ARG450CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG450CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613012.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "UROCANASE DEFICIENCY (1 family)", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20582"}], "traitMappings": [{"medgens": [{"name": "Urocanate hydratase deficiency", "cui": "C0268514"}], "clinicalAssertionId": "20582", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "UROCANASE DEFICIENCY (1 family)", "mappingRef": "Preferred"}]}}
-{"variationId": "221", "variationName": "NM_000027.4(AGA):c.916T>C (p.Cys306Arg)", "variationType": "single nucleotide variant", "dateCreated": "2015-07-12T00:00:00Z", "dateLastUpdated": "2023-12-30T00:00:00Z", "mostRecentSubmission": "2023-12-30T00:00:00Z", "accession": "VCV000000221", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177430774, "stop": 177442437, "displayStart": 177430774, "displayStop": 177442437, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178351927, "stop": 178363656, "displayStart": 178351927, "displayStop": 178363656, "strand": "-"}]}], "omims": ["613228"], "fullName": "aspartylglucosaminidase", "geneId": "175", "hgncId": "HGNC:318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000027.4(AGA):c.916T>C (p.Cys306Arg)", "canonicalSpdi": "NC_000004.12:177433237:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177433238, "stop": 177433238, "displayStart": 177433238, "displayStop": 177433238, "variantLength": 1, "positionVcf": 177433238, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178354392, "stop": 178354392, "displayStart": 178354392, "displayStop": 178354392, "variantLength": 1, "positionVcf": 178354392, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["C306R", "C296R"], "hgvsExpressions": [{"proteinExpression": {"expression": "P20933:p.Cys306Arg", "sequenceAccessionVersion": "P20933", "sequenceAccession": "P20933", "change": "p.Cys306Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000004.11:g.178354392A>G", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.178354392A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.177433238A>G", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.177433238A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011845.2:g.14266T>C", "sequenceAccessionVersion": "NG_011845.2", "sequenceAccession": "NG_011845", "sequenceVersion": 2, "change": "g.14266T>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000027.4:c.916T>C", "sequenceAccessionVersion": "NM_000027.4", "sequenceAccession": "NM_000027", "sequenceVersion": 4, "change": "c.916T>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_000018.2:p.Cys306Arg", "sequenceAccessionVersion": "NP_000018.2", "sequenceAccession": "NP_000018", "sequenceVersion": 2, "change": "p.Cys306Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001171988.2:c.886T>C", "sequenceAccessionVersion": "NM_001171988.2", "sequenceAccession": "NM_001171988", "sequenceVersion": 2, "change": "c.886T>C"}, "proteinExpression": {"expression": "NP_001165459.1:p.Cys296Arg", "sequenceAccessionVersion": "NP_001165459.1", "sequenceAccession": "NP_001165459", "sequenceVersion": 1, "change": "p.Cys296Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033655.2:n.902T>C", "sequenceAccessionVersion": "NR_033655.2", "sequenceAccession": "NR_033655", "sequenceVersion": 2, "change": "n.902T>C"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114057"}, {"db": "UniProtKB", "id": "P20933#VAR_005075"}, {"db": "OMIM", "id": "613228.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121964906", "type": "rs"}], "alleleId": "15260", "variationId": "221"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Aspartylglucosaminuria", "db": "MedGen", "id": "C0268225"}], "traitSetId": "72"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2023-04-10T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000027.4(AGA):c.916T>C (p.Cys306Arg) AND Aspartylglucosaminuria", "accession": "RCV000000245", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Aspartylglycosaminuria", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Aspartylglucosaminuria/622"}]}, {"value": "Aspartylglucos-aminuria", "type": "Alternate"}, {"value": "Aspartylglucos-amidase (AGA) deficiency", "type": "Alternate"}, {"value": "AGA deficiency", "type": "Alternate"}, {"value": "Glycosylasparaginase deficiency", "type": "Alternate"}, {"value": "GLYCOASPARAGINASE", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}, {"value": "Aspartylglucosaminuria", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012068"}, {"db": "MONDO", "id": "MONDO:0008830"}]}], "symbols": [{"value": "AGU", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "5854"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "5854"}]}], "xrefs": [{"db": "Orphanet", "id": "93"}, {"db": "MedGen", "id": "C0268225"}, {"db": "MONDO", "id": "MONDO:0008830"}, {"db": "OMIM", "id": "208400", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012068", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "72", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2023-04-10T00:00:00Z", "dateCreated": "2015-07-12T00:00:00Z", "mostRecentSubmission": "2023-12-30T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613228.0003_ASPARTYLGLUCOSAMINURIA", "title": "AGA, CYS306ARG_ASPARTYLGLUCOSAMINURIA"}, "clinvarAccession": {"accession": "SCV000020389", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-07-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 16-year-old white American patient with aspartylglucosaminuria (AGU; 208400), Ikonen et al. (1991) found by the SSCP method a T-to-C change at nucleotide 916 of the AGA gene, resulting in substitution of arginine for cysteine-306 (C306R)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AGA"}], "names": [{"value": "AGA, CYS306ARG"}], "variantType": "Variation", "otherNames": [{"value": "CYS306ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613228.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ASPARTYLGLUCOSAMINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20389"}, {"clinvarSubmissionId": {"localKey": "NM_000027.4:c.916T>C|OMIM:208400", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004212573", "version": 1, "submitterIdentifiers": {"submitterName": "Baylor Genetics", "orgId": "1006", "orgCategory": "laboratory"}, "dateUpdated": "2023-12-30T00:00:00Z", "dateCreated": "2023-12-30T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "dateLastEvaluated": "2023-04-10T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_000027.4:c.916T>C"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB13856327"], "id": "7866537"}], "traitMappings": [{"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "7866537", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "208400", "mappingRef": "OMIM"}, {"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "20389", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ASPARTYLGLUCOSAMINURIA", "mappingRef": "Preferred"}]}}
-{"variationId": "1610", "variationName": "NM_024884.3(L2HGDH):c.164G>A (p.Gly55Asp)", "variationType": "single nucleotide variant", "dateCreated": "2017-11-10T00:00:00Z", "dateLastUpdated": "2024-03-17T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "accession": "VCV000001610", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["14q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_14", "accession": "NC_000014.9", "start": 50242434, "stop": 50312229, "displayStart": 50242434, "displayStop": 50312229, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_14", "accession": "NC_000014.8", "start": 50709151, "stop": 50778946, "displayStart": 50709151, "displayStop": 50778946, "strand": "-"}]}], "omims": ["609584"], "fullName": "L-2-hydroxyglutarate dehydrogenase", "geneId": "79944", "hgncId": "HGNC:20499", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_024884.3(L2HGDH):c.164G>A (p.Gly55Asp)", "canonicalSpdi": "NC_000014.9:50302993:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["14q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_14", "accession": "NC_000014.9", "start": 50302994, "stop": 50302994, "displayStart": 50302994, "displayStop": 50302994, "variantLength": 1, "positionVcf": 50302994, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_14", "accession": "NC_000014.8", "start": 50769712, "stop": 50769712, "displayStart": 50769712, "displayStop": 50769712, "variantLength": 1, "positionVcf": 50769712, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "L2HGDH, GLY55ASP"}], "proteinChanges": ["G55D"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9H9P8:p.Gly55Asp", "sequenceAccessionVersion": "Q9H9P8", "sequenceAccession": "Q9H9P8", "change": "p.Gly55Asp"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000014.8:g.50769712C>T", "sequenceAccessionVersion": "NC_000014.8", "sequenceAccession": "NC_000014", "sequenceVersion": 8, "change": "g.50769712C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000014.9:g.50302994C>T", "sequenceAccessionVersion": "NC_000014.9", "sequenceAccession": "NC_000014", "sequenceVersion": 9, "change": "g.50302994C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008092.1:g.14236G>A", "sequenceAccessionVersion": "NG_008092.1", "sequenceAccession": "NG_008092", "sequenceVersion": 1, "change": "g.14236G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_024884.3:c.164G>A", "sequenceAccessionVersion": "NM_024884.3", "sequenceAccession": "NM_024884", "sequenceVersion": 3, "change": "c.164G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_079160.1:p.Gly55Asp", "sequenceAccessionVersion": "NP_079160.1", "sequenceAccession": "NP_079160", "sequenceVersion": 1, "change": "p.Gly55Asp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_024884.2:c.164G>A", "sequenceAccessionVersion": "NM_024884.2", "sequenceAccession": "NM_024884", "sequenceVersion": 2, "change": "c.164G>A"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA115108"}, {"db": "UniProtKB", "id": "Q9H9P8#VAR_025682"}, {"db": "OMIM", "id": "609584.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118204021", "type": "rs"}], "alleleId": "16649", "variationId": "1610"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "L-2-hydroxyglutaric aciduria", "db": "MedGen", "id": "C1855995"}], "traitSetId": "414"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2004-11-15T00:00:00Z", "submissionCount": 1}}}, "title": "NM_024884.3(L2HGDH):c.164G>A (p.Gly55Asp) AND L-2-hydroxyglutaric aciduria", "accession": "RCV000001677", "version": 4}, {"classifiedConditionList": {"classifiedConditions": [{"value": "L2HGDH-related condition"}], "traitSetId": "90824"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2024-01-30T00:00:00Z", "submissionCount": 1}}}, "title": "NM_024884.3(L2HGDH):c.164G>A (p.Gly55Asp) AND L2HGDH-related condition", "accession": "RCV003398413", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "15385440", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "L2HGDH-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE", "id": "90824", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "L-2-hydroxyglutaric aciduria", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "L-2-hydroxyglutaric+aciduria/4061"}, {"db": "Human Phenotype Ontology", "id": "HP:0040144"}, {"db": "MONDO", "id": "MONDO:0009370"}]}], "symbols": [{"value": "L2HGA", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "236792", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "10472"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10472"}]}], "xrefs": [{"db": "Orphanet", "id": "79314"}, {"db": "MedGen", "id": "C1855995"}, {"db": "MONDO", "id": "MONDO:0009370"}, {"db": "OMIM", "id": "236792", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0040144", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "414", "contributesToAggregateClassification": false}], "dateLastEvaluated": "2024-01-30T00:00:00Z", "dateCreated": "2017-11-10T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "609584.0004_L-2-HYDROXYGLUTARIC ACIDURIA", "title": "L2HGDH, GLY55ASP_L-2-HYDROXYGLUTARIC ACIDURIA"}, "clinvarAccession": {"accession": "SCV000021833", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-11-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2004-11-15T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In members of 3 consanguineous Turkish families with L-2-hydroxyglutaric aciduria (L2HGA; 236792), Topcu et al. (2004) described homozygosity for a 164G-A transition in exon 2 of the L2HGDH gene, which was predicted to result in a substitution of aspartic acid for glycine at residue 55 (G55D)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15385440", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "236792", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "L2HGDH"}], "names": [{"value": "L2HGDH, GLY55ASP"}], "variantType": "Variation", "otherNames": [{"value": "GLY55ASP", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "609584.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "L-2-HYDROXYGLUTARIC ACIDURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21833"}, {"clinvarSubmissionId": {"localKey": "37587525|L2HGDH-related condition", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004103622", "version": 2, "submitterIdentifiers": {"submitterName": "PreventionGenetics, part of Exact Sciences", "orgId": "239772", "orgCategory": "laboratory", "orgAbbreviation": "PG"}, "dateUpdated": "2024-03-16T00:00:00Z", "dateCreated": "2023-11-20T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "comments": [{"value": "The L2HGDH c.164G>A variant is predicted to result in the amino acid substitution p.Gly55Asp. This variant was reported in the homozygous state in four individuals from three families; all individuals had biochemically confirmed L-2-Hydroxyglutaric aciduria (Topcu et al. 2004. PubMed ID: 15385440). It was also reported in the compound heterozygous state with a pathogenic frameshift variant in two affected relatives (Sass et al. 2008. PubMed ID: 18415700). This variant has not been reported in a large population database, indicating this variant is rare. This variant is interpreted as likely pathogenic."}], "dateLastEvaluated": "2024-01-30T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "L2HGDH"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_024884.2:c.164G>A"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "L2HGDH-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB13915440", "SUB14299258"], "id": "7685222"}], "traitMappings": [{"medgens": [{"name": "L-2-hydroxyglutaric aciduria", "cui": "C1855995"}], "clinicalAssertionId": "21833", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "L-2-HYDROXYGLUTARIC ACIDURIA", "mappingRef": "Preferred"}, {"medgens": [{"name": "L2HGDH-related condition", "cui": "None"}], "clinicalAssertionId": "7685222", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "L2HGDH-related condition", "mappingRef": "Preferred"}]}}
-{"variationId": "5220", "variationName": "NM_001463.4(FRZB):c.970C>G (p.Arg324Gly)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2024-03-17T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "accession": "VCV000005220", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2q32.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 182833275, "stop": 182866637, "displayStart": 182833275, "displayStop": 182866637, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 183698001, "stop": 183731497, "displayStart": 183698001, "displayStop": 183731497, "strand": "-"}]}], "omims": ["605083"], "fullName": "frizzled related protein", "geneId": "2487", "hgncId": "HGNC:3959", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001463.4(FRZB):c.970C>G (p.Arg324Gly)", "canonicalSpdi": "NC_000002.12:182834856:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2q32.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 182834857, "stop": 182834857, "displayStart": 182834857, "displayStop": 182834857, "variantLength": 1, "positionVcf": 182834857, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 183699584, "stop": 183699584, "displayStart": 183699584, "displayStop": 183699584, "variantLength": 1, "positionVcf": 183699584, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["R324G"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q92765:p.Arg324Gly", "sequenceAccessionVersion": "Q92765", "sequenceAccession": "Q92765", "change": "p.Arg324Gly"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NM_001463.3:c.970C>G", "sequenceAccessionVersion": "NM_001463.3", "sequenceAccession": "NM_001463", "sequenceVersion": 3, "change": "c.970C>G"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000002.11:g.183699584G>C", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.183699584G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.182834857G>C", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.182834857G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_017197.1:g.36915C>G", "sequenceAccessionVersion": "NG_017197.1", "sequenceAccession": "NG_017197", "sequenceVersion": 1, "change": "g.36915C>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001463.4:c.970C>G", "sequenceAccessionVersion": "NM_001463.4", "sequenceAccession": "NM_001463", "sequenceVersion": 4, "change": "c.970C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_001454.2:p.Arg324Gly", "sequenceAccessionVersion": "NP_001454.2", "sequenceAccession": "NP_001454", "sequenceVersion": 2, "change": "p.Arg324Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA117342"}, {"db": "UniProtKB", "id": "Q92765#VAR_014862"}, {"db": "OMIM", "id": "605083.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "7775", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.12839, "source": "1000 Genomes Project", "minorAllele": "C"}, "alleleId": "20259", "variationId": "5220"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Osteoarthritis", "db": "MedGen", "id": "C0029408"}], "traitSetId": "1446"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "risk factor", "dateLastEvaluated": "2004-06-29T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001463.4(FRZB):c.970C>G (p.Arg324Gly) AND Osteoarthritis", "accession": "RCV000005530", "version": 2}, {"classifiedConditionList": {"classifiedConditions": [{"value": "FRZB-related condition"}], "traitSetId": "95598"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Benign", "dateLastEvaluated": "2019-12-03T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001463.4(FRZB):c.970C>G (p.Arg324Gly) AND FRZB-related condition", "accession": "RCV003964794", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Benign", "citations": [{"ids": [{"value": "15210948", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "FRZB-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE", "id": "95598", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Osteoarthritis", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0002758"}, {"db": "MONDO", "id": "MONDO:0005178"}]}, {"value": "OSTEOARTHROSIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}], "symbols": [{"value": "OA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}], "citations": [{"url": "https://www.nice.org.uk/guidance/ng226", "citationText": "UK NICE Guideline NG226, Osteoarthritis in over 16s: diagnosis and management, 2022", "type": "practice guideline", "abbrev": "NICE, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng193", "citationText": "UK NICE Guideline NG193, Chronic pain (primary and secondary) in over 16s: assessment of all chronic pain and management of chronic primary pain, 2021", "type": "practice guideline", "abbrev": "NICE, 2021"}], "xrefs": [{"db": "MedGen", "id": "C0029408"}, {"db": "MONDO", "id": "MONDO:0005178"}, {"db": "Human Phenotype Ontology", "id": "HP:0002758", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0001379", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0002824", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005762", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "1446", "contributesToAggregateClassification": false}], "dateLastEvaluated": "2019-12-03T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605083.0001_OSTEOARTHRITIS SUSCEPTIBILITY 1", "title": "FRZB, ARG324GLY_OSTEOARTHRITIS SUSCEPTIBILITY 1"}, "clinvarAccession": {"accession": "SCV000025712", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "risk factor", "dateLastEvaluated": "2004-06-29T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "By linkage and association studies, Loughlin et al. (2004) found that an arg324-to-gly (R324G) (rs7775) substitution in the FRZB gene was associated with osteoarthritis of the hip in females (see OS1, 165720). The association was confirmed in an independent cohort of female hip cases (p = 0.04)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15210948", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "FRZB"}], "names": [{"value": "FRZB, ARG324GLY"}], "variantType": "Variation", "otherNames": [{"value": "ARG324GLY", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605083.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "OSTEOARTHRITIS SUSCEPTIBILITY 1", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25712"}, {"clinvarSubmissionId": {"localKey": "388831|FRZB-related condition", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004778771", "version": 1, "submitterIdentifiers": {"submitterName": "PreventionGenetics, part of Exact Sciences", "orgId": "239772", "orgCategory": "laboratory", "orgAbbreviation": "PG"}, "dateUpdated": "2024-03-16T00:00:00Z", "dateCreated": "2024-03-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Benign", "comments": [{"value": "This variant is classified as benign based on ACMG/AMP sequence variant interpretation guidelines (Richards et al. 2015 PMID: 25741868, with internal and published modifications)."}], "dateLastEvaluated": "2019-12-03T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "FRZB"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001463.3:c.970C>G"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "FRZB-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14299258"], "id": "8862637"}], "traitMappings": [{"medgens": [{"name": "Osteoarthritis susceptibility 1", "cui": "C3887876"}], "clinicalAssertionId": "25712", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "OSTEOARTHRITIS SUSCEPTIBILITY 1", "mappingRef": "Preferred"}, {"medgens": [{"name": "FRZB-related condition", "cui": "None"}], "clinicalAssertionId": "8862637", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FRZB-related condition", "mappingRef": "Preferred"}]}}
-{"variationId": "5221", "variationName": "NM_001463.4(FRZB):c.598C>T (p.Arg200Trp)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2024-03-17T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "accession": "VCV000005221", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2q32.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 182833275, "stop": 182866637, "displayStart": 182833275, "displayStop": 182866637, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 183698001, "stop": 183731497, "displayStart": 183698001, "displayStop": 183731497, "strand": "-"}]}], "omims": ["605083"], "fullName": "frizzled related protein", "geneId": "2487", "hgncId": "HGNC:3959", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001463.4(FRZB):c.598C>T (p.Arg200Trp)", "canonicalSpdi": "NC_000002.12:182838607:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2q32.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 182838608, "stop": 182838608, "displayStart": 182838608, "displayStop": 182838608, "variantLength": 1, "positionVcf": 182838608, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 183703336, "stop": 183703336, "displayStart": 183703336, "displayStop": 183703336, "variantLength": 1, "positionVcf": 183703336, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["R200W"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q92765:p.Arg200Trp", "sequenceAccessionVersion": "Q92765", "sequenceAccession": "Q92765", "change": "p.Arg200Trp"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NM_001463.3:c.598C>T", "sequenceAccessionVersion": "NM_001463.3", "sequenceAccession": "NM_001463", "sequenceVersion": 3, "change": "c.598C>T"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000002.11:g.183703336G>A", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.183703336G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.182838608G>A", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.182838608G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_017197.1:g.33163C>T", "sequenceAccessionVersion": "NG_017197.1", "sequenceAccession": "NG_017197", "sequenceVersion": 1, "change": "g.33163C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001463.4:c.598C>T", "sequenceAccessionVersion": "NM_001463.4", "sequenceAccession": "NM_001463", "sequenceVersion": 4, "change": "c.598C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_001454.2:p.Arg200Trp", "sequenceAccessionVersion": "NP_001454.2", "sequenceAccession": "NP_001454", "sequenceVersion": 2, "change": "p.Arg200Trp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA117344"}, {"db": "UniProtKB", "id": "Q92765#VAR_021411"}, {"db": "OMIM", "id": "605083.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "288326", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.04393, "source": "1000 Genomes Project", "minorAllele": "A"}, "alleleId": "20260", "variationId": "5221"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Osteoarthritis", "db": "MedGen", "id": "C0029408"}], "traitSetId": "1446"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "risk factor", "dateLastEvaluated": "2004-06-29T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001463.4(FRZB):c.598C>T (p.Arg200Trp) AND Osteoarthritis", "accession": "RCV000005531", "version": 2}, {"classifiedConditionList": {"classifiedConditions": [{"value": "FRZB-related condition"}], "traitSetId": "95598"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Benign", "dateLastEvaluated": "2019-12-11T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001463.4(FRZB):c.598C>T (p.Arg200Trp) AND FRZB-related condition", "accession": "RCV003964795", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Benign", "citations": [{"ids": [{"value": "15210948", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "FRZB-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE", "id": "95598", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Osteoarthritis", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0002758"}, {"db": "MONDO", "id": "MONDO:0005178"}]}, {"value": "OSTEOARTHROSIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}], "symbols": [{"value": "OA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}], "citations": [{"url": "https://www.nice.org.uk/guidance/ng226", "citationText": "UK NICE Guideline NG226, Osteoarthritis in over 16s: diagnosis and management, 2022", "type": "practice guideline", "abbrev": "NICE, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng193", "citationText": "UK NICE Guideline NG193, Chronic pain (primary and secondary) in over 16s: assessment of all chronic pain and management of chronic primary pain, 2021", "type": "practice guideline", "abbrev": "NICE, 2021"}], "xrefs": [{"db": "MedGen", "id": "C0029408"}, {"db": "MONDO", "id": "MONDO:0005178"}, {"db": "Human Phenotype Ontology", "id": "HP:0002758", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0001379", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0002824", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005762", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "1446", "contributesToAggregateClassification": false}], "dateLastEvaluated": "2019-12-11T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605083.0002_OSTEOARTHRITIS SUSCEPTIBILITY 1", "title": "FRZB, ARG200TRP_OSTEOARTHRITIS SUSCEPTIBILITY 1"}, "clinvarAccession": {"accession": "SCV000025713", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "risk factor", "dateLastEvaluated": "2004-06-29T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "By linkage and association studies, Loughlin et al. (2004) identified a haplotype in the FRZB gene, defined by arg200-to-trp (R200W; 605083.0001) and arg324-to-gly (R324G) (rs288326) substitutions, as a strong risk factor for primary osteoarthritis of the hip in females (see OS1, 165720) (OR = 4.1, p = 0.004)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15210948", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "FRZB"}], "names": [{"value": "FRZB, ARG200TRP"}], "variantType": "Variation", "otherNames": [{"value": "ARG200TRP", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605083.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "OSTEOARTHRITIS SUSCEPTIBILITY 1", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25713"}, {"clinvarSubmissionId": {"localKey": "483393|FRZB-related condition", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004791813", "version": 1, "submitterIdentifiers": {"submitterName": "PreventionGenetics, part of Exact Sciences", "orgId": "239772", "orgCategory": "laboratory", "orgAbbreviation": "PG"}, "dateUpdated": "2024-03-16T00:00:00Z", "dateCreated": "2024-03-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Benign", "comments": [{"value": "This variant is classified as benign based on ACMG/AMP sequence variant interpretation guidelines (Richards et al. 2015 PMID: 25741868, with internal and published modifications)."}], "dateLastEvaluated": "2019-12-11T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "FRZB"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001463.3:c.598C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "FRZB-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14299258"], "id": "8870178"}], "traitMappings": [{"medgens": [{"name": "FRZB-related condition", "cui": "None"}], "clinicalAssertionId": "8870178", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FRZB-related condition", "mappingRef": "Preferred"}, {"medgens": [{"name": "Osteoarthritis susceptibility 1", "cui": "C3887876"}], "clinicalAssertionId": "25713", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "OSTEOARTHRITIS SUSCEPTIBILITY 1", "mappingRef": "Preferred"}]}}
-{"variationId": "1194", "variationName": "NM_001029871.4(RSPO4):c.98dup (p.Asn34fs)", "variationType": "Duplication", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2024-04-06T00:00:00Z", "mostRecentSubmission": "2024-04-06T00:00:00Z", "accession": "VCV000001194", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 958452, "stop": 1002311, "displayStart": 958452, "displayStop": 1002311, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 939094, "stop": 982906, "displayStart": 939094, "displayStop": 982906, "strand": "-"}]}], "omims": ["610573"], "fullName": "R-spondin 4", "geneId": "343637", "hgncId": "HGNC:16175", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001029871.4(RSPO4):c.98dup (p.Asn34fs)", "canonicalSpdi": "NC_000020.11:968119:CCCCCC:CCCCCCC", "variantTypes": ["Duplication"], "locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 968119, "stop": 968120, "displayStart": 968119, "displayStop": 968120, "variantLength": 1, "positionVcf": 968119, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GC"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 948762, "stop": 948763, "displayStart": 948762, "displayStop": 948763, "variantLength": 1, "positionVcf": 948762, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GC"}]}], "proteinChanges": ["N34fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.948768dup", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.948768dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.968125dup", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.968125dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_013043.1:g.39145dup", "sequenceAccessionVersion": "NG_013043.1", "sequenceAccession": "NG_013043", "sequenceVersion": 1, "change": "g.39145dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001029871.4:c.98dup", "sequenceAccessionVersion": "NM_001029871.4", "sequenceAccession": "NM_001029871", "sequenceVersion": 4, "change": "c.98dup", "maneSelect": true}, "proteinExpression": {"expression": "NP_001025042.2:p.Asn34fs", "sequenceAccessionVersion": "NP_001025042.2", "sequenceAccession": "NP_001025042", "sequenceVersion": 2, "change": "p.Asn34fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001040007.3:c.98dup", "sequenceAccessionVersion": "NM_001040007.3", "sequenceAccession": "NM_001040007", "sequenceVersion": 3, "change": "c.98dup"}, "proteinExpression": {"expression": "NP_001035096.1:p.Asn34fs", "sequenceAccessionVersion": "NP_001035096.1", "sequenceAccession": "NP_001035096", "sequenceVersion": 1, "change": "p.Asn34fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114830"}, {"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}, {"db": "dbSNP", "id": "768138495", "type": "rs"}], "alleleId": "16233", "variationId": "1194"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Anonychia", "db": "MedGen", "id": "C0265998"}], "traitSetId": "316"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2024-03-25T00:00:00Z", "submissionCount": 2}}}, "title": "NM_001029871.4(RSPO4):c.98dup (p.Asn34fs) AND Anonychia", "accession": "RCV000001253", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Uncertain significance", "citations": [{"ids": [{"value": "17186469", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hyponychia congenita", "type": "Alternate"}, {"value": "Anonychia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Anonychia+Congenita/488"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798"}, {"db": "SNOMED CT", "id": "23610003"}]}, {"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0008", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0007", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0006", "type": "Allelic variant"}]}, {"value": "ANONYCHIA/HYPONYCHIA CONGENITA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}, {"value": "ANONYCHIA TOTALIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "symbols": [{"value": "NDNC4", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "16837"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "16837"}]}], "xrefs": [{"db": "Orphanet", "id": "79143"}, {"db": "Orphanet", "id": "94150"}, {"db": "MedGen", "id": "C0265998"}, {"db": "MONDO", "id": "MONDO:0008798"}, {"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0007593", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0008384", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "316", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2024-03-25T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2024-04-06T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "610573.0005_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "title": "RSPO4, 1-BP INS, 92G_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4"}, "clinvarAccession": {"accession": "SCV000021403", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-09-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2006-12-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the 1-bp insertion in the RSPO4 gene (92_93insG) that was found in compound heterozygous state in affected members of a family with anonychia congenita (NDNC4; 206800) by Bergmann et al. (2006), see 610573.0004."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17186469", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "RSPO4"}], "names": [{"value": "RSPO4, 1-BP INS, 92G"}], "variantType": "Variation", "otherNames": [{"value": "1-BP INS, 92G", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21403"}, {"clinvarSubmissionId": {"localKey": "NM_001029871.3:c.98dup|OMIM:206800", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004805979", "version": 1, "submitterIdentifiers": {"submitterName": "Center for Genomic Medicine, King Faisal Specialist Hospital and Research Center", "orgId": "508075", "orgCategory": "other", "orgAbbreviation": "CGM_KFSHRC"}, "dateUpdated": "2024-04-06T00:00:00Z", "dateCreated": "2024-04-06T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Uncertain significance", "dateLastEvaluated": "2024-03-25T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001029871.3:c.98dup"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14337453"], "id": "8986334"}], "traitMappings": [{"medgens": [{"name": "Anonychia", "cui": "C0265998"}], "clinicalAssertionId": "8986334", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "206800", "mappingRef": "OMIM"}, {"medgens": [{"name": "Anonychia", "cui": "C0265998"}], "clinicalAssertionId": "21403", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "mappingRef": "Preferred"}]}}
-{"variationId": "651", "variationName": "NM_000130.5(F5):c.3481C>T (p.Arg1161Ter)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000651", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169511951, "stop": 169586481, "displayStart": 169511951, "displayStop": 169586481, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169481191, "stop": 169555768, "displayStart": 169481191, "displayStop": 169555768, "strand": "-"}]}], "omims": ["612309"], "fullName": "coagulation factor V", "geneId": "2153", "hgncId": "HGNC:3542", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000130.5(F5):c.3481C>T (p.Arg1161Ter)", "canonicalSpdi": "NC_000001.11:169541608:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169541609, "stop": 169541609, "displayStart": 169541609, "displayStop": 169541609, "variantLength": 1, "positionVcf": 169541609, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169510847, "stop": 169510847, "displayStart": 169510847, "displayStop": 169510847, "variantLength": 1, "positionVcf": 169510847, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "F5, ARG1133TER"}, {"value": "R1133*"}], "proteinChanges": ["R1161*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.169510847G>A", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.169510847G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.169541609G>A", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.169541609G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011806.1:g.49923C>T", "sequenceAccessionVersion": "NG_011806.1", "sequenceAccession": "NG_011806", "sequenceVersion": 1, "change": "g.49923C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000130.5:c.3481C>T", "sequenceAccessionVersion": "NM_000130.5", "sequenceAccession": "NM_000130", "sequenceVersion": 5, "change": "c.3481C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000121.2:p.Arg1161Ter", "sequenceAccessionVersion": "NP_000121.2", "sequenceAccession": "NP_000121", "sequenceVersion": 2, "change": "p.Arg1161Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_553:g.49923C>T", "sequenceAccessionVersion": "LRG_553", "sequenceAccession": "LRG_553"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA251556"}, {"db": "OMIM", "id": "612309.0009", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203909", "type": "rs"}], "alleleId": "15690", "variationId": "651"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Factor V deficiency", "db": "MedGen", "id": "C4317320"}], "traitSetId": "169"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000130.5(F5):c.3481C>T (p.Arg1161Ter) AND Factor V deficiency", "accession": "RCV000000685", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11564077", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Reduced coagulation factor V activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0003225"}]}, {"value": "Factor V deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Factor+V+Deficiency/2709"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "SNOMED CT", "id": "4320005"}]}], "attributes": [{"attribute": {"base": {"value": "Factor V Leiden thrombophilia is characterized by a poor anticoagulant response to activated protein C (APC) and an increased risk for venous thromboembolism (VTE). Deep vein thrombosis (DVT) is the most common VTE, with the legs being the most common site. Thrombosis in unusual locations is less common. Evidence suggests that heterozygosity for the Leiden variant has at most a modest effect on risk for recurrent thrombosis after initial treatment of a first VTE. It is unlikely that factor V Leiden thrombophilia (i.e., heterozygosity or homozygosity for the Leiden variant) is a major factor contributing to pregnancy loss and other adverse pregnancy outcomes (preeclampsia, fetal growth restriction, and placental abruption). The clinical expression of factor V Leiden thrombophilia is influenced by the following: The number of Leiden variants (heterozygotes have a slightly increased risk for venous thrombosis; homozygotes have a much greater thrombotic risk). Coexisting genetic thrombophilic disorders, which have a supra-additive effect on overall thrombotic risk. Acquired thrombophilic disorders: antiphospholipid antibody (APLA) syndrome, paroxysmal nocturnal hemoglobinuria, myeloproliferative disorders, and increased levels of clotting factors. Circumstantial risk factors including but not limited to pregnancy, central venous catheters, travel, combined oral contraceptive (COC) use and other combined contraceptives, oral hormone replacement therapy (HRT), selective estrogen receptor modulators (SERMs), obesity, leg injury, and advancing age."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1368"}]}], "citations": [{"ids": [{"value": "20301542", "source": "PubMed"}, {"value": "NBK1368", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "21150787", "source": "PubMed"}], "type": "general", "abbrev": "EGAPP, 2011"}, {"ids": [{"value": "3111091", "source": "pmc"}], "type": "general", "abbrev": "Retired, ACMG, 2001"}, {"ids": [{"value": "33674767", "source": "PubMed"}], "type": "Suggested Reading", "abbrev": "ACMG, 2021"}, {"ids": [{"value": "35645034", "source": "PubMed"}], "type": "general", "abbrev": "BSH, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng158", "citationText": "UK NICE Guideline NG158, Venous thromboembolic diseases: diagnosis, management and thrombophilia testing, 2023", "type": "practice guideline", "abbrev": "NICE, 2023"}], "xrefs": [{"db": "Orphanet", "id": "326"}, {"db": "MedGen", "id": "C4317320"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "169", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-09-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612309.0009_FACTOR V DEFICIENCY", "title": "F5, ARG1133TER_FACTOR V DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020835", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-09-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 seemingly unrelated southern Italian probands with undetectable plasma levels of factor V antigen and activity (227400), van Wijk et al. (2001) found homozygosity for the factor V Leiden mutation (612309.0001) in cis with a homozygous 3571C-T transition in exon 13 of the F5 gene, resulting in an arg1133-to-ter (R1133X) substitution and a truncated factor V molecule. Haplotype analysis suggested that an ancestral F5 Leiden allele, carrying the R1133X nonsense mutation in cis, diverged into the relatively rare haplotype identified in 1 of the probands by an intragenic crossing-over. Although the deficiency of the coagulation factor was profound, it was associated with only mild bleeding diathesis in 1 proband and the other proband was asymptomatic."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "11564077", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "names": [{"value": "F5, ARG1133TER"}], "variantType": "Variation", "otherNames": [{"value": "ARG1133TER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612309.0009", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "FACTOR V DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20835"}], "traitMappings": [{"medgens": [{"name": "Factor V deficiency", "cui": "C4317320"}], "clinicalAssertionId": "20835", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FACTOR V DEFICIENCY", "mappingRef": "Preferred"}]}}
-{"variationId": "654", "variationName": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-08-20T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2019-09-29T00:00:00Z", "accession": "VCV000000654", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169511951, "stop": 169586481, "displayStart": 169511951, "displayStop": 169586481, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169481191, "stop": 169555768, "displayStart": 169481191, "displayStop": 169555768, "strand": "-"}]}], "omims": ["612309"], "fullName": "coagulation factor V", "geneId": "2153", "hgncId": "HGNC:3542", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys)", "canonicalSpdi": "NC_000001.11:169518452:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169518453, "stop": 169518453, "displayStart": 169518453, "displayStop": 169518453, "variantLength": 1, "positionVcf": 169518453, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169487691, "stop": 169487691, "displayStart": 169487691, "displayStop": 169487691, "variantLength": 1, "positionVcf": 169487691, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "F5, ARG2074CYS"}, {"value": "R2074C"}], "proteinChanges": ["R2102C"], "hgvsExpressions": [{"proteinExpression": {"expression": "P12259:p.Arg2102Cys", "sequenceAccessionVersion": "P12259", "sequenceAccession": "P12259", "change": "p.Arg2102Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.169487691G>A", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.169487691G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.169518453G>A", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.169518453G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011806.1:g.73079C>T", "sequenceAccessionVersion": "NG_011806.1", "sequenceAccession": "NG_011806", "sequenceVersion": 1, "change": "g.73079C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000130.5:c.6304C>T", "sequenceAccessionVersion": "NM_000130.5", "sequenceAccession": "NM_000130", "sequenceVersion": 5, "change": "c.6304C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000121.2:p.Arg2102Cys", "sequenceAccessionVersion": "NP_000121.2", "sequenceAccession": "NP_000121", "sequenceVersion": 2, "change": "p.Arg2102Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_553:g.73079C>T", "sequenceAccessionVersion": "LRG_553", "sequenceAccession": "LRG_553"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_553t1:c.6304C>T", "sequenceAccessionVersion": "LRG_553t1", "sequenceAccession": "LRG_553t1"}, "proteinExpression": {"expression": "LRG_553p1:p.Arg2102Cys", "sequenceAccessionVersion": "LRG_553p1", "sequenceAccession": "LRG_553p1", "change": "p.Arg2102Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA251559"}, {"db": "UniProtKB", "id": "P12259#VAR_032701"}, {"db": "OMIM", "id": "612309.0012", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203910", "type": "rs"}], "alleleId": "15693", "variationId": "654"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Factor V deficiency", "db": "MedGen", "id": "C4317320"}], "traitSetId": "169"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2019-02-01T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys) AND Factor V deficiency", "accession": "RCV000000688", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "12393490", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Reduced coagulation factor V activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0003225"}]}, {"value": "Factor V deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Factor+V+Deficiency/2709"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "SNOMED CT", "id": "4320005"}]}], "attributes": [{"attribute": {"base": {"value": "Factor V Leiden thrombophilia is characterized by a poor anticoagulant response to activated protein C (APC) and an increased risk for venous thromboembolism (VTE). Deep vein thrombosis (DVT) is the most common VTE, with the legs being the most common site. Thrombosis in unusual locations is less common. Evidence suggests that heterozygosity for the Leiden variant has at most a modest effect on risk for recurrent thrombosis after initial treatment of a first VTE. It is unlikely that factor V Leiden thrombophilia (i.e., heterozygosity or homozygosity for the Leiden variant) is a major factor contributing to pregnancy loss and other adverse pregnancy outcomes (preeclampsia, fetal growth restriction, and placental abruption). The clinical expression of factor V Leiden thrombophilia is influenced by the following: The number of Leiden variants (heterozygotes have a slightly increased risk for venous thrombosis; homozygotes have a much greater thrombotic risk). Coexisting genetic thrombophilic disorders, which have a supra-additive effect on overall thrombotic risk. Acquired thrombophilic disorders: antiphospholipid antibody (APLA) syndrome, paroxysmal nocturnal hemoglobinuria, myeloproliferative disorders, and increased levels of clotting factors. Circumstantial risk factors including but not limited to pregnancy, central venous catheters, travel, combined oral contraceptive (COC) use and other combined contraceptives, oral hormone replacement therapy (HRT), selective estrogen receptor modulators (SERMs), obesity, leg injury, and advancing age."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1368"}]}], "citations": [{"ids": [{"value": "20301542", "source": "PubMed"}, {"value": "NBK1368", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "21150787", "source": "PubMed"}], "type": "general", "abbrev": "EGAPP, 2011"}, {"ids": [{"value": "3111091", "source": "pmc"}], "type": "general", "abbrev": "Retired, ACMG, 2001"}, {"ids": [{"value": "33674767", "source": "PubMed"}], "type": "Suggested Reading", "abbrev": "ACMG, 2021"}, {"ids": [{"value": "35645034", "source": "PubMed"}], "type": "general", "abbrev": "BSH, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng158", "citationText": "UK NICE Guideline NG158, Venous thromboembolic diseases: diagnosis, management and thrombophilia testing, 2023", "type": "practice guideline", "abbrev": "NICE, 2023"}], "xrefs": [{"db": "Orphanet", "id": "326"}, {"db": "MedGen", "id": "C4317320"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "169", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2019-02-01T00:00:00Z", "dateCreated": "2017-08-20T00:00:00Z", "mostRecentSubmission": "2019-09-29T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612309.0012_FACTOR V DEFICIENCY", "title": "F5, ARG2074CYS_FACTOR V DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020838", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-08-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2003-01-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 22-year-old Italian woman in whom factor V deficiency (227400) was first diagnosed at the age of 10 years after abnormal coagulation screening tests were found preceding an operation for strabismus, Duga et al. (2003) identified a homozygous 6394C-T transition at in exon 23 of the F5 gene, resulting in an arg2074-to-cys (R2074C) change in the C2 domain of the protein. Functional studies showed that this substitution impaired both factor V secretion and its activity. The patient's menstruation was normal and her only bleeding symptom was easy bruising after minor trauma. Her parents, apparently nonconsanguineous, were asymptomatic and had factor V functional and antigen levels typical of heterozygotes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12393490", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "names": [{"value": "F5, ARG2074CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG2074CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612309.0012", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "FACTOR V DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20838"}, {"clinvarSubmissionId": {"localKey": "c.6304C>T_227400", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000899835", "version": 1, "submitterIdentifiers": {"submitterName": "NIHR Bioresource Rare Diseases, University of Cambridge", "orgId": "505998", "orgCategory": "consortium", "orgAbbreviation": "NIHR BR RD"}, "dateUpdated": "2019-09-29T00:00:00Z", "dateCreated": "2019-09-29T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "citations": [{"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2019-02-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "ethnicity": "European", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_COMPOUND_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "TGP0330"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_000130.4:c.6304C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyName": "ThromboGenomics", "submissionNames": ["ThromboGenomics"], "id": "1769365"}], "traitMappings": [{"medgens": [{"name": "Factor V deficiency", "cui": "C4317320"}], "clinicalAssertionId": "20838", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FACTOR V DEFICIENCY", "mappingRef": "Preferred"}, {"medgens": [{"name": "Congenital factor V deficiency", "cui": "C0015499"}], "clinicalAssertionId": "1769365", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "227400", "mappingRef": "OMIM"}]}}
-{"variationId": "4159", "variationName": "NM_130806.5(RXFP2):c.664A>C (p.Thr222Pro)", "variationType": "single nucleotide variant", "dateCreated": "2015-08-16T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2024-04-15T00:00:00Z", "accession": "VCV000004159", "version": 5, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["13q13.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_13", "accession": "NC_000013.11", "start": 31739526, "stop": 31803389, "displayStart": 31739526, "displayStop": 31803389, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_13", "accession": "NC_000013.10", "start": 32313678, "stop": 32377008, "displayStart": 32313678, "displayStop": 32377008, "strand": "+"}]}], "omims": ["606655"], "haploinsufficiency": {"value": "No evidence available", "lastEvaluated": "2012-07-06T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=RXFP2"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2012-07-06T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=RXFP2"}, "fullName": "relaxin family peptide receptor 2", "geneId": "122042", "hgncId": "HGNC:17318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_130806.5(RXFP2):c.664A>C (p.Thr222Pro)", "canonicalSpdi": "NC_000013.11:31777397:A:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["13q13.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_13", "accession": "NC_000013.11", "start": 31777398, "stop": 31777398, "displayStart": 31777398, "displayStop": 31777398, "variantLength": 1, "positionVcf": 31777398, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_13", "accession": "NC_000013.10", "start": 32351535, "stop": 32351535, "displayStart": 32351535, "displayStop": 32351535, "variantLength": 1, "positionVcf": 32351535, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["T222P"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q8WXD0:p.Thr222Pro", "sequenceAccessionVersion": "Q8WXD0", "sequenceAccession": "Q8WXD0", "change": "p.Thr222Pro"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000013.10:g.32351535A>C", "sequenceAccessionVersion": "NC_000013.10", "sequenceAccession": "NC_000013", "sequenceVersion": 10, "change": "g.32351535A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000013.11:g.31777398A>C", "sequenceAccessionVersion": "NC_000013.11", "sequenceAccession": "NC_000013", "sequenceVersion": 11, "change": "g.31777398A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_015819.1:g.42857A>C", "sequenceAccessionVersion": "NG_015819.1", "sequenceAccession": "NG_015819", "sequenceVersion": 1, "change": "g.42857A>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001166058.2:c.664A>C", "sequenceAccessionVersion": "NM_001166058.2", "sequenceAccession": "NM_001166058", "sequenceVersion": 2, "change": "c.664A>C"}, "proteinExpression": {"expression": "NP_001159530.1:p.Thr222Pro", "sequenceAccessionVersion": "NP_001159530.1", "sequenceAccession": "NP_001159530", "sequenceVersion": 1, "change": "p.Thr222Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_130806.5:c.664A>C", "sequenceAccessionVersion": "NM_130806.5", "sequenceAccession": "NM_130806", "sequenceVersion": 5, "change": "c.664A>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_570718.1:p.Thr222Pro", "sequenceAccessionVersion": "NP_570718.1", "sequenceAccession": "NP_570718", "sequenceVersion": 1, "change": "p.Thr222Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA210679"}, {"db": "UniProtKB", "id": "Q8WXD0#VAR_015386"}, {"db": "OMIM", "id": "606655.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121918303", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.0014, "source": "1000 Genomes Project", "minorAllele": "C"}, "alleleId": "19198", "variationId": "4159"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Cryptorchidism", "db": "MedGen", "id": "C0010417"}], "traitSetId": "1141"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2011-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_130806.5(RXFP2):c.664A>C (p.Thr222Pro) AND Cryptorchidism", "accession": "RCV000004376", "version": 3}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "C3661900"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely benign", "dateLastEvaluated": "2022-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_130806.5(RXFP2):c.664A>C (p.Thr222Pro) AND not provided", "accession": "RCV003389746", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely benign", "citations": [{"ids": [{"value": "12217959", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "12970298", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "20636340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}, {"value": "none provided", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "C3661900"}]}], "type": "TYPE_DISEASE", "id": "9460", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "undescended testicle", "type": "Alternate"}, {"value": "Cryptorchidism", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0000028"}, {"db": "MONDO", "id": "MONDO:0009047"}]}, {"value": "Cryptorchidism, unilateral or bilateral", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Cryptorchidism%2C+unilateral+or+bilateral/8117"}]}], "attributes": [{"attribute": {"base": {"value": "Cryptorchidism, or failure of testicular descent, is a common human congenital abnormality with a multifactorial etiology that likely reflects the involvement of endocrine, environmental, and hereditary factors. Cryptorchidism can result in infertility and increases risk for testicular tumors. Testicular descent from abdomen to scrotum occurs in 2 distinct phases: the transabdominal phase and the inguinoscrotal phase (summary by Gorlov et al., 2002)."}, "type": "public definition"}, "xrefs": [{"db": "OMIM", "id": "219050", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C0010417"}, {"db": "MONDO", "id": "MONDO:0009047"}, {"db": "OMIM", "id": "219050", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0000028", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0000797", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "1141", "contributesToAggregateClassification": false}], "dateLastEvaluated": "2022-11-01T00:00:00Z", "dateCreated": "2015-08-16T00:00:00Z", "mostRecentSubmission": "2024-04-15T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "606655.0001_RECLASSIFIED - VARIANT OF UNKNOWN SIGNIFICANCE", "title": "RXFP2, THR222PRO_RECLASSIFIED - VARIANT OF UNKNOWN SIGNIFICANCE"}, "clinvarAccession": {"accession": "SCV000024548", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-08-16T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Uncertain significance", "dateLastEvaluated": "2011-08-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "This variant, formerly titled CRYPTORCHIDISM (see 219050), has been reclassified based on the findings of Ars et al. (2010)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20636340", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "219050", "type": "MIM"}]}, {"attributes": [{"base": {"value": "By mutation screening of the LGR8 gene on DNA from 60 cryptorchid patients, Gorlov et al. (2002) identified a heterozygous thr222-to-pro (T222P) mutation in the ectodomain in 1 patient. The mutant receptor failed to respond to ligand stimulation, implicating LGR8 in the etiology of some cases of cryptorchidism in humans."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12217959", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "By sequencing the LGR8 and INSL3 (146738) genes in a cohort of 87 patients with corrected cryptorchidism and 80 controls, Ferlin et al. (2003) identified the T222P mutation in LGR8 in 4 patients and 3 mutations in INSL3 (146738.0002-146738.0004) in 4 patients (8 of 87; 9.2%). The authors concluded that INSL3-LGR8 mutations are frequently associated with human cryptorchidism and are maternally inherited."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12970298", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "146738", "type": "MIM"}]}, {"attributes": [{"base": {"value": "Ars et al. (2010) screened for the RXFP2 T222P variant in 577 Spanish men, including 187 with a history of cryptorchidism and 390 controls, and in 550 Italian men, including 199 with a history of cryptorchidism and 351 controls. In the Spanish study population, the T222P variant was present at similar frequency in both cases (3 of 187; 1.6%) and controls (7 of 390; 1.8%). In the Italian study population, the variant was significantly more frequent in cases (9 of 199; 4.5%) than in controls (5 of 351; 1.4%), with an odds ratio of 3.17 (p = 0.031). Ars et al. (2010) concluded that T222P is a frequent variant in the Spanish population with no pathogenic effect, although the variant seemed to confer a mild risk for cryptorchidism in the Italian population. The authors stated that these data exclude a clear-cut cause-effect relationship between the T222P variant and testicular maldescent."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20636340", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "RXFP2"}], "names": [{"value": "RXFP2, THR222PRO"}], "variantType": "Variation", "otherNames": [{"value": "THR222PRO", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "606655.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "RECLASSIFIED - VARIANT OF UNKNOWN SIGNIFICANCE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "24548"}, {"clinvarSubmissionId": {"localKey": "134119|MedGen:CN517202", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004132958", "version": 4, "submitterIdentifiers": {"submitterName": "CeGaT Center for Human Genetics Tuebingen", "orgId": "505870", "orgCategory": "laboratory", "orgAbbreviation": "CHGT"}, "dateUpdated": "2024-04-15T00:00:00Z", "dateCreated": "2023-11-20T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely benign", "comments": [{"value": "RXFP2: BP4, BS2"}], "dateLastEvaluated": "2022-11-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "CeGaT Center For Human Genetics Tuebingen Variant Classification Criteria Version 2"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/api/2.0/files/0ynenhfo/cegat_center_for_human_genetics_tuebingen_-_variant_classification_criteria_-_version_2.pdf/?format=attachment"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"genes": [{"symbol": "RXFP2"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_13", "start": 32351535, "stop": 32351535, "variantLength": 1, "referenceAllele": "A", "alternateAllele": "C"}]}}, "traitSet": {"traits": [{"xrefs": [{"db": "MedGen", "id": "CN517202", "type": "CUI"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["2024-04", "SUB13985080", "SUB14102099", "SUB14290090"], "id": "7709681"}], "traitMappings": [{"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "7709681", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "CN517202", "mappingRef": "MedGen"}, {"medgens": [{"name": "Breast-ovarian cancer, familial, susceptibility to, 2", "cui": "C2675520"}], "clinicalAssertionId": "24548", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "RECLASSIFIED - VARIANT OF UNKNOWN SIGNIFICANCE", "mappingRef": "Preferred"}]}}
-{"variationId": "1212", "variationName": "GNAS, 4.7-KB DEL", "variationType": "Deletion", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2024-05-01T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000001212", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20q13.32"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 58839748, "stop": 58911192, "displayStart": 58839748, "displayStop": 58911192, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 57414794, "stop": 57486249, "displayStart": 57414794, "displayStop": 57486249, "strand": "+"}]}], "omims": ["139320"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2021-01-12T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=GNAS"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2021-01-12T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=GNAS"}, "fullName": "GNAS complex locus", "geneId": "2778", "hgncId": "HGNC:4392", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}, {"locations": [{"cytogeneticLocations": ["20q13.32"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 58818918, "stop": 58850902, "displayStart": 58818918, "displayStop": 58850902, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 57393972, "stop": 57425957, "displayStart": 57393972, "displayStop": 57425957, "strand": "-"}]}], "omims": ["610540"], "fullName": "GNAS antisense RNA 1", "geneId": "149775", "hgncId": "HGNC:24872", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}], "name": "GNAS, 4.7-KB DEL", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["20q13.2"]}], "otherNames": [{"value": "4.7-KB DEL"}], "xrefs": [{"db": "OMIM", "id": "139320.0031", "type": "Allelic variant"}, {"db": "OMIM", "id": "610540.0001", "type": "Allelic variant"}], "alleleId": "16251", "variationId": "1212"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Pseudohypoparathyroidism type 1B", "db": "MedGen", "id": "C1864100"}], "traitSetId": "321"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2005-01-01T00:00:00Z", "submissionCount": 1}}}, "title": "GNAS, 4.7-KB DEL AND Pseudohypoparathyroidism type 1B", "accession": "RCV000001271", "version": 9}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15592469", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Pseudohypoparathyroidism Type IB", "type": "Alternate"}, {"value": "Pseudohypoparathyroidism type 1B", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Pseudohypoparathyroidism+type+1B/6036"}, {"db": "MONDO", "id": "MONDO:0011301"}]}, {"value": "PHP IB", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "603233", "type": "MIM"}]}], "symbols": [{"value": "PHP1B", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "603233", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "Disorders of GNAS inactivation include the phenotypes pseudohypoparathyroidism Ia, Ib, and Ic (PHP-Ia, -Ib, -Ic), pseudopseudohypoparathyroidism (PPHP), progressive osseous heteroplasia (POH), and osteoma cutis (OC). PHP-Ia and PHP-Ic are characterized by: End-organ resistance to endocrine hormones including parathyroid hormone (PTH), thyroid-stimulating hormone (TSH), gonadotropins (LH and FSH), growth hormone-releasing hormone (GHRH), and CNS neurotransmitters (leading to obesity and variable degrees of intellectual disability and developmental delay); and The Albright hereditary osteodystrophy (AHO) phenotype (short stature, round facies, and subcutaneous ossifications) and brachydactyly type E (shortening mainly of the 4th and/or 5th metacarpals and metatarsals and distal phalanx of the thumb). Although PHP-Ib is characterized principally by PTH resistance, some individuals also have partial TSH resistance and mild features of AHO (e.g., brachydactyly). PPHP, a more limited form of PHP-Ia, is characterized by various manifestations of the AHO phenotype without the hormone resistance or obesity. POH and OC are even more restricted variants of PPHP: POH consists of dermal ossification beginning in infancy, followed by increasing and extensive bone formation in deep muscle and fascia. OC consists of extra-skeletal ossification that is limited to the dermis and subcutaneous tissues."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK459117"}]}, {"attribute": {"base": {"integerValue": "10680"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10680"}]}], "citations": [{"ids": [{"value": "29072892", "source": "PubMed"}, {"value": "NBK459117", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "94089"}, {"db": "MedGen", "id": "C1864100"}, {"db": "MONDO", "id": "MONDO:0011301"}, {"db": "OMIM", "id": "603233", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "321", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2005-01-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "610540.0001_PSEUDOHYPOPARATHYROIDISM, TYPE IB", "title": "GNASAS, 4.7-KB DEL _PSEUDOHYPOPARATHYROIDISM, TYPE IB"}, "clinvarAccession": {"accession": "SCV000021421", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2005-01-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 unrelated kindreds with pseudohypoparathyroidism type Ib (603233), Bastepe et al. (2005) identified a 4.7-kb deletion that removed the differentially methylated region of the GNAS gene (139320.0031) encompassing the NESP55 region and exons 3 and 4 of the GNAS antisense transcript. When inherited from a female, the deletion abolished all maternal GNAS imprints and derepressed maternally silenced transcripts, suggesting that the deleted region contains a cis-acting element that controls imprinting of the maternal GNAS allele."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15592469", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "603233", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "GNASAS"}], "names": [{"value": "GNASAS, 4.7-KB DEL"}], "variantType": "Variation", "otherNames": [{"value": "4.7-KB DEL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "610540.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "PSEUDOHYPOPARATHYROIDISM, TYPE IB", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21421"}], "traitMappings": [{"medgens": [{"name": "Pseudohypoparathyroidism type 1B", "cui": "C1864100"}], "clinicalAssertionId": "21421", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "PSEUDOHYPOPARATHYROIDISM, TYPE IB", "mappingRef": "Preferred"}]}}
+{"variationId": "220", "variationName": "NM_000027.4(AGA):c.904G>A (p.Gly302Arg)", "variationType": "single nucleotide variant", "dateCreated": "2015-07-12T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "accession": "VCV000000220", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177430774, "stop": 177442437, "displayStart": 177430774, "displayStop": 177442437, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178351927, "stop": 178363656, "displayStart": 178351927, "displayStop": 178363656, "strand": "-"}]}], "omims": ["613228"], "fullName": "aspartylglucosaminidase", "geneId": "175", "hgncId": "HGNC:318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000027.4(AGA):c.904G>A (p.Gly302Arg)", "canonicalSpdi": "NC_000004.12:177433249:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177433250, "stop": 177433250, "displayStart": 177433250, "displayStop": 177433250, "variantLength": 1, "positionVcf": 177433250, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178354404, "stop": 178354404, "displayStart": 178354404, "displayStop": 178354404, "variantLength": 1, "positionVcf": 178354404, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["G302R", "G292R"], "hgvsExpressions": [{"proteinExpression": {"expression": "P20933:p.Gly302Arg", "sequenceAccessionVersion": "P20933", "sequenceAccession": "P20933", "change": "p.Gly302Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000004.11:g.178354404C>T", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.178354404C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.177433250C>T", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.177433250C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011845.2:g.14254G>A", "sequenceAccessionVersion": "NG_011845.2", "sequenceAccession": "NG_011845", "sequenceVersion": 2, "change": "g.14254G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000027.4:c.904G>A", "sequenceAccessionVersion": "NM_000027.4", "sequenceAccession": "NM_000027", "sequenceVersion": 4, "change": "c.904G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_000018.2:p.Gly302Arg", "sequenceAccessionVersion": "NP_000018.2", "sequenceAccession": "NP_000018", "sequenceVersion": 2, "change": "p.Gly302Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001171988.2:c.874G>A", "sequenceAccessionVersion": "NM_001171988.2", "sequenceAccession": "NM_001171988", "sequenceVersion": 2, "change": "c.874G>A"}, "proteinExpression": {"expression": "NP_001165459.1:p.Gly292Arg", "sequenceAccessionVersion": "NP_001165459.1", "sequenceAccession": "NP_001165459", "sequenceVersion": 1, "change": "p.Gly292Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033655.2:n.890G>A", "sequenceAccessionVersion": "NR_033655.2", "sequenceAccession": "NR_033655", "sequenceVersion": 2, "change": "n.890G>A"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114056"}, {"db": "UniProtKB", "id": "P20933#VAR_005074"}, {"db": "OMIM", "id": "613228.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121964905", "type": "rs"}], "alleleId": "15259", "variationId": "220"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Aspartylglucosaminuria", "db": "MedGen", "id": "C0268225"}], "traitSetId": "72"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000027.4(AGA):c.904G>A (p.Gly302Arg) AND Aspartylglucosaminuria", "accession": "RCV000000244", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Aspartylglucosaminuria", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012068"}, {"db": "MONDO", "id": "MONDO:0008830"}]}, {"value": "Aspartylglycosaminuria", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Aspartylglucosaminuria/622"}]}, {"value": "Aspartylglucos-aminuria", "type": "Alternate"}, {"value": "Aspartylglucos-amidase (AGA) deficiency", "type": "Alternate"}, {"value": "AGA deficiency", "type": "Alternate"}, {"value": "Glycosylasparaginase deficiency", "type": "Alternate"}, {"value": "GLYCOASPARAGINASE", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "symbols": [{"value": "AGU", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "5854"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "5854"}]}], "xrefs": [{"db": "Orphanet", "id": "93"}, {"db": "MedGen", "id": "C0268225"}, {"db": "MONDO", "id": "MONDO:0008830"}, {"db": "OMIM", "id": "208400", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012068", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "72", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1991-12-15T00:00:00Z", "dateCreated": "2015-07-12T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613228.0002_ASPARTYLGLUCOSAMINURIA", "title": "AGA, GLY302ARG_ASPARTYLGLUCOSAMINURIA"}, "clinvarAccession": {"accession": "SCV000020388", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-07-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 10-year-old Turkish child with aspartylglucosaminuria (AGU; 208400), Ikonen et al. (1991) found a G-to-A substitution at nucleotide 904 of the AGA gene, resulting in substitution of arginine for glycine-302 (G302R). The patient was homozygous for the mutation and showed fibroblast AGA activity about 7% of normal. The parents were first cousins."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AGA"}], "name": {"value": "AGA, GLY302ARG"}, "variantType": "Variation", "otherNames": [{"value": "GLY302ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613228.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ASPARTYLGLUCOSAMINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20388"}], "traitMappings": [{"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "20388", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ASPARTYLGLUCOSAMINURIA", "mappingRef": "Preferred"}]}}
+{"variationId": "224", "variationName": "NM_000027.4(AGA):c.102_108del (p.Thr33_Trp34insTer)", "variationType": "Deletion", "dateCreated": "2013-07-24T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "accession": "VCV000000224", "version": 1, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177430774, "stop": 177442437, "displayStart": 177430774, "displayStop": 177442437, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178351927, "stop": 178363656, "displayStart": 178351927, "displayStop": 178363656, "strand": "-"}]}], "omims": ["613228"], "fullName": "aspartylglucosaminidase", "geneId": "175", "hgncId": "HGNC:318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177442146, "stop": 177681435, "displayStart": 177442146, "displayStop": 177681435, "strand": "+"}]}], "fullName": "AGA divergent transcript", "geneId": "285500", "hgncId": "HGNC:27730", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_000027.4(AGA):c.102_108del (p.Thr33_Trp34insTer)", "canonicalSpdi": "NC_000004.12:177442267:AAAGGGC:", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177442268, "stop": 177442274, "displayStart": 177442268, "displayStop": 177442274, "variantLength": 7, "positionVcf": 177442267, "referenceAlleleVcf": "TAAAGGGC", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178363422, "stop": 178363428, "displayStart": 178363422, "displayStop": 178363428, "variantLength": 7, "positionVcf": 178363421, "referenceAlleleVcf": "TAAAGGGC", "alternateAlleleVcf": "T"}]}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000004.11:g.178363422_178363428del", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.178363422_178363428del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.177442268_177442274del", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.177442268_177442274del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011845.2:g.5230_5236del", "sequenceAccessionVersion": "NG_011845.2", "sequenceAccession": "NG_011845", "sequenceVersion": 2, "change": "g.5230_5236del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000027.4:c.102_108del", "sequenceAccessionVersion": "NM_000027.4", "sequenceAccession": "NM_000027", "sequenceVersion": 4, "change": "c.102_108del", "maneSelect": true}, "proteinExpression": {"expression": "NP_000018.2:p.Thr33_Trp34insTer", "sequenceAccessionVersion": "NP_000018.2", "sequenceAccession": "NP_000018", "sequenceVersion": 2, "change": "p.Thr33_Trp34insTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001171988.2:c.102_108del", "sequenceAccessionVersion": "NM_001171988.2", "sequenceAccession": "NM_001171988", "sequenceVersion": 2, "change": "c.102_108del"}, "proteinExpression": {"expression": "NP_001165459.1:p.Thr33_Trp34insTer", "sequenceAccessionVersion": "NP_001165459.1", "sequenceAccession": "NP_001165459", "sequenceVersion": 1, "change": "p.Thr33_Trp34insTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033655.2:n.164_170del", "sequenceAccessionVersion": "NR_033655.2", "sequenceAccession": "NR_033655", "sequenceVersion": 2, "change": "n.164_170del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA212726"}, {"db": "OMIM", "id": "613228.0006", "type": "Allelic variant"}, {"db": "dbSNP", "id": "386833417", "type": "rs"}], "alleleId": "15263", "variationId": "224"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Aspartylglucosaminuria", "db": "MedGen", "id": "C0268225"}], "traitSetId": "72"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic/Likely pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000027.4(AGA):c.102_108del (p.Thr33_Trp34insTer) AND Aspartylglucosaminuria", "accession": "RCV000000248", "version": 7}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic/Likely pathogenic", "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8457202", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Aspartylglucosaminuria", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012068"}, {"db": "MONDO", "id": "MONDO:0008830"}]}, {"value": "Aspartylglycosaminuria", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Aspartylglucosaminuria/622"}]}, {"value": "Aspartylglucos-aminuria", "type": "Alternate"}, {"value": "Aspartylglucos-amidase (AGA) deficiency", "type": "Alternate"}, {"value": "AGA deficiency", "type": "Alternate"}, {"value": "Glycosylasparaginase deficiency", "type": "Alternate"}, {"value": "GLYCOASPARAGINASE", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "symbols": [{"value": "AGU", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "5854"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "5854"}]}], "xrefs": [{"db": "Orphanet", "id": "93"}, {"db": "MedGen", "id": "C0268225"}, {"db": "MONDO", "id": "MONDO:0008830"}, {"db": "OMIM", "id": "208400", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012068", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "72", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1991-12-15T00:00:00Z", "dateCreated": "2013-07-24T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "FINDIS233"}, "clinvarAccession": {"accession": "SCV000081777", "version": 1, "submitterIdentifiers": {"submitterName": "Juha Muilu Group; Institute for Molecular Medicine Finland (FIMM)", "orgId": "500116", "orgCategory": "laboratory"}, "dateUpdated": "2013-07-24T00:00:00Z", "dateCreated": "2013-07-24T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "probable-pathogenic", "comments": [{"value": "Converted during submission to Likely pathogenic.", "type": "COMMENT_TYPE_CONVERTED_BY_NCB"}]}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "numerTested": 1}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8457202", "source": "PubMed"}], "type": "general"}], "attributes": [{"attribute": {"base": {"value": "NM_000027.3:c.102_108delGCCCTTT"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Aspartylglycosaminuria", "type": "Preferred"}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "comments": [{"value": "FinDis database variant: This variant was not found or characterized by our laboratory, data were collected from public sources: see reference", "type": "COMMENT_TYPE_PUBLIC"}], "submissionNames": ["FinDis_mutations"], "id": "131137"}, {"clinvarSubmissionId": {"localKey": "613228.0006_ASPARTYLGLUCOSAMINURIA", "title": "AGA, 7-BP DEL, NT102_ASPARTYLGLUCOSAMINURIA"}, "clinvarAccession": {"accession": "SCV000020392", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-07-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 5-year-old English child with aspartylglucosaminuria (AGU; 208400), Ikonen et al. (1991) found compound heterozygosity for the A101V mutation (613228.0005) and a 7-nucleotide deletion (102_108delfs34Ter) in the AGA gene. The gene deletion would be predicted to result in the formation of a truncated polypeptide chain of only 33 amino acids."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AGA"}], "name": {"value": "AGA, 7-BP DEL, NT102"}, "variantType": "Variation", "otherNames": [{"value": "7-BP DEL, NT102", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613228.0006", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ASPARTYLGLUCOSAMINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20392"}], "traitMappings": [{"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "20392", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ASPARTYLGLUCOSAMINURIA", "mappingRef": "Preferred"}, {"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "131137", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Aspartylglycosaminuria", "mappingRef": "Preferred"}]}}
+{"variationId": "228", "variationName": "NM_000027.4(AGA):c.800del (p.Leu267fs)", "variationType": "Deletion", "dateCreated": "2015-07-12T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "accession": "VCV000000228", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177430774, "stop": 177442437, "displayStart": 177430774, "displayStop": 177442437, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178351927, "stop": 178363656, "displayStart": 178351927, "displayStop": 178363656, "strand": "-"}]}], "omims": ["613228"], "fullName": "aspartylglucosaminidase", "geneId": "175", "hgncId": "HGNC:318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000027.4(AGA):c.800del (p.Leu267fs)", "canonicalSpdi": "NC_000004.12:177434387:A:", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177434388, "stop": 177434388, "displayStart": 177434388, "displayStop": 177434388, "variantLength": 1, "positionVcf": 177434387, "referenceAlleleVcf": "CA", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178355542, "stop": 178355542, "displayStart": 178355542, "displayStop": 178355542, "variantLength": 1, "positionVcf": 178355541, "referenceAlleleVcf": "CA", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["L267fs", "L257fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000004.11:g.178355542del", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.178355542del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.177434388del", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.177434388del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011845.2:g.13116del", "sequenceAccessionVersion": "NG_011845.2", "sequenceAccession": "NG_011845", "sequenceVersion": 2, "change": "g.13116del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000027.4:c.800del", "sequenceAccessionVersion": "NM_000027.4", "sequenceAccession": "NM_000027", "sequenceVersion": 4, "change": "c.800del", "maneSelect": true}, "proteinExpression": {"expression": "NP_000018.2:p.Leu267fs", "sequenceAccessionVersion": "NP_000018.2", "sequenceAccession": "NP_000018", "sequenceVersion": 2, "change": "p.Leu267fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001171988.2:c.770del", "sequenceAccessionVersion": "NM_001171988.2", "sequenceAccession": "NM_001171988", "sequenceVersion": 2, "change": "c.770del"}, "proteinExpression": {"expression": "NP_001165459.1:p.Leu257fs", "sequenceAccessionVersion": "NP_001165459.1", "sequenceAccession": "NP_001165459", "sequenceVersion": 1, "change": "p.Leu257fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033655.2:n.786del", "sequenceAccessionVersion": "NR_033655.2", "sequenceAccession": "NR_033655", "sequenceVersion": 2, "change": "n.786del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA212729"}, {"db": "OMIM", "id": "613228.0010", "type": "Allelic variant"}, {"db": "dbSNP", "id": "794728009", "type": "rs"}], "alleleId": "15267", "variationId": "228"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Aspartylglucosaminuria", "db": "MedGen", "id": "C0268225"}], "traitSetId": "72"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1991-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000027.4(AGA):c.800del (p.Leu267fs) AND Aspartylglucosaminuria", "accession": "RCV000000252", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "1765378", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Aspartylglucosaminuria", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012068"}, {"db": "MONDO", "id": "MONDO:0008830"}]}, {"value": "Aspartylglycosaminuria", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Aspartylglucosaminuria/622"}]}, {"value": "Aspartylglucos-aminuria", "type": "Alternate"}, {"value": "Aspartylglucos-amidase (AGA) deficiency", "type": "Alternate"}, {"value": "AGA deficiency", "type": "Alternate"}, {"value": "Glycosylasparaginase deficiency", "type": "Alternate"}, {"value": "GLYCOASPARAGINASE", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "symbols": [{"value": "AGU", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "5854"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "5854"}]}], "xrefs": [{"db": "Orphanet", "id": "93"}, {"db": "MedGen", "id": "C0268225"}, {"db": "MONDO", "id": "MONDO:0008830"}, {"db": "OMIM", "id": "208400", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012068", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "72", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1991-09-01T00:00:00Z", "dateCreated": "2015-07-12T00:00:00Z", "mostRecentSubmission": "2015-07-12T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613228.0010_ASPARTYLGLUCOSAMINURIA", "title": "AGA, 1-BP DEL, 336T_ASPARTYLGLUCOSAMINURIA"}, "clinvarAccession": {"accession": "SCV000020396", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-07-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1991-09-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In an 8-year-old Dutch child with aspartylglucosaminuria (AGU; 208400), Ikonen et al. (1991) found deletion of 1 nucleotide, thymidine-336, in the AGA gene. This resulted in a frameshift and premature termination of the polypeptide chain after 126 amino acids."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1765378", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AGA"}], "name": {"value": "AGA, 1-BP DEL, 336T"}, "variantType": "Variation", "otherNames": [{"value": "1-BP DEL, 336T", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613228.0010", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ASPARTYLGLUCOSAMINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20396"}], "traitMappings": [{"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "20396", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ASPARTYLGLUCOSAMINURIA", "mappingRef": "Preferred"}]}}
+{"variationId": "408", "variationName": "NM_144639.3(UROC1):c.209T>C (p.Leu70Pro)", "variationType": "single nucleotide variant", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "accession": "VCV000000408", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 126481166, "stop": 126517773, "displayStart": 126481166, "displayStop": 126517773, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 126200007, "stop": 126236615, "displayStart": 126200007, "displayStop": 126236615, "strand": "-"}]}], "omims": ["613012"], "fullName": "urocanate hydratase 1", "geneId": "131669", "hgncId": "HGNC:26444", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_144639.3(UROC1):c.209T>C (p.Leu70Pro)", "canonicalSpdi": "NC_000003.12:126510711:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["3q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 126510712, "stop": 126510712, "displayStart": 126510712, "displayStop": 126510712, "variantLength": 1, "positionVcf": 126510712, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 126229555, "stop": 126229555, "displayStart": 126229555, "displayStop": 126229555, "variantLength": 1, "positionVcf": 126229555, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["L70P"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q96N76:p.Leu70Pro", "sequenceAccessionVersion": "Q96N76", "sequenceAccession": "Q96N76", "change": "p.Leu70Pro"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000003.11:g.126229555A>G", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.126229555A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.126510712A>G", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.126510712A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016286.1:g.12040T>C", "sequenceAccessionVersion": "NG_016286.1", "sequenceAccession": "NG_016286", "sequenceVersion": 1, "change": "g.12040T>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001165974.2:c.209T>C", "sequenceAccessionVersion": "NM_001165974.2", "sequenceAccession": "NM_001165974", "sequenceVersion": 2, "change": "c.209T>C"}, "proteinExpression": {"expression": "NP_001159446.1:p.Leu70Pro", "sequenceAccessionVersion": "NP_001159446.1", "sequenceAccession": "NP_001159446", "sequenceVersion": 1, "change": "p.Leu70Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_144639.3:c.209T>C", "sequenceAccessionVersion": "NM_144639.3", "sequenceAccession": "NM_144639", "sequenceVersion": 3, "change": "c.209T>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_653240.1:p.Leu70Pro", "sequenceAccessionVersion": "NP_653240.1", "sequenceAccession": "NP_653240", "sequenceVersion": 1, "change": "p.Leu70Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114250"}, {"db": "UniProtKB", "id": "Q96N76#VAR_062649"}, {"db": "OMIM", "id": "613012.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "137852796", "type": "rs"}], "alleleId": "15447", "variationId": "408"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Urocanate hydratase deficiency", "db": "MedGen", "id": "C0268514"}], "traitSetId": "111"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2009-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_144639.3(UROC1):c.209T>C (p.Leu70Pro) AND Urocanate hydratase deficiency", "accession": "RCV000000435", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "19304569", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Urocanic aciduria", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012237"}, {"db": "MONDO", "id": "MONDO:0010167"}]}, {"value": "Urocanate hydratase deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Urocanate+hydratase+deficiency/9437"}, {"db": "SNOMED CT", "id": "60952007"}]}, {"value": "Urocanase deficiency", "type": "Alternate"}], "symbols": [{"value": "UROCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "276880", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "8539"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "8539"}]}], "xrefs": [{"db": "Orphanet", "id": "210128"}, {"db": "MedGen", "id": "C0268514"}, {"db": "MONDO", "id": "MONDO:0010167"}, {"db": "OMIM", "id": "276880", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012237", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "111", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-06-01T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613012.0002_UROCANASE DEFICIENCY (1 family)", "title": "UROC1, LEU70PRO_UROCANASE DEFICIENCY (1 family)"}, "clinvarAccession": {"accession": "SCV000020583", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-18T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2009-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "familyData": {"numFamilies": 1}}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the leu70-to-pro (L70P) mutation in the UROC1 gene that was found in compound heterozygous state in a patient with urocanic aciduria, mental retardation, and ataxia (UROCD; 276880) by Espinos et al. (2009), see 613012.0001."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19304569", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "276880", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UROC1"}], "name": {"value": "UROC1, LEU70PRO"}, "variantType": "Variation", "otherNames": [{"value": "LEU70PRO", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613012.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "UROCANASE DEFICIENCY (1 family)", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20583"}], "traitMappings": [{"medgens": [{"name": "Urocanate hydratase deficiency", "cui": "C0268514"}], "clinicalAssertionId": "20583", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "UROCANASE DEFICIENCY (1 family)", "mappingRef": "Preferred"}]}}
+{"variationId": "351", "variationName": "NF1, IVS34, G-A, +18", "variationType": "single nucleotide variant", "dateCreated": "2016-08-22T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-08-22T00:00:00Z", "accession": "VCV000000351", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["17q11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_17", "accession": "NW_025791803.1", "start": 174101, "stop": 456540, "displayStart": 174101, "displayStop": 456540, "strand": "+"}, {"assembly": "GRCh38", "chr": "CHROMOSOME_17", "accession": "NC_000017.11", "start": 31094927, "stop": 31377677, "displayStart": 31094927, "displayStop": 31377677, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_17", "accession": "NC_000017.10", "start": 29421944, "stop": 29704694, "displayStart": 29421944, "displayStop": 29704694, "strand": "+"}]}], "omims": ["613113"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2012-07-12T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=NF1"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2012-07-12T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=NF1"}, "fullName": "neurofibromin 1", "geneId": "4763", "hgncId": "HGNC:7765", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}], "name": "NF1, IVS34, G-A, +18", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["17q11.2"]}], "otherNames": [{"value": "IVS34, G-A, +18"}], "xrefs": [{"db": "OMIM", "id": "613113.0020", "type": "Allelic variant"}], "alleleId": "15390", "variationId": "351"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Juvenile myelomonocytic leukemia", "db": "MedGen", "id": "C0349639"}], "traitSetId": "99"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1997-06-12T00:00:00Z", "submissionCount": 1}}}, "title": "NF1, IVS34, G-A, +18 AND Juvenile myelomonocytic leukemia", "accession": "RCV000000379", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "9180088", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "176876.0014", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0017", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0015", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0016", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, {"value": "Juvenile myelomonocytic leukemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Juvenile+Myelomonocytic+Leukemia+%28JMML%29/3936"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209"}, {"db": "MONDO", "id": "MONDO:0011908"}]}], "symbols": [{"value": "JMML", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}, {"attribute": {"base": {"integerValue": "9884"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9884"}]}], "citations": [{"ids": [{"value": "24493721", "source": "PubMed"}], "type": "practice guideline", "abbrev": "ASCO, 2014"}], "xrefs": [{"db": "Orphanet", "id": "86834"}, {"db": "MedGen", "id": "C0349639"}, {"db": "MONDO", "id": "MONDO:0011908"}, {"db": "OMIM", "id": "607785", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "99", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1997-06-12T00:00:00Z", "dateCreated": "2016-08-22T00:00:00Z", "mostRecentSubmission": "2016-08-22T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613113.0020_LEUKEMIA, JUVENILE MYELOMONOCYTIC", "title": "NF1, IVS34, G-A, +18_LEUKEMIA, JUVENILE MYELOMONOCYTIC"}, "clinvarAccession": {"accession": "SCV000020523", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-08-22T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1997-06-12T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 19-month-old boy with juvenile myelomonocytic leukemia (JMML/Mo7; 607785), Side et al. (1998) found in cloned cDNA aberrant splicing resulting in a shift in the reading frame. Genomic DNA showed an alteration (6579,G-A,+18) in the splice donor consensus sequence flanking exon 34. This mutation introduced an additional 17 nucleotides containing a novel BglI restriction enzyme site into the patient's cDNA. Side et al. (1998) identified this restriction site in amplified cDNA derived from the patient's EBV cell line RNA, thus confirming that this mutation existed in the germline. Furthermore, loss of heterozygosity was demonstrated, indicating inactivation of another NF1 allele."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9180088", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "NF1"}], "name": {"value": "NF1, IVS34, G-A, +18"}, "variantType": "Variation", "otherNames": [{"value": "IVS34, G-A, +18", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613113.0020", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20523"}], "traitMappings": [{"medgens": [{"name": "Juvenile myelomonocytic leukemia", "cui": "C0349639"}], "clinicalAssertionId": "20523", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "LEUKEMIA, JUVENILE MYELOMONOCYTIC", "mappingRef": "Preferred"}]}}
+{"variationId": "574", "variationName": "NM_001102416.3(KNG1):c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "variationType": "Indel", "dateCreated": "2016-10-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-10-23T00:00:00Z", "accession": "VCV000000574", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186717359, "stop": 186744410, "displayStart": 186717359, "displayStop": 186744410, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186435097, "stop": 186462198, "displayStart": 186435097, "displayStop": 186462198, "strand": "+"}]}], "omims": ["612358"], "fullName": "kininogen 1", "geneId": "3827", "hgncId": "HGNC:6383", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001102416.3(KNG1):c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "canonicalSpdi": "NC_000003.12:186740983:TTGTTGTTGTTGTTGTTTGTTTTTTGT:GGTGGTGGTGGTGGTGGTTTGTTTTTGG", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186740984, "stop": 186741010, "displayStart": 186740984, "displayStop": 186741010, "variantLength": 28, "positionVcf": 186740984, "referenceAlleleVcf": "TTGTTGTTGTTGTTGTTTGTTTTTTGT", "alternateAlleleVcf": "GGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186458773, "stop": 186458799, "displayStart": 186458773, "displayStop": 186458799, "variantLength": 28, "positionVcf": 186458773, "referenceAlleleVcf": "TTGTTGTTGTTGTTGTTTGTTTTTTGT", "alternateAlleleVcf": "GGTGGTGGTGGTGGTGGTTTGTTTTTGG"}]}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NM_000893.4:c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NM_000893.4", "sequenceAccession": "NM_000893", "sequenceVersion": 4, "change": "c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001166451.2:c.1018-538_1018-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NM_001166451.2", "sequenceAccession": "NM_001166451", "sequenceVersion": 2, "change": "c.1018-538_1018-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000003.11:g.186458773_186458799delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.186458773_186458799delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.186740984_186741010delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.186740984_186741010delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_001102416.3:c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "NM_001102416.3", "sequenceAccession": "NM_001102416", "sequenceVersion": 3, "change": "c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598t1:c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "LRG_598t1", "sequenceAccession": "LRG_598t1", "change": "c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598:g.28676_28702delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "LRG_598", "sequenceAccession": "LRG_598", "change": "g.28676_28702delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_598t2:c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG", "sequenceAccessionVersion": "LRG_598t2", "sequenceAccession": "LRG_598t2", "change": "c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "dbSNP", "id": "869320718", "type": "rs"}, {"db": "ClinGen", "id": "CA358418"}, {"db": "OMIM", "id": "612358.0003", "type": "Allelic variant"}], "comments": [{"value": "NCBI determined the location of the deletion and the sequence of the insert by aligning AY183666.1 to AY206689.1.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "15613", "variationId": "574"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "High molecular weight kininogen deficiency", "db": "MedGen", "id": "C0272340"}], "traitSetId": "158"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Affects", "dateLastEvaluated": "2003-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001102416.3(KNG1):c.1126-538_1126-512delinsGGTGGTGGTGGTGGTGGTTTGTTTTTGG AND High molecular weight kininogen deficiency", "accession": "RCV000000604", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Affects", "citations": [{"ids": [{"value": "12576314", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "48123", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Flaujeac factor deficiency", "type": "Alternate"}, {"value": "High molecular weight kininogen deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Flaujeac+Factor+Deficiency/2875"}, {"db": "SNOMED CT", "id": "27312002"}]}, {"value": "Congenital high-molecular-weight kininogen deficiency", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0009234"}]}, {"value": "Reduced kininogen activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0005527"}]}, {"value": "FITZGERALD TRAIT", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "483"}, {"db": "MedGen", "id": "C0272340"}, {"db": "MONDO", "id": "MONDO:0009234"}, {"db": "OMIM", "id": "228960", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0005527", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0004867", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005500", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005530", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005538", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "158", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2003-06-01T00:00:00Z", "dateCreated": "2016-10-23T00:00:00Z", "mostRecentSubmission": "2016-10-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612358.0003_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "title": "KNG1, 17-BP DEL/17-BP INS, NT1559_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020754", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-10-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Affects", "dateLastEvaluated": "2003-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "The first plasma with HMWK deficiency (228960) to be recognized was derived from an African American of the surname Fitzgerald (Waldmann et al., 1975). Studying DNA prepared from a more that 25-year-old frozen plasma specimen, Krijanovski et al. (2003) determined that the KNG1 defect in Fitzgerald trait resides in intron 9, with substitution of 17 consecutive basepairs at nucleotides 1559 through 1575. The substituted segment had 1559T and 1575A at its 2 ends and consisted of 5 TGT triplets, which in Fitzgerald DNA were changed to 5 GTG triplets, the end nucleotides being changed to 1559G and 1575G. Also at nucleotide position 1578, a GT sequence in normal DNA was changed to TG in Fitzgerald intron 9. Furthermore, in Fitzgerald intron 9, single basepair polymorphisms were found at nucleotide positions 119 (C to T), 1586 (T to G), and 1736 (A to G)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "48123", "source": "PubMed"}]}, {"ids": [{"value": "12576314", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "KNG1"}], "name": {"value": "KNG1, 17-BP DEL/17-BP INS, NT1559"}, "variantType": "Variation", "otherNames": [{"value": "17-BP DEL/17-BP INS, NT1559", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612358.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20754"}], "traitMappings": [{"medgens": [{"name": "High molecular weight kininogen deficiency", "cui": "C0272340"}], "clinicalAssertionId": "20754", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "mappingRef": "Preferred"}]}}
+{"variationId": "575", "variationName": "NM_001102416.3(KNG1):c.1216dup (p.His406fs)", "variationType": "Duplication", "dateCreated": "2016-10-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-10-23T00:00:00Z", "accession": "VCV000000575", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186717359, "stop": 186744410, "displayStart": 186717359, "displayStop": 186744410, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186435097, "stop": 186462198, "displayStart": 186435097, "displayStop": 186462198, "strand": "+"}]}], "omims": ["612358"], "fullName": "kininogen 1", "geneId": "3827", "hgncId": "HGNC:6383", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001102416.3(KNG1):c.1216dup (p.His406fs)", "canonicalSpdi": "NC_000003.12:186741608:CCCC:CCCCC", "variantTypes": ["Duplication"], "locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186741608, "stop": 186741609, "displayStart": 186741608, "displayStop": 186741609, "variantLength": 1, "positionVcf": 186741608, "referenceAlleleVcf": "A", "alternateAlleleVcf": "AC"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186459397, "stop": 186459398, "displayStart": 186459397, "displayStop": 186459398, "variantLength": 1, "positionVcf": 186459397, "referenceAlleleVcf": "A", "alternateAlleleVcf": "AC"}]}], "proteinChanges": ["H406fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000003.11:g.186459401dup", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.186459401dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.186741612dup", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.186741612dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_001102416.3:c.1216dup", "sequenceAccessionVersion": "NM_001102416.3", "sequenceAccession": "NM_001102416", "sequenceVersion": 3, "change": "c.1216dup", "maneSelect": true}, "proteinExpression": {"expression": "NP_001095886.1:p.His406fs", "sequenceAccessionVersion": "NP_001095886.1", "sequenceAccession": "NP_001095886", "sequenceVersion": 1, "change": "p.His406fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_000893.4:c.1203+13dup", "sequenceAccessionVersion": "NM_000893.4", "sequenceAccession": "NM_000893", "sequenceVersion": 4, "change": "c.1203+13dup"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001166451.2:c.1095+13dup", "sequenceAccessionVersion": "NM_001166451.2", "sequenceAccession": "NM_001166451", "sequenceVersion": 2, "change": "c.1095+13dup"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NG_016009.1:g.29304dup", "sequenceAccessionVersion": "NG_016009.1", "sequenceAccession": "NG_016009", "sequenceVersion": 1, "change": "g.29304dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_598:g.29304dup", "sequenceAccessionVersion": "LRG_598", "sequenceAccession": "LRG_598", "change": "g.29304dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_598t1:c.1203+13dup", "sequenceAccessionVersion": "LRG_598t1", "sequenceAccession": "LRG_598t1", "change": "c.1203+13dup"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598t2:c.1216dup", "sequenceAccessionVersion": "LRG_598t2", "sequenceAccession": "LRG_598t2", "change": "c.1216dup"}, "proteinExpression": {"expression": "LRG_598p2:p.His406fs", "sequenceAccessionVersion": "LRG_598p2", "sequenceAccession": "LRG_598p2", "change": "p.His406fs"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA212750"}, {"db": "OMIM", "id": "612358.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "797044430", "type": "rs"}], "alleleId": "15614", "variationId": "575"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "High molecular weight kininogen deficiency", "db": "MedGen", "id": "C0272340"}], "traitSetId": "158"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Affects", "dateLastEvaluated": "2007-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001102416.3(KNG1):c.1216dup (p.His406fs) AND High molecular weight kininogen deficiency", "accession": "RCV000000605", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Affects", "citations": [{"ids": [{"value": "17522339", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "1968772", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Flaujeac factor deficiency", "type": "Alternate"}, {"value": "High molecular weight kininogen deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Flaujeac+Factor+Deficiency/2875"}, {"db": "SNOMED CT", "id": "27312002"}]}, {"value": "Congenital high-molecular-weight kininogen deficiency", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0009234"}]}, {"value": "Reduced kininogen activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0005527"}]}, {"value": "FITZGERALD TRAIT", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "483"}, {"db": "MedGen", "id": "C0272340"}, {"db": "MONDO", "id": "MONDO:0009234"}, {"db": "OMIM", "id": "228960", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0005527", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0004867", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005500", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005530", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005538", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "158", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-06-01T00:00:00Z", "dateCreated": "2016-10-23T00:00:00Z", "mostRecentSubmission": "2016-10-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612358.0004_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "title": "KNG1, 1-BP INS, 1217C_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020755", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-10-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Affects", "dateLastEvaluated": "2007-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Using restriction analysis, Hayashi et al. (1990) found that a Japanese patient with isolated HMWK deficiency (228960) had a partial deletion in intron 7 of the KNG1 gene. This partial deletion was assumed to be related to an abnormality of alternative splicing of HMW prekininogen mRNA. However, Shigekiyo et al. (2007) found that this patient with isolated HMWK deficiency was homozygous for a 1-bp insertion (C) at nucleotide 1217 in exon 10 of the KNG1 gene. The insertion resulted in a frameshift in codon 406 and a premature stop signal in codon 415. The patient's brother and parents, who were second cousins, were heterozygous for the mutation."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1968772", "source": "PubMed"}]}, {"ids": [{"value": "17522339", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "KNG1"}], "name": {"value": "KNG1, 1-BP INS, 1217C"}, "variantType": "Variation", "otherNames": [{"value": "1-BP INS, 1217C", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612358.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20755"}], "traitMappings": [{"medgens": [{"name": "High molecular weight kininogen deficiency", "cui": "C0272340"}], "clinicalAssertionId": "20755", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "mappingRef": "Preferred"}]}}
+{"variationId": "573", "variationName": "NM_001102416.3(KNG1):c.1493del (p.Lys498fs)", "variationType": "Deletion", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000573", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186717359, "stop": 186744410, "displayStart": 186717359, "displayStop": 186744410, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186435097, "stop": 186462198, "displayStart": 186435097, "displayStop": 186462198, "strand": "+"}]}], "omims": ["612358"], "fullName": "kininogen 1", "geneId": "3827", "hgncId": "HGNC:6383", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001102416.3(KNG1):c.1493del (p.Lys498fs)", "canonicalSpdi": "NC_000003.12:186741887:AA:A", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["3q27.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 186741888, "stop": 186741888, "displayStart": 186741888, "displayStop": 186741888, "variantLength": 1, "positionVcf": 186741887, "referenceAlleleVcf": "TA", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 186459677, "stop": 186459677, "displayStart": 186459677, "displayStop": 186459677, "variantLength": 1, "positionVcf": 186459676, "referenceAlleleVcf": "TA", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["K498fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000003.11:g.186459678del", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.186459678del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.186741889del", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.186741889del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016009.1:g.29581del", "sequenceAccessionVersion": "NG_016009.1", "sequenceAccession": "NG_016009", "sequenceVersion": 1, "change": "g.29581del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001102416.3:c.1493del", "sequenceAccessionVersion": "NM_001102416.3", "sequenceAccession": "NM_001102416", "sequenceVersion": 3, "change": "c.1493del", "maneSelect": true}, "proteinExpression": {"expression": "NP_001095886.1:p.Lys498fs", "sequenceAccessionVersion": "NP_001095886.1", "sequenceAccession": "NP_001095886", "sequenceVersion": 1, "change": "p.Lys498fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_000893.4:c.1203+290del", "sequenceAccessionVersion": "NM_000893.4", "sequenceAccession": "NM_000893", "sequenceVersion": 4, "change": "c.1203+290del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001166451.2:c.1095+290del", "sequenceAccessionVersion": "NM_001166451.2", "sequenceAccession": "NM_001166451", "sequenceVersion": 2, "change": "c.1095+290del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598t1:c.1203+290del", "sequenceAccessionVersion": "LRG_598t1", "sequenceAccession": "LRG_598t1", "change": "c.1203+290del"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598t2:c.1493del", "sequenceAccessionVersion": "LRG_598t2", "sequenceAccession": "LRG_598t2", "change": "c.1493del"}, "proteinExpression": {"expression": "LRG_598p2:p.Lys498fs", "sequenceAccessionVersion": "LRG_598p2", "sequenceAccession": "LRG_598p2", "change": "p.Lys498fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_598:g.29581del", "sequenceAccessionVersion": "LRG_598", "sequenceAccession": "LRG_598", "change": "g.29581del"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA212749"}, {"db": "OMIM", "id": "612358.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "797044429", "type": "rs"}], "alleleId": "15612", "variationId": "573"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "High molecular weight kininogen deficiency", "db": "MedGen", "id": "C0272340"}], "traitSetId": "158"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Affects", "dateLastEvaluated": "2003-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001102416.3(KNG1):c.1493del (p.Lys498fs) AND High molecular weight kininogen deficiency", "accession": "RCV000000603", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Affects", "citations": [{"ids": [{"value": "12576314", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Flaujeac factor deficiency", "type": "Alternate"}, {"value": "High molecular weight kininogen deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Flaujeac+Factor+Deficiency/2875"}, {"db": "SNOMED CT", "id": "27312002"}]}, {"value": "Congenital high-molecular-weight kininogen deficiency", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0009234"}]}, {"value": "Reduced kininogen activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0005527"}]}, {"value": "FITZGERALD TRAIT", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "483"}, {"db": "MedGen", "id": "C0272340"}, {"db": "MONDO", "id": "MONDO:0009234"}, {"db": "OMIM", "id": "228960", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0005527", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0004867", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005500", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005530", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005538", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "158", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2003-06-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612358.0002_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "title": "KNG1, 1-BP DEL, 1492A_HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020753", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Affects", "dateLastEvaluated": "2003-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Krijanovski et al. (2003) described studies of the plasma and DNA of a 6-year-old male, born of first-cousin parents, with cerebral artery thrombosis and HMWK deficiency (228960). The previously healthy child had headache and vomiting 10 days after moderate cerebral trauma, followed by loss of consciousness and subsequent visual impairment. CT scan and angiography showed extensive left vertebral-basilar artery thrombosis and a left vertebral artery dissection. The patient had a prolonged activated partial thromboplastin time (APTT) and received fresh frozen plasma before arteriography and then daily for 8 days, which resulted in normalization of the APTT and resolution of neurologic symptoms. There was full neurologic recovery with warfarin anticoagulant therapy for 6 months, and there had been no recurrence after 2 years of follow-up. The child had no high molecular weight kininogen procoagulant activity and antigen (less than 1%). He was found to be homozygous for deletion of an adenine at cDNA position 1492 in exon 10 of the KNG1 gene, corresponding to position 480 of the mature protein. The mutation resulted in a frameshift and premature termination at amino acid 532 of the mature protein. Each parent and a sib were heterozygous for the same defect. Krijanovski et al. (2003) found that truncation or frameshift at or before position 480 of mature HMWK prevented biosynthesis, processing, and/or secretion of the protein into plasma."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12576314", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "228960", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "KNG1"}], "name": {"value": "KNG1, 1-BP DEL, 1492A"}, "variantType": "Variation", "otherNames": [{"value": "1-BP DEL, 1492A", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612358.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20753"}], "traitMappings": [{"medgens": [{"name": "High molecular weight kininogen deficiency", "cui": "C0272340"}], "clinicalAssertionId": "20753", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HIGH MOLECULAR WEIGHT KININOGEN DEFICIENCY", "mappingRef": "Preferred"}]}}
+{"variationId": "857", "variationName": "NM_013319.3(UBIAD1):c.529G>C (p.Gly177Arg)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000857", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.529G>C (p.Gly177Arg)", "canonicalSpdi": "NC_000001.11:11274059:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11274060, "stop": 11274060, "displayStart": 11274060, "displayStop": 11274060, "variantLength": 1, "positionVcf": 11274060, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11334117, "stop": 11334117, "displayStart": 11334117, "displayStop": 11334117, "variantLength": 1, "positionVcf": 11334117, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["G177R", "V177L"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.11334117G>C", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11334117G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11274060G>C", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11274060G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5863G>C", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5863G>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.529G>C", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.529G>C"}, "proteinExpression": {"expression": "NP_001317278.1:p.Gly177Arg", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Gly177Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.529G>C", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.529G>C"}, "proteinExpression": {"expression": "NP_001317279.1:p.Val177Leu", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Val177Leu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.529G>C", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.529G>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Gly177Arg", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Gly177Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114576"}, {"db": "OMIM", "id": "611632.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203946", "type": "rs"}], "alleleId": "15896", "variationId": "857"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2013-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.529G>C (p.Gly177Arg) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000905", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17962451", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "23169578", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2013-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0002_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, GLY177ARG_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021055", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2013-02-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a Caucasian family with Schnyder corneal dystrophy (SCCD; 121800), Weiss et al. (2007) identified heterozygosity for a G-to-C transversion in the UBIAD1 gene, resulting in a gly177-to-arg (G177R) substitution. This amino acid is evolutionarily conserved. Prediction of the protein structure indicated that a prenyltransferase domain and several transmembrane helices are affected by the mutation. The mutation was not found in any unaffected family members tested or in 200 control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17962451", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}, {"attributes": [{"base": {"value": "In 3 affected individuals from 2 families with SCCD, 1 from Taiwan and 1 from Kosovo, Weiss et al. (2008) identified heterozygosity for the G177R mutation in exon 2 of the UBIAD1 gene. The mutation was not found in 1 unaffected Kosovar family member or in 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "18176953", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Nickerson et al. (2013) analyzed SCCD patient B-cell lysates and observed that the G177R mutant had significantly reduced biosynthetic activity, 39% lower than that of wildtype UBIAD1."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "23169578", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "name": {"value": "UBIAD1, GLY177ARG"}, "variantType": "Variation", "otherNames": [{"value": "GLY177ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21055"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21055", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
+{"variationId": "861", "variationName": "NM_013319.3(UBIAD1):c.335A>G (p.Asp112Gly)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000861", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.335A>G (p.Asp112Gly)", "canonicalSpdi": "NC_000001.11:11273865:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273866, "stop": 11273866, "displayStart": 11273866, "displayStop": 11273866, "variantLength": 1, "positionVcf": 11273866, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333923, "stop": 11333923, "displayStart": 11333923, "displayStop": 11333923, "variantLength": 1, "positionVcf": 11333923, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["D112G"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Asp112Gly", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Asp112Gly"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11333923A>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11333923A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11273866A>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11273866A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5669A>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5669A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.335A>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.335A>G"}, "proteinExpression": {"expression": "NP_001317278.1:p.Asp112Gly", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Asp112Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.335A>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.335A>G"}, "proteinExpression": {"expression": "NP_001317279.1:p.Asp112Gly", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Asp112Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.335A>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.335A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Asp112Gly", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Asp112Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114580"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043715"}, {"db": "OMIM", "id": "611632.0006", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203950", "type": "rs"}], "alleleId": "15900", "variationId": "861"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.335A>G (p.Asp112Gly) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000909", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-08-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0006_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ASP112GLY_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021059", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of an East Indian family with Schnyder crystalline corneal dystrophy (SCCD; 121800), Orr et al. (2007) identified heterozygosity for a 335A-G transition in the UBIAD1 gene, resulting in an asp112-to-gly (D112G) substitution at a highly conserved residue. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "name": {"value": "UBIAD1, ASP112GLY"}, "variantType": "Variation", "otherNames": [{"value": "ASP112GLY", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0006", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21059"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21059", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
+{"variationId": "856", "variationName": "NM_013319.3(UBIAD1):c.305A>G (p.Asn102Ser)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-14T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-14T00:00:00Z", "accession": "VCV000000856", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.305A>G (p.Asn102Ser)", "canonicalSpdi": "NC_000001.11:11273835:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273836, "stop": 11273836, "displayStart": 11273836, "displayStop": 11273836, "variantLength": 1, "positionVcf": 11273836, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333893, "stop": 11333893, "displayStart": 11333893, "displayStop": 11333893, "variantLength": 1, "positionVcf": 11333893, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N102S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Asn102Ser", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Asn102Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11333893A>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11333893A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11273836A>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11273836A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5639A>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5639A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.305A>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.305A>G"}, "proteinExpression": {"expression": "NP_001317278.1:p.Asn102Ser", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Asn102Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.305A>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.305A>G"}, "proteinExpression": {"expression": "NP_001317279.1:p.Asn102Ser", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Asn102Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.305A>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.305A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Asn102Ser", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Asn102Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114575"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043714"}, {"db": "OMIM", "id": "611632.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203945", "type": "rs"}], "alleleId": "15895", "variationId": "856"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2013-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.305A>G (p.Asn102Ser) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000904", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "17962451", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "23169578", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "3486394", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9450854", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2013-02-01T00:00:00Z", "dateCreated": "2017-10-14T00:00:00Z", "mostRecentSubmission": "2017-10-14T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0001_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ASN102SER_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021054", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-14T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2013-02-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a family with Schnyder crystalline corneal dystrophy (SCCD; 121800) originally described by Battisti et al. (1998), Orr et al. (2007) identified heterozygosity for an A-to-G transition in the UBIAD1 gene, resulting in an asn102-to-ser (N102S) substitution. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9450854", "source": "PubMed"}]}, {"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}, {"attributes": [{"base": {"value": "In affected members of 5 unrelated Caucasian families with SCCD, 2 of which were previously reported as pedigrees '11' and '12' in a mapping analysis by Theendakara et al. (2004), Weiss et al. (2007) identified heterozygosity for the N102S substitution. Asn102 is evolutionarily conserved. Prediction of the protein structure indicated that a prenyltransferase domain and several transmembrane helices are affected by the mutation. The mutation was not found in any unaffected family members tested or in 200 control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}]}, {"ids": [{"value": "17962451", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "In affected members from 5 families with SCCD, 2 of which were American, 1 Czechoslovakian, 1 Taiwanese, and 1 German (previously described as 'family I' by Lisch et al., 1986), Weiss et al. (2008) identified heterozygosity for the N102S mutation in exon 1 of the UBIAD1 gene. The mutation was not found in 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "3486394", "source": "PubMed"}]}, {"ids": [{"value": "18176953", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Nickerson et al. (2013) analyzed SCCD patient B-cell lysates and observed that the N102S mutant had significantly reduced biosynthetic activity, 22% lower than that of wildtype UBIAD1."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "23169578", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "name": {"value": "UBIAD1, ASN102SER"}, "variantType": "Variation", "otherNames": [{"value": "ASN102SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21054"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21054", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
+{"variationId": "860", "variationName": "NM_013319.3(UBIAD1):c.695A>G (p.Asn232Ser)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000860", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.695A>G (p.Asn232Ser)", "canonicalSpdi": "NC_000001.11:11285808:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11285809, "stop": 11285809, "displayStart": 11285809, "displayStop": 11285809, "variantLength": 1, "positionVcf": 11285809, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11345866, "stop": 11345866, "displayStart": 11345866, "displayStop": 11345866, "variantLength": 1, "positionVcf": 11345866, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N232S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Asn232Ser", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Asn232Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11345866A>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11345866A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.618+77A>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.618+77A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.530-9064A>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.530-9064A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11285809A>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11285809A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.17612A>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.17612A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.695A>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.695A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Asn232Ser", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Asn232Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114579"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043723"}, {"db": "OMIM", "id": "611632.0005", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203949", "type": "rs"}], "alleleId": "15899", "variationId": "860"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.695A>G (p.Asn232Ser) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000908", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8190477", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-08-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0005_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ASN232SER_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021058", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a family with Schnyder crystalline corneal dystrophy (SCCD; 121800), originally described by McCarthy et al. (1994), Orr et al. (2007) identified heterozygosity for a 695A-G transition in the UBIAD1 gene, resulting in an asn232-to-ser (N232S) substitution at a highly conserved residue. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8190477", "source": "PubMed"}]}, {"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "name": {"value": "UBIAD1, ASN232SER"}, "variantType": "Variation", "otherNames": [{"value": "ASN232SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0005", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21058"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21058", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
+{"variationId": "864", "variationName": "NM_013319.3(UBIAD1):c.708C>G (p.Asp236Glu)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000864", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.708C>G (p.Asp236Glu)", "canonicalSpdi": "NC_000001.11:11285821:C:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11285822, "stop": 11285822, "displayStart": 11285822, "displayStop": 11285822, "variantLength": 1, "positionVcf": 11285822, "referenceAlleleVcf": "C", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11345879, "stop": 11345879, "displayStart": 11345879, "displayStop": 11345879, "variantLength": 1, "positionVcf": 11345879, "referenceAlleleVcf": "C", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["D236E"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Asp236Glu", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Asp236Glu"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.708C>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.708C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Asp236Glu", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Asp236Glu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.618+90C>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.618+90C>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.530-9051C>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.530-9051C>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11345879C>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11345879C>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11285822C>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11285822C>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.17625C>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.17625C>G"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA114583"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043724"}, {"db": "OMIM", "id": "611632.0009", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203953", "type": "rs"}], "alleleId": "15903", "variationId": "864"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.708C>G (p.Asp236Glu) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000912", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0009_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ASP236GLU_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021062", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 42-year-old African American woman with Schnyder corneal dystrophy (SCCD; 121800), Weiss et al. (2008) identified heterozygosity for a 1040C-G transversion in exon 2 of the UBIAD1 gene, resulting in an asp236-to-glu (D236E) substitution. The mutation was not found in 200 chromosomes from 100 unrelated Caucasian DNA samples. The authors stated that this was the first African American individual reported with SCCD."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "18176953", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "name": {"value": "UBIAD1, ASP236GLU"}, "variantType": "Variation", "otherNames": [{"value": "ASP236GLU", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0009", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21062"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21062", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
+{"variationId": "859", "variationName": "NM_013319.3(UBIAD1):c.524C>T (p.Thr175Ile)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000859", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.524C>T (p.Thr175Ile)", "canonicalSpdi": "NC_000001.11:11274054:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11274055, "stop": 11274055, "displayStart": 11274055, "displayStop": 11274055, "variantLength": 1, "positionVcf": 11274055, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11334112, "stop": 11334112, "displayStart": 11334112, "displayStop": 11334112, "variantLength": 1, "positionVcf": 11334112, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["T175I"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Thr175Ile", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Thr175Ile"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11334112C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11334112C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11274055C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11274055C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5858C>T", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5858C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.524C>T", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.524C>T"}, "proteinExpression": {"expression": "NP_001317278.1:p.Thr175Ile", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Thr175Ile"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.524C>T", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.524C>T"}, "proteinExpression": {"expression": "NP_001317279.1:p.Thr175Ile", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Thr175Ile"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.524C>T", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.524C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Thr175Ile", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Thr175Ile"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114578"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043720"}, {"db": "OMIM", "id": "611632.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203948", "type": "rs"}], "alleleId": "15898", "variationId": "859"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.524C>T (p.Thr175Ile) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000907", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0004_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, THR175ILE_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021057", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 affected members of a family from Scotland with Schnyder crystalline corneal dystrophy (SCCD; 121800), Orr et al. (2007) identified heterozygosity for a 524C-T transition in the UBIAD1 gene, resulting in a thr175-to-ile (T175I) substitution at a highly conserved residue. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}, {"attributes": [{"base": {"value": "In 8 affected members of a Hungarian-American family with SCCD, previously reported as 'pedigree 10' in a mapping analysis by Theendakara et al. (2004), Weiss et al. (2008) identified heterozygosity for the T175I mutation in exon 1 of the UBIAD1 gene. All affected individuals demonstrated prominent diffuse corneal haze, typically without corneal crystals. The mutation was not found in 1 unaffected family member, 1 unaffected spouse, or in 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}]}, {"ids": [{"value": "18176953", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "name": {"value": "UBIAD1, THR175ILE"}, "variantType": "Variation", "otherNames": [{"value": "THR175ILE", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21057"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21057", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
+{"variationId": "863", "variationName": "NM_013319.3(UBIAD1):c.556G>A (p.Gly186Arg)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000863", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.556G>A (p.Gly186Arg)", "canonicalSpdi": "NC_000001.11:11285669:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11285670, "stop": 11285670, "displayStart": 11285670, "displayStop": 11285670, "variantLength": 1, "positionVcf": 11285670, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11345727, "stop": 11345727, "displayStart": 11345727, "displayStop": 11345727, "variantLength": 1, "positionVcf": 11345727, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["G186R"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Gly186Arg", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Gly186Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11345727G>A", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11345727G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11285670G>A", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11285670G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.17473G>A", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.17473G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.556G>A", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.556G>A"}, "proteinExpression": {"expression": "NP_001317278.1:p.Gly186Arg", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Gly186Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.556G>A", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.556G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Gly186Arg", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Gly186Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.530-9203G>A", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.530-9203G>A"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114582"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043722"}, {"db": "OMIM", "id": "611632.0008", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203952", "type": "rs"}], "alleleId": "15902", "variationId": "863"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.556G>A (p.Gly186Arg) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000911", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0008_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, GLY186ARG_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021061", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 affected members of a German-American family with Schnyder crystalline corneal dystrophy (SCCD; 121800), previously reported as 'pedigree 8' in a mapping analysis by Theendakara et al. (2004), Weiss et al. (2008) identified heterozygosity for an 888G-A transition in exon 2 of the UBIAD1 gene, resulting in a gly186-to-arg (G186R) substitution. The mutation was not found in 3 unaffected family members, an unaffected spouse, or 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15034782", "source": "PubMed"}]}, {"ids": [{"value": "18176953", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "name": {"value": "UBIAD1, GLY186ARG"}, "variantType": "Variation", "otherNames": [{"value": "GLY186ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0008", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21061"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21061", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
+{"variationId": "858", "variationName": "NM_013319.3(UBIAD1):c.355A>G (p.Arg119Gly)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000858", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.355A>G (p.Arg119Gly)", "canonicalSpdi": "NC_000001.11:11273885:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273886, "stop": 11273886, "displayStart": 11273886, "displayStop": 11273886, "variantLength": 1, "positionVcf": 11273886, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333943, "stop": 11333943, "displayStart": 11333943, "displayStop": 11333943, "variantLength": 1, "positionVcf": 11333943, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["R119G"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Arg119Gly", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Arg119Gly"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11333943A>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11333943A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11273886A>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11273886A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5689A>G", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5689A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.355A>G", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.355A>G"}, "proteinExpression": {"expression": "NP_001317278.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.355A>G", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.355A>G"}, "proteinExpression": {"expression": "NP_001317279.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.355A>G", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.355A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114577"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043717"}, {"db": "OMIM", "id": "611632.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203947", "type": "rs"}], "alleleId": "15897", "variationId": "858"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.355A>G (p.Arg119Gly) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000906", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-08-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0003_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, ARG119GLY_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021056", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2007-08-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a 5-generation Nova Scotian family with Schnyder crystalline corneal dystrophy (SCCD; 121800), Orr et al. (2007) identified heterozygosity for a 355A-G transition in the UBIAD1 gene, resulting in an arg119-to-gly (R119G) substitution at a highly conserved residue. The mutation was not found in unaffected family members or in 144 Nova Scotian controls, 59 unrelated Caucasian CEPH HapMap DNA samples, or 89 unrelated Asian HapMap DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17668063", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "name": {"value": "UBIAD1, ARG119GLY"}, "variantType": "Variation", "otherNames": [{"value": "ARG119GLY", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21056"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21056", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
+{"variationId": "862", "variationName": "NM_013319.3(UBIAD1):c.511T>C (p.Ser171Pro)", "variationType": "single nucleotide variant", "dateCreated": "2017-10-20T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "accession": "VCV000000862", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11273198, "stop": 11299574, "displayStart": 11273198, "displayStop": 11299574, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11333254, "stop": 11348490, "displayStart": 11333254, "displayStop": 11348490, "strand": "+"}]}], "omims": ["611632"], "fullName": "UbiA prenyltransferase domain containing 1", "geneId": "29914", "hgncId": "HGNC:30791", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_013319.3(UBIAD1):c.511T>C (p.Ser171Pro)", "canonicalSpdi": "NC_000001.11:11274041:T:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p36.22"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 11274042, "stop": 11274042, "displayStart": 11274042, "displayStop": 11274042, "variantLength": 1, "positionVcf": 11274042, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 11334099, "stop": 11334099, "displayStart": 11334099, "displayStop": 11334099, "variantLength": 1, "positionVcf": 11334099, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["S171P"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9Y5Z9:p.Ser171Pro", "sequenceAccessionVersion": "Q9Y5Z9", "sequenceAccession": "Q9Y5Z9", "change": "p.Ser171Pro"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.11334099T>C", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.11334099T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.11274042T>C", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.11274042T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009443.2:g.5845T>C", "sequenceAccessionVersion": "NG_009443.2", "sequenceAccession": "NG_009443", "sequenceVersion": 2, "change": "g.5845T>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001330349.2:c.511T>C", "sequenceAccessionVersion": "NM_001330349.2", "sequenceAccession": "NM_001330349", "sequenceVersion": 2, "change": "c.511T>C"}, "proteinExpression": {"expression": "NP_001317278.1:p.Ser171Pro", "sequenceAccessionVersion": "NP_001317278.1", "sequenceAccession": "NP_001317278", "sequenceVersion": 1, "change": "p.Ser171Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330350.2:c.511T>C", "sequenceAccessionVersion": "NM_001330350.2", "sequenceAccession": "NM_001330350", "sequenceVersion": 2, "change": "c.511T>C"}, "proteinExpression": {"expression": "NP_001317279.1:p.Ser171Pro", "sequenceAccessionVersion": "NP_001317279.1", "sequenceAccession": "NP_001317279", "sequenceVersion": 1, "change": "p.Ser171Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_013319.3:c.511T>C", "sequenceAccessionVersion": "NM_013319.3", "sequenceAccession": "NM_013319", "sequenceVersion": 3, "change": "c.511T>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_037451.1:p.Ser171Pro", "sequenceAccessionVersion": "NP_037451.1", "sequenceAccession": "NP_037451", "sequenceVersion": 1, "change": "p.Ser171Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114581"}, {"db": "UniProtKB", "id": "Q9Y5Z9#VAR_043719"}, {"db": "OMIM", "id": "611632.0007", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203951", "type": "rs"}], "alleleId": "15901", "variationId": "862"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Schnyder crystalline corneal dystrophy", "db": "MedGen", "id": "C0271287"}], "traitSetId": "225"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_013319.3(UBIAD1):c.511T>C (p.Ser171Pro) AND Schnyder crystalline corneal dystrophy", "accession": "RCV000000910", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "18176953", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "3486394", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Corneal dystrophy crystalline of Schnyder", "type": "Alternate"}, {"value": "Schnyder crystalline corneal dystrophy", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Corneal+Dystrophy+Crystalline+of+Schnyder/1907"}, {"db": "SNOMED CT", "id": "419395007"}]}, {"value": "Schnyder corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0007374"}]}, {"value": "Crystalline corneal dystrophy", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007760"}, {"db": "SNOMED CT", "id": "39662004"}]}], "symbols": [{"value": "SCCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9277"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9277"}]}], "xrefs": [{"db": "Orphanet", "id": "98967"}, {"db": "MedGen", "id": "C0271287"}, {"db": "MONDO", "id": "MONDO:0007374"}, {"db": "OMIM", "id": "121800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0007760", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "225", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-02-01T00:00:00Z", "dateCreated": "2017-10-20T00:00:00Z", "mostRecentSubmission": "2017-10-20T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "611632.0007_CORNEAL DYSTROPHY, SCHNYDER", "title": "UBIAD1, SER171PRO_CORNEAL DYSTROPHY, SCHNYDER"}, "clinvarAccession": {"accession": "SCV000021060", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-10-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-02-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a German family with Schnyder corneal dystrophy (SCCD; 121800), previously described as 'family II' by Lisch et al. (1986), Weiss et al. (2008) identified heterozygosity for an 843T-C transition in exon 1 of the UBIAD1 gene, resulting in a ser171-to-pro (S171P) substitution. The mutation was not found in 200 chromosomes from 100 unrelated Caucasian DNA samples."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "3486394", "source": "PubMed"}]}, {"ids": [{"value": "18176953", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "121800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UBIAD1"}], "name": {"value": "UBIAD1, SER171PRO"}, "variantType": "Variation", "otherNames": [{"value": "SER171PRO", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "611632.0007", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CORNEAL DYSTROPHY, SCHNYDER", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21060"}], "traitMappings": [{"medgens": [{"name": "Schnyder crystalline corneal dystrophy", "cui": "C0271287"}], "clinicalAssertionId": "21060", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CORNEAL DYSTROPHY, SCHNYDER", "mappingRef": "Preferred"}]}}
+{"variationId": "1192", "variationName": "NM_001029871.4(RSPO4):c.353G>A (p.Cys118Tyr)", "variationType": "single nucleotide variant", "dateCreated": "2019-09-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-09-23T00:00:00Z", "accession": "VCV000001192", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 958452, "stop": 1002311, "displayStart": 958452, "displayStop": 1002311, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 939094, "stop": 982906, "displayStart": 939094, "displayStop": 982906, "strand": "-"}]}], "omims": ["610573"], "fullName": "R-spondin 4", "geneId": "343637", "hgncId": "HGNC:16175", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001029871.4(RSPO4):c.353G>A (p.Cys118Tyr)", "canonicalSpdi": "NC_000020.11:967229:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 967230, "stop": 967230, "displayStart": 967230, "displayStop": 967230, "variantLength": 1, "positionVcf": 967230, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 947873, "stop": 947873, "displayStart": 947873, "displayStop": 947873, "variantLength": 1, "positionVcf": 947873, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["C118Y"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q2I0M5:p.Cys118Tyr", "sequenceAccessionVersion": "Q2I0M5", "sequenceAccession": "Q2I0M5", "change": "p.Cys118Tyr"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000020.10:g.947873C>T", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.947873C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.967230C>T", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.967230C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_013043.1:g.40035G>A", "sequenceAccessionVersion": "NG_013043.1", "sequenceAccession": "NG_013043", "sequenceVersion": 1, "change": "g.40035G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001029871.4:c.353G>A", "sequenceAccessionVersion": "NM_001029871.4", "sequenceAccession": "NM_001029871", "sequenceVersion": 4, "change": "c.353G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_001025042.2:p.Cys118Tyr", "sequenceAccessionVersion": "NP_001025042.2", "sequenceAccession": "NP_001025042", "sequenceVersion": 2, "change": "p.Cys118Tyr"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001040007.3:c.353G>A", "sequenceAccessionVersion": "NM_001040007.3", "sequenceAccession": "NM_001040007", "sequenceVersion": 3, "change": "c.353G>A"}, "proteinExpression": {"expression": "NP_001035096.1:p.Cys118Tyr", "sequenceAccessionVersion": "NP_001035096.1", "sequenceAccession": "NP_001035096", "sequenceVersion": 1, "change": "p.Cys118Tyr"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114827"}, {"db": "UniProtKB", "id": "Q2I0M5#VAR_030402"}, {"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "74315422", "type": "rs"}], "alleleId": "16231", "variationId": "1192"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Anonychia", "db": "MedGen", "id": "C0265998"}], "traitSetId": "316"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2006-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001029871.4(RSPO4):c.353G>A (p.Cys118Tyr) AND Anonychia", "accession": "RCV000001251", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17041604", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hyponychia congenita", "type": "Alternate"}, {"value": "Anonychia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Anonychia+Congenita/488"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798"}, {"db": "SNOMED CT", "id": "23610003"}]}, {"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "OMIM", "id": "610573.0007", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0006", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0008", "type": "Allelic variant"}]}, {"value": "ANONYCHIA/HYPONYCHIA CONGENITA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}, {"value": "ANONYCHIA TOTALIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "symbols": [{"value": "NDNC4", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "79143"}, {"db": "Orphanet", "id": "94150"}, {"db": "MedGen", "id": "C0265998"}, {"db": "MONDO", "id": "MONDO:0008798"}, {"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0007593", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0008384", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "316", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2006-11-01T00:00:00Z", "dateCreated": "2019-09-23T00:00:00Z", "mostRecentSubmission": "2019-09-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "610573.0003_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "title": "RSPO4, CYS118TYR_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4"}, "clinvarAccession": {"accession": "SCV000021401", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-09-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2006-11-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 1 of 3 consanguineous Indian families with nonsyndromic hyponychia (NDNC4; 206800), Blaydon et al. (2006) found homozygosity for a cys118-to-tyr (C118Y) mutation in exon 3 of the RSPO4 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17041604", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "RSPO4"}], "name": {"value": "RSPO4, CYS118TYR"}, "variantType": "Variation", "otherNames": [{"value": "CYS118TYR", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21401"}], "traitMappings": [{"medgens": [{"name": "Anonychia", "cui": "C0265998"}], "clinicalAssertionId": "21401", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "mappingRef": "Preferred"}]}}
+{"variationId": "1408", "variationName": "NM_001374504.1(TMPRSS6):c.1768C>T (p.Arg590Ter)", "variationType": "single nucleotide variant", "dateCreated": "2019-03-31T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2020-02-27T00:00:00Z", "accession": "VCV000001408", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["22q12.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_22", "accession": "NC_000022.11", "start": 37065436, "stop": 37110536, "displayStart": 37065436, "displayStop": 37110536, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_22", "accession": "NC_000022.10", "start": 37461478, "stop": 37499692, "displayStart": 37461478, "displayStop": 37499692, "strand": "-"}]}], "omims": ["609862"], "fullName": "transmembrane serine protease 6", "geneId": "164656", "hgncId": "HGNC:16517", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001374504.1(TMPRSS6):c.1768C>T (p.Arg590Ter)", "canonicalSpdi": "NC_000022.11:37070556:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["22q12.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_22", "accession": "NC_000022.11", "start": 37070557, "stop": 37070557, "displayStart": 37070557, "displayStop": 37070557, "variantLength": 1, "positionVcf": 37070557, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_22", "accession": "NC_000022.10", "start": 37466597, "stop": 37466597, "displayStart": 37466597, "displayStop": 37466597, "variantLength": 1, "positionVcf": 37466597, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "R599*"}], "proteinChanges": ["R590*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000022.10:g.37466597G>A", "sequenceAccessionVersion": "NC_000022.10", "sequenceAccession": "NC_000022", "sequenceVersion": 10, "change": "g.37466597G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000022.11:g.37070557G>A", "sequenceAccessionVersion": "NC_000022.11", "sequenceAccession": "NC_000022", "sequenceVersion": 11, "change": "g.37070557G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_012856.2:g.44007C>T", "sequenceAccessionVersion": "NG_012856.2", "sequenceAccession": "NG_012856", "sequenceVersion": 2, "change": "g.44007C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001289000.2:c.1768C>T", "sequenceAccessionVersion": "NM_001289000.2", "sequenceAccession": "NM_001289000", "sequenceVersion": 2, "change": "c.1768C>T"}, "proteinExpression": {"expression": "NP_001275929.1:p.Arg590Ter", "sequenceAccessionVersion": "NP_001275929.1", "sequenceAccession": "NP_001275929", "sequenceVersion": 1, "change": "p.Arg590Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001289001.2:c.1768C>T", "sequenceAccessionVersion": "NM_001289001.2", "sequenceAccession": "NM_001289001", "sequenceVersion": 2, "change": "c.1768C>T"}, "proteinExpression": {"expression": "NP_001275930.1:p.Arg590Ter", "sequenceAccessionVersion": "NP_001275930.1", "sequenceAccession": "NP_001275930", "sequenceVersion": 1, "change": "p.Arg590Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001374504.1:c.1768C>T", "sequenceAccessionVersion": "NM_001374504.1", "sequenceAccession": "NM_001374504", "sequenceVersion": 1, "change": "c.1768C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_001361433.1:p.Arg590Ter", "sequenceAccessionVersion": "NP_001361433.1", "sequenceAccession": "NP_001361433", "sequenceVersion": 1, "change": "p.Arg590Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_153609.4:c.1768C>T", "sequenceAccessionVersion": "NM_153609.4", "sequenceAccession": "NM_153609", "sequenceVersion": 4, "change": "c.1768C>T"}, "proteinExpression": {"expression": "NP_705837.2:p.Arg590Ter", "sequenceAccessionVersion": "NP_705837.2", "sequenceAccession": "NP_705837", "sequenceVersion": 2, "change": "p.Arg590Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1128:g.44007C>T", "sequenceAccessionVersion": "LRG_1128", "sequenceAccession": "LRG_1128"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_1128t2:c.1768C>T", "sequenceAccessionVersion": "LRG_1128t2", "sequenceAccession": "LRG_1128t2"}, "proteinExpression": {"expression": "LRG_1128p2:p.Arg590Ter", "sequenceAccessionVersion": "LRG_1128p2", "sequenceAccession": "LRG_1128p2", "change": "p.Arg590Ter"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1128t1:c.1768C>T", "sequenceAccessionVersion": "LRG_1128t1", "sequenceAccession": "LRG_1128t1"}, "proteinExpression": {"expression": "LRG_1128p1:p.Arg590Ter", "sequenceAccessionVersion": "LRG_1128p1", "sequenceAccession": "LRG_1128p1", "change": "p.Arg590Ter"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114995"}, {"db": "OMIM", "id": "609862.0010", "type": "Allelic variant"}, {"db": "dbSNP", "id": "137853123", "type": "rs"}], "alleleId": "16447", "variationId": "1408"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcytic anemia", "db": "MedGen", "id": "C5194182"}], "traitSetId": "380"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Likely pathogenic", "submissionCount": 1}}}, "title": "NM_001374504.1(TMPRSS6):c.1768C>T (p.Arg590Ter) AND Microcytic anemia", "accession": "RCV000001473", "version": 6}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Iron-refractory iron deficiency anemia", "db": "MedGen", "id": "C0085576"}], "traitSetId": "66010"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2008-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001374504.1(TMPRSS6):c.1768C>T (p.Arg590Ter) AND Iron-refractory iron deficiency anemia", "accession": "RCV001375844", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic/Likely pathogenic", "citations": [{"ids": [{"value": "18596229", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "32581362", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "IRIDA syndrome", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0008788"}]}, {"value": "Iron-refractory iron deficiency anemia", "type": "Preferred", "xrefs": [{"db": "SNOMED CT", "id": "722005000"}]}, {"value": "ANEMIA, HYPOCHROMIC MICROCYTIC, WITH DEFECT IN IRON METABOLISM", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}, {"value": "IRON-HANDLING DISORDER, HEREDITARY", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}, {"value": "PSEUDO-IRON-DEFICIENCY ANEMIA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}], "symbols": [{"value": "IRIDA", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000500228"}]}], "xrefs": [{"db": "Orphanet", "id": "209981"}, {"db": "MedGen", "id": "C0085576"}, {"db": "MONDO", "id": "MONDO:0008788"}, {"db": "OMIM", "id": "206200", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "66010", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Microcytic anemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Microcytic+anemia/8872"}, {"db": "Human Phenotype Ontology", "id": "HP:0001935"}, {"db": "MONDO", "id": "MONDO:0001245"}, {"db": "SNOMED CT", "id": "234349007"}]}], "attributes": [{"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000500397"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000500228"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000508489"}]}], "xrefs": [{"db": "MedGen", "id": "C5194182"}, {"db": "MONDO", "id": "MONDO:0001245"}, {"db": "Human Phenotype Ontology", "id": "HP:0001935", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "380", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2008-09-01T00:00:00Z", "dateCreated": "2019-03-31T00:00:00Z", "mostRecentSubmission": "2020-02-27T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "609862.0010_IRON-REFRACTORY IRON DEFICIENCY ANEMIA", "title": "TMPRSS6, ARG599TER_IRON-REFRACTORY IRON DEFICIENCY ANEMIA"}, "clinvarAccession": {"accession": "SCV000021628", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-03-31T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2008-09-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the arg599-to-ter (R599X) mutation in the TMPRSS6 gene that was found in compound heterozygous state in a patient with iron-refractory iron deficiency anemia (IRIDA; 206200) by Guillem et al. (2008), see 609862.0009."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "18596229", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "TMPRSS6"}], "name": {"value": "TMPRSS6, ARG599TER"}, "variantType": "Variation", "otherNames": [{"value": "ARG599TER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "609862.0010", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "IRON-REFRACTORY IRON DEFICIENCY ANEMIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21628"}, {"clinvarSubmissionId": {"localKey": "c.1795C>T_206200", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001162263", "version": 1, "submitterIdentifiers": {"submitterName": "NIHR Bioresource Rare Diseases, University of Cambridge", "orgId": "505998", "orgCategory": "consortium", "orgAbbreviation": "NIHR BR RD"}, "dateUpdated": "2020-02-27T00:00:00Z", "dateCreated": "2020-02-27T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Likely pathogenic", "citations": [{"ids": [{"value": "32581362", "source": "PubMed"}], "type": "general"}]}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}, {"attributes": [{"base": {"value": "L014876"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}]}], "simpleAllele": {"genes": [{"symbol": "TMPRSS6"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_22", "start": 37466597, "stop": 37466597, "variantLength": 1, "referenceAllele": "G", "alternateAllele": "A"}]}, "attributes": [{"attribute": {"base": {"value": "NM_153609.2:c.1795C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "206200", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["NIHR_Bioresource_Rare_Diseases_13k"], "id": "2290339"}], "traitMappings": [{"medgens": [{"name": "Iron-refractory iron deficiency anemia", "cui": "C0085576"}], "clinicalAssertionId": "2290339", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "206200", "mappingRef": "OMIM"}, {"medgens": [{"name": "Iron-refractory iron deficiency anemia", "cui": "C0085576"}], "clinicalAssertionId": "21628", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "IRON-REFRACTORY IRON DEFICIENCY ANEMIA", "mappingRef": "Preferred"}]}}
+{"variationId": "1612", "variationName": "NM_024884.3(L2HGDH):c.293A>G (p.His98Arg)", "variationType": "single nucleotide variant", "dateCreated": "2017-11-10T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-12-19T00:00:00Z", "accession": "VCV000001612", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["14q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_14", "accession": "NC_000014.9", "start": 50242434, "stop": 50312229, "displayStart": 50242434, "displayStop": 50312229, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_14", "accession": "NC_000014.8", "start": 50709151, "stop": 50778946, "displayStart": 50709151, "displayStop": 50778946, "strand": "-"}]}], "omims": ["609584"], "fullName": "L-2-hydroxyglutarate dehydrogenase", "geneId": "79944", "hgncId": "HGNC:20499", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_024884.3(L2HGDH):c.293A>G (p.His98Arg)", "canonicalSpdi": "NC_000014.9:50302131:T:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["14q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_14", "accession": "NC_000014.9", "start": 50302132, "stop": 50302132, "displayStart": 50302132, "displayStop": 50302132, "variantLength": 1, "positionVcf": 50302132, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_14", "accession": "NC_000014.8", "start": 50768850, "stop": 50768850, "displayStart": 50768850, "displayStop": 50768850, "variantLength": 1, "positionVcf": 50768850, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}]}], "otherNames": [{"value": "L2HGDH, HIS98ARG"}], "proteinChanges": ["H98R"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9H9P8:p.His98Arg", "sequenceAccessionVersion": "Q9H9P8", "sequenceAccession": "Q9H9P8", "change": "p.His98Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000014.8:g.50768850T>C", "sequenceAccessionVersion": "NC_000014.8", "sequenceAccession": "NC_000014", "sequenceVersion": 8, "change": "g.50768850T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000014.9:g.50302132T>C", "sequenceAccessionVersion": "NC_000014.9", "sequenceAccession": "NC_000014", "sequenceVersion": 9, "change": "g.50302132T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008092.1:g.15098A>G", "sequenceAccessionVersion": "NG_008092.1", "sequenceAccession": "NG_008092", "sequenceVersion": 1, "change": "g.15098A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_024884.3:c.293A>G", "sequenceAccessionVersion": "NM_024884.3", "sequenceAccession": "NM_024884", "sequenceVersion": 3, "change": "c.293A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_079160.1:p.His98Arg", "sequenceAccessionVersion": "NP_079160.1", "sequenceAccession": "NP_079160", "sequenceVersion": 1, "change": "p.His98Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA115109"}, {"db": "UniProtKB", "id": "Q9H9P8#VAR_025685"}, {"db": "OMIM", "id": "609584.0006", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267607206", "type": "rs"}], "alleleId": "16651", "variationId": "1612"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "L-2-hydroxyglutaric aciduria", "db": "MedGen", "id": "C1855995"}], "traitSetId": "414"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-01-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_024884.3(L2HGDH):c.293A>G (p.His98Arg) AND L-2-hydroxyglutaric aciduria", "accession": "RCV000001679", "version": 4}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "CN517202"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2017-10-05T00:00:00Z", "submissionCount": 1}}}, "title": "NM_024884.3(L2HGDH):c.293A>G (p.His98Arg) AND not provided", "accession": "RCV000522298", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "19911013", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Developmental Genetics Unit, King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}, {"value": "none provided", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "CN517202"}]}], "type": "TYPE_DISEASE", "id": "9460", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "L-2-hydroxyglutaric aciduria", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "L-2-hydroxyglutaric+aciduria/4061"}, {"db": "Human Phenotype Ontology", "id": "HP:0040144"}, {"db": "MONDO", "id": "MONDO:0009370"}]}], "symbols": [{"value": "L2HGA", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "236792", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "10472"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10472"}]}], "xrefs": [{"db": "Orphanet", "id": "79314"}, {"db": "MedGen", "id": "C1855995"}, {"db": "MONDO", "id": "MONDO:0009370"}, {"db": "OMIM", "id": "236792", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0040144", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "414"}], "dateLastEvaluated": "2017-10-05T00:00:00Z", "dateCreated": "2017-11-10T00:00:00Z", "mostRecentSubmission": "2017-12-19T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "609584.0006_L-2-HYDROXYGLUTARIC ACIDURIA", "title": "L2HGDH, HIS98ARG_L-2-HYDROXYGLUTARIC ACIDURIA"}, "clinvarAccession": {"accession": "SCV000021835", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-11-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-01-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 unrelated Portuguese patients with L-2-hydroxyglutaric aciduria (L2HGA; 236792), Vilarinho et al. (2010) identified a homozygous 293A-G transition in the L2HGDH gene, resulting in a his98-to-arg (H98R) substitution in a conserved residue."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19911013", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "236792", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "L2HGDH"}], "name": {"value": "L2HGDH, HIS98ARG"}, "variantType": "Variation", "otherNames": [{"value": "HIS98ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "609584.0006", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "L-2-HYDROXYGLUTARIC ACIDURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21835"}, {"clinvarSubmissionId": {"localKey": "GDX:742576|Not Provided", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000617755", "version": 2, "submitterIdentifiers": {"submitterName": "GeneDx", "orgId": "26957", "orgCategory": "laboratory"}, "dateUpdated": "2017-12-19T00:00:00Z", "dateCreated": "2017-12-19T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "comments": [{"value": "The H98R variant in the L2HGDH gene has been reported previously in the heterozygous state, in the presence of a second L2HGDH variant, and in the homozygous state, in multiple unrelated individuals with L-2-hydroxyglutaric aciduria, intellectual disability, and leukodystrophy (Vilarinho et al., 2005; Vilarinho et al., 2010). A different missense variant at the same residue, H98Y, has also been reported in the homozygous state in individuals with L-2-hydroxyglutaric aciduria (Top\u00c3\u00a7u et al., 2004; Haliloglu et al., 2008). The H98R variant is not observed in large population cohorts (Lek et al., 2016). The H98R variant is a conservative amino acid substitution, which is not likely to impact secondary protein structure as these residues share similar properties. This substitution occurs at a position that is conserved across species and in silico analysis predicts this variant is probably damaging to the protein structure/function. We interpret H98R as a likely pathogenic variant."}], "dateLastEvaluated": "2017-10-05T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "GeneDx Variant Classification (06012015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/ft/byid/dhtz9flo/genedx_interprules_final_061215.pdf"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "L2HGDH"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_14", "start": 50768850, "stop": 50768850, "variantLength": 1, "referenceAllele": "T", "alternateAllele": "C"}]}, "attributes": [{"attribute": {"base": {"value": "NM_024884.2:c.293A>G"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Not Provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB5098196"], "id": "1204167"}], "traitMappings": [{"medgens": [{"name": "L-2-hydroxyglutaric aciduria", "cui": "C1855995"}], "clinicalAssertionId": "21835", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "L-2-HYDROXYGLUTARIC ACIDURIA", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "CN517202"}], "clinicalAssertionId": "1204167", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Not Provided", "mappingRef": "Preferred"}]}}
+{"variationId": "1190", "variationName": "NM_001029871.4(RSPO4):c.194A>G (p.Gln65Arg)", "variationType": "single nucleotide variant", "dateCreated": "2019-09-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-09-23T00:00:00Z", "accession": "VCV000001190", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 958452, "stop": 1002311, "displayStart": 958452, "displayStop": 1002311, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 939094, "stop": 982906, "displayStart": 939094, "displayStop": 982906, "strand": "-"}]}], "omims": ["610573"], "fullName": "R-spondin 4", "geneId": "343637", "hgncId": "HGNC:16175", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001029871.4(RSPO4):c.194A>G (p.Gln65Arg)", "canonicalSpdi": "NC_000020.11:968023:T:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 968024, "stop": 968024, "displayStart": 968024, "displayStop": 968024, "variantLength": 1, "positionVcf": 968024, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 948667, "stop": 948667, "displayStart": 948667, "displayStop": 948667, "variantLength": 1, "positionVcf": 948667, "referenceAlleleVcf": "T", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["Q65R"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q2I0M5:p.Gln65Arg", "sequenceAccessionVersion": "Q2I0M5", "sequenceAccession": "Q2I0M5", "change": "p.Gln65Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.968024T>C", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.968024T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_013043.1:g.39241A>G", "sequenceAccessionVersion": "NG_013043.1", "sequenceAccession": "NG_013043", "sequenceVersion": 1, "change": "g.39241A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001029871.4:c.194A>G", "sequenceAccessionVersion": "NM_001029871.4", "sequenceAccession": "NM_001029871", "sequenceVersion": 4, "change": "c.194A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_001025042.2:p.Gln65Arg", "sequenceAccessionVersion": "NP_001025042.2", "sequenceAccession": "NP_001025042", "sequenceVersion": 2, "change": "p.Gln65Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001040007.3:c.194A>G", "sequenceAccessionVersion": "NM_001040007.3", "sequenceAccession": "NM_001040007", "sequenceVersion": 3, "change": "c.194A>G"}, "proteinExpression": {"expression": "NP_001035096.1:p.Gln65Arg", "sequenceAccessionVersion": "NP_001035096.1", "sequenceAccession": "NP_001035096", "sequenceVersion": 1, "change": "p.Gln65Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000020.10:g.948667T>C", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.948667T>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA114825"}, {"db": "UniProtKB", "id": "Q2I0M5#VAR_030399"}, {"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "74315420", "type": "rs"}], "alleleId": "16229", "variationId": "1190"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Anonychia", "db": "MedGen", "id": "C0265998"}], "traitSetId": "316"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2006-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001029871.4(RSPO4):c.194A>G (p.Gln65Arg) AND Anonychia", "accession": "RCV000001249", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "17041604", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "4702713", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hyponychia congenita", "type": "Alternate"}, {"value": "Anonychia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Anonychia+Congenita/488"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798"}, {"db": "SNOMED CT", "id": "23610003"}]}, {"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "OMIM", "id": "610573.0007", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0006", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0008", "type": "Allelic variant"}]}, {"value": "ANONYCHIA/HYPONYCHIA CONGENITA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}, {"value": "ANONYCHIA TOTALIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "symbols": [{"value": "NDNC4", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "79143"}, {"db": "Orphanet", "id": "94150"}, {"db": "MedGen", "id": "C0265998"}, {"db": "MONDO", "id": "MONDO:0008798"}, {"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0007593", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0008384", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "316", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2006-11-01T00:00:00Z", "dateCreated": "2019-09-23T00:00:00Z", "mostRecentSubmission": "2019-09-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "610573.0001_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "title": "RSPO4, GLN65ARG_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4"}, "clinvarAccession": {"accession": "SCV000021399", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-09-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2006-11-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In members of a consanguineous Finnish family with anonychia congenita (NDNC4; 206800), originally reported by Hopsu-Havu and Jansen (1973), Blaydon et al. (2006) demonstrated homozygosity for a missense mutation, gln65 to arg (Q65R), in the RSPO4 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "4702713", "source": "PubMed"}]}, {"ids": [{"value": "17041604", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "RSPO4"}], "name": {"value": "RSPO4, GLN65ARG"}, "variantType": "Variation", "otherNames": [{"value": "GLN65ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21399"}], "traitMappings": [{"medgens": [{"name": "Anonychia", "cui": "C0265998"}], "clinicalAssertionId": "21399", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "mappingRef": "Preferred"}]}}
+{"variationId": "2497", "variationName": "NM_000127.3(EXT1):c.528_535del (p.Lys177fs)", "variationType": "Deletion", "dateCreated": "2020-07-27T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2020-07-27T00:00:00Z", "accession": "VCV000002497", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["8q24.11"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_8", "accession": "NC_000008.11", "start": 117794490, "stop": 118111826, "displayStart": 117794490, "displayStop": 118111826, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_8", "accession": "NC_000008.10", "start": 118811601, "stop": 119124057, "displayStart": 118811601, "displayStop": 119124057, "strand": "-"}]}], "omims": ["608177"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2020-06-17T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=EXT1"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2020-06-17T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=EXT1"}, "fullName": "exostosin glycosyltransferase 1", "geneId": "2131", "hgncId": "HGNC:3512", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000127.3(EXT1):c.528_535del (p.Lys177fs)", "canonicalSpdi": "NC_000008.11:118110511:GCACTTTGG:G", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["8q24.11"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_8", "accession": "NC_000008.11", "start": 118110512, "stop": 118110519, "displayStart": 118110512, "displayStop": 118110519, "variantLength": 8, "positionVcf": 118110511, "referenceAlleleVcf": "TGCACTTTG", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_8", "accession": "NC_000008.10", "start": 119122751, "stop": 119122758, "displayStart": 119122751, "displayStop": 119122758, "variantLength": 8, "positionVcf": 119122750, "referenceAlleleVcf": "TGCACTTTG", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["K177fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000008.10:g.119122752_119122759del", "sequenceAccessionVersion": "NC_000008.10", "sequenceAccession": "NC_000008", "sequenceVersion": 10, "change": "g.119122752_119122759del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000008.11:g.118110513_118110520del", "sequenceAccessionVersion": "NC_000008.11", "sequenceAccession": "NC_000008", "sequenceVersion": 11, "change": "g.118110513_118110520del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_007455.2:g.6301_6308del", "sequenceAccessionVersion": "NG_007455.2", "sequenceAccession": "NG_007455", "sequenceVersion": 2, "change": "g.6301_6308del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000127.3:c.528_535del", "sequenceAccessionVersion": "NM_000127.3", "sequenceAccession": "NM_000127", "sequenceVersion": 3, "change": "c.528_535del", "maneSelect": true}, "proteinExpression": {"expression": "NP_000118.2:p.Lys177fs", "sequenceAccessionVersion": "NP_000118.2", "sequenceAccession": "NP_000118", "sequenceVersion": 2, "change": "p.Lys177fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_493:g.6301_6308del", "sequenceAccessionVersion": "LRG_493", "sequenceAccession": "LRG_493"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA115579"}, {"db": "OMIM", "id": "608177.0006", "type": "Allelic variant"}, {"db": "dbSNP", "id": "587776540", "type": "rs"}], "comments": [{"value": "NCBI staff reviewed the sequence information reported in PubMed 8981950 Fig. 4 to determine the location of this allele on the current reference sequence.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "17536", "variationId": "2497"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Chondrosarcoma", "db": "MedGen", "id": "C0008479"}], "traitSetId": "6434"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1997-01-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000127.3(EXT1):c.528_535del (p.Lys177fs) AND Chondrosarcoma", "accession": "RCV000002603", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "8981950", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Chondrosarcoma, somatic", "type": "Alternate"}, {"value": "Chondrosarcoma", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Chondrosarcoma/1378"}, {"db": "Human Phenotype Ontology", "id": "HP:0006765"}, {"db": "MONDO", "id": "MONDO:0008977"}]}], "attributes": [{"attribute": {"base": {"value": "Neoplasm"}, "type": "keyword"}}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}, {"attribute": {"base": {"integerValue": "6055"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "6055"}]}], "xrefs": [{"db": "Orphanet", "id": "55880"}, {"db": "MedGen", "id": "C0008479"}, {"db": "MONDO", "id": "MONDO:0008977"}, {"db": "OMIM", "id": "215300", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0006765", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "6434", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1997-01-01T00:00:00Z", "dateCreated": "2020-07-27T00:00:00Z", "mostRecentSubmission": "2020-07-27T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "608177.0006_CHONDROSARCOMA, SOMATIC", "title": "EXT1, 8-BP DEL, NT1178_CHONDROSARCOMA, SOMATIC"}, "clinvarAccession": {"accession": "SCV000022761", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2020-07-27T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1997-01-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In the tumor tissue of a patient (individual 10) with sporadic chondrosarcoma (215300), Hecht et al. (1997) identified an 8-bp deletion (1178del8) in the EXT1 gene, resulting in a premature stop codon at nucleotide 1213. This mutation did not appear in the patient's constitutional DNA, suggesting somatic origin."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8981950", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "215300", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "EXT1"}], "name": {"value": "EXT1, 8-BP DEL, NT1178"}, "variantType": "Variation", "otherNames": [{"value": "8-BP DEL, NT1178", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "608177.0006", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CHONDROSARCOMA, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "22761"}], "traitMappings": [{"medgens": [{"name": "Chondrosarcoma", "cui": "C0008479"}], "clinicalAssertionId": "22761", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CHONDROSARCOMA, SOMATIC", "mappingRef": "Preferred"}]}}
+{"variationId": "2940", "variationName": "NM_001902.6(CTH):c.718C>G (p.Gln240Glu)", "variationType": "single nucleotide variant", "dateCreated": "2016-10-22T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-10-22T00:00:00Z", "accession": "VCV000002940", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1p31.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 70411268, "stop": 70439851, "displayStart": 70411268, "displayStop": 70439851, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 70876900, "stop": 70905533, "displayStart": 70876900, "displayStop": 70905533, "strand": "+"}]}], "omims": ["607657"], "fullName": "cystathionine gamma-lyase", "geneId": "1491", "hgncId": "HGNC:2501", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001902.6(CTH):c.718C>G (p.Gln240Glu)", "canonicalSpdi": "NC_000001.11:70430387:C:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1p31.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 70430388, "stop": 70430388, "displayStart": 70430388, "displayStop": 70430388, "variantLength": 1, "positionVcf": 70430388, "referenceAlleleVcf": "C", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 70896071, "stop": 70896071, "displayStart": 70896071, "displayStop": 70896071, "variantLength": 1, "positionVcf": 70896071, "referenceAlleleVcf": "C", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["Q240E", "Q196E", "Q208E"], "hgvsExpressions": [{"proteinExpression": {"expression": "P32929:p.Gln240Glu", "sequenceAccessionVersion": "P32929", "sequenceAccession": "P32929", "change": "p.Gln240Glu"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.70896071C>G", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.70896071C>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.70430388C>G", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.70430388C>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008041.1:g.24117C>G", "sequenceAccessionVersion": "NG_008041.1", "sequenceAccession": "NG_008041", "sequenceVersion": 1, "change": "g.24117C>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001190463.2:c.622C>G", "sequenceAccessionVersion": "NM_001190463.2", "sequenceAccession": "NM_001190463", "sequenceVersion": 2, "change": "c.622C>G"}, "proteinExpression": {"expression": "NP_001177392.1:p.Gln208Glu", "sequenceAccessionVersion": "NP_001177392.1", "sequenceAccession": "NP_001177392", "sequenceVersion": 1, "change": "p.Gln208Glu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001902.6:c.718C>G", "sequenceAccessionVersion": "NM_001902.6", "sequenceAccession": "NM_001902", "sequenceVersion": 6, "change": "c.718C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_001893.2:p.Gln240Glu", "sequenceAccessionVersion": "NP_001893.2", "sequenceAccession": "NP_001893", "sequenceVersion": 2, "change": "p.Gln240Glu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_153742.5:c.586C>G", "sequenceAccessionVersion": "NM_153742.5", "sequenceAccession": "NM_153742", "sequenceVersion": 5, "change": "c.586C>G"}, "proteinExpression": {"expression": "NP_714964.2:p.Gln196Glu", "sequenceAccessionVersion": "NP_714964.2", "sequenceAccession": "NP_714964", "sequenceVersion": 2, "change": "p.Gln196Glu"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA115890"}, {"db": "UniProtKB", "id": "P32929#VAR_015451"}, {"db": "OMIM", "id": "607657.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "28941786", "type": "rs"}], "alleleId": "17979", "variationId": "2940"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Cystathioninuria", "db": "MedGen", "id": "C0220993"}], "traitSetId": "746"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2003-04-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001902.6(CTH):c.718C>G (p.Gln240Glu) AND Cystathioninuria", "accession": "RCV000003074", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "12574942", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Cystathioninuria", "type": "Preferred", "xrefs": [{"db": "GeneTests", "id": "204921"}, {"db": "Genetic Alliance", "id": "Gamma-Cystathionase+Deficiency/2980"}, {"db": "Human Phenotype Ontology", "id": "HP:0003153"}, {"db": "MONDO", "id": "MONDO:0009058"}, {"db": "SNOMED CT", "id": "13003007"}]}, {"value": "CYSTATHIONASE DEFICIENCY", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "219500", "type": "MIM"}]}, {"value": "Gamma-cystathionase deficiency", "type": "Alternate"}], "xrefs": [{"db": "Orphanet", "id": "212"}, {"db": "MedGen", "id": "C0220993"}, {"db": "MONDO", "id": "MONDO:0009058"}, {"db": "OMIM", "id": "219500", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0003153", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "746", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2003-04-01T00:00:00Z", "dateCreated": "2016-10-22T00:00:00Z", "mostRecentSubmission": "2016-10-22T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "607657.0004_CYSTATHIONINURIA", "title": "CTH, GLN240GLU_CYSTATHIONINURIA"}, "clinvarAccession": {"accession": "SCV000023232", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-10-22T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2003-04-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a patient of European descent with cystathioninuria (219500), Wang and Hegele (2003) identified compound heterozygosity for an 874C-G transversion in exon 7 of the CTH cDNA sequence, resulting in a gln240-to-glu (Q240E) mutation, and a T67I mutation (607657.0003)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12574942", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "219500", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "CTH"}], "name": {"value": "CTH, GLN240GLU"}, "variantType": "Variation", "otherNames": [{"value": "GLN240GLU", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "607657.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CYSTATHIONINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "23232"}], "traitMappings": [{"medgens": [{"name": "Cystathioninuria", "cui": "C0220993"}], "clinicalAssertionId": "23232", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CYSTATHIONINURIA", "mappingRef": "Preferred"}]}}
+{"variationId": "3350", "variationName": "NM_000348.4(SRD5A2):c.78C>G (p.Tyr26Ter)", "variationType": "single nucleotide variant", "dateCreated": "2016-06-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-06-23T00:00:00Z", "accession": "VCV000003350", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2p23.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 31522480, "stop": 31663009, "displayStart": 31522480, "displayStop": 31663009, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 31749655, "stop": 31806039, "displayStart": 31749655, "displayStop": 31806039, "strand": "-"}]}], "omims": ["607306"], "fullName": "steroid 5 alpha-reductase 2", "geneId": "6716", "hgncId": "HGNC:11285", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000348.4(SRD5A2):c.78C>G (p.Tyr26Ter)", "canonicalSpdi": "NC_000002.12:31580822:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2p23.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 31580823, "stop": 31580823, "displayStart": 31580823, "displayStop": 31580823, "variantLength": 1, "positionVcf": 31580823, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 31805892, "stop": 31805892, "displayStart": 31805892, "displayStop": 31805892, "variantLength": 1, "positionVcf": 31805892, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["Y26*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NM_000348.4:c.78C>G", "sequenceAccessionVersion": "NM_000348.4", "sequenceAccession": "NM_000348", "sequenceVersion": 4, "change": "c.78C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_000339.2:p.Tyr26Ter", "sequenceAccessionVersion": "NP_000339.2", "sequenceAccession": "NP_000339", "sequenceVersion": 2, "change": "p.Tyr26Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.31580823G>C", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.31580823G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000002.11:g.31805892G>C", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.31805892G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_008365.1:g.5149C>G", "sequenceAccessionVersion": "NG_008365.1", "sequenceAccession": "NG_008365", "sequenceVersion": 1, "change": "g.5149C>G"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA346599154"}, {"db": "OMIM", "id": "607306.0015", "type": "Allelic variant"}, {"db": "dbSNP", "id": "104893667", "type": "rs"}], "alleleId": "18389", "variationId": "3350"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Micropenis", "db": "MedGen", "id": "C4551492"}], "traitSetId": "17560"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2003-07-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000348.4(SRD5A2):c.78C>G (p.Tyr26Ter) AND Micropenis", "accession": "RCV000003514", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "12843198", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Micropenis", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0000054"}]}], "xrefs": [{"db": "MedGen", "id": "C4551492"}, {"db": "Human Phenotype Ontology", "id": "HP:0000054", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0000038", "type": "secondary"}]}], "type": "TYPE_FINDING", "id": "17560", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2003-07-01T00:00:00Z", "dateCreated": "2016-06-23T00:00:00Z", "mostRecentSubmission": "2016-06-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "607306.0015_MICROPENIS", "title": "SRD5A2, TYR26TER _MICROPENIS"}, "clinvarAccession": {"accession": "SCV000023672", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-06-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2003-07-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a Japanese patient with micropenis (see 264600), Sasaki et al. (2003) found compound heterozygosity for mutation in the SRD5A2 gene, a 78C-G transversion in exon 1 resulting in substitution of tyr26 by a stop codon (Y26X), and a missense change at arg227 (R227Q; 607306.0016). The Y26X mutation was expected to abolish enzyme activity through early termination of the protein."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12843198", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "264600", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "SRD5A2"}], "name": {"value": "SRD5A2, TYR26TER"}, "variantType": "Variation", "otherNames": [{"value": "TYR26TER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "607306.0015", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROPENIS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "23672"}], "traitMappings": [{"medgens": [{"name": "Micropenis", "cui": "C4551492"}], "clinicalAssertionId": "23672", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROPENIS", "mappingRef": "Preferred"}]}}
+{"variationId": "5052", "variationName": "NM_001135608.3(ARHGAP26):c.1250A>G (p.Asn417Ser)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000005052", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5q31.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 142770377, "stop": 143229011, "displayStart": 142770377, "displayStop": 143229011, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 142150291, "stop": 142608571, "displayStart": 142150291, "displayStop": 142608571, "strand": "+"}]}], "omims": ["605370"], "fullName": "Rho GTPase activating protein 26", "geneId": "23092", "hgncId": "HGNC:17073", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001135608.3(ARHGAP26):c.1250A>G (p.Asn417Ser)", "canonicalSpdi": "NC_000005.10:143041854:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["5q31.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 143041855, "stop": 143041855, "displayStart": 143041855, "displayStop": 143041855, "variantLength": 1, "positionVcf": 143041855, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 142421420, "stop": 142421420, "displayStart": 142421420, "displayStop": 142421420, "variantLength": 1, "positionVcf": 142421420, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N417S", "N381S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9UNA1:p.Asn417Ser", "sequenceAccessionVersion": "Q9UNA1", "sequenceAccession": "Q9UNA1", "change": "p.Asn417Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_1127:g.276486A>G", "sequenceAccessionVersion": "LRG_1127", "sequenceAccession": "LRG_1127"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_1127t1:c.1250A>G", "sequenceAccessionVersion": "LRG_1127t1", "sequenceAccession": "LRG_1127t1"}, "proteinExpression": {"expression": "LRG_1127p1:p.Asn417Ser", "sequenceAccessionVersion": "LRG_1127p1", "sequenceAccession": "LRG_1127p1", "change": "p.Asn417Ser"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001135608.3:c.1250A>G", "sequenceAccessionVersion": "NM_001135608.3", "sequenceAccession": "NM_001135608", "sequenceVersion": 3, "change": "c.1250A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_001129080.1:p.Asn417Ser", "sequenceAccessionVersion": "NP_001129080.1", "sequenceAccession": "NP_001129080", "sequenceVersion": 1, "change": "p.Asn417Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001349547.2:c.1142A>G", "sequenceAccessionVersion": "NM_001349547.2", "sequenceAccession": "NM_001349547", "sequenceVersion": 2, "change": "c.1142A>G"}, "proteinExpression": {"expression": "NP_001336476.1:p.Asn381Ser", "sequenceAccessionVersion": "NP_001336476.1", "sequenceAccession": "NP_001336476", "sequenceVersion": 1, "change": "p.Asn381Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_015071.6:c.1250A>G", "sequenceAccessionVersion": "NM_015071.6", "sequenceAccession": "NM_015071", "sequenceVersion": 6, "change": "c.1250A>G"}, "proteinExpression": {"expression": "NP_055886.1:p.Asn417Ser", "sequenceAccessionVersion": "NP_055886.1", "sequenceAccession": "NP_055886", "sequenceVersion": 1, "change": "p.Asn417Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_146198.2:n.1635A>G", "sequenceAccessionVersion": "NR_146198.2", "sequenceAccession": "NR_146198", "sequenceVersion": 2, "change": "n.1635A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NC_000005.10:g.143041855A>G", "sequenceAccessionVersion": "NC_000005.10", "sequenceAccession": "NC_000005", "sequenceVersion": 10, "change": "g.143041855A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000005.9:g.142421420A>G", "sequenceAccessionVersion": "NC_000005.9", "sequenceAccession": "NC_000005", "sequenceVersion": 9, "change": "g.142421420A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_016711.2:g.276486A>G", "sequenceAccessionVersion": "NG_016711.2", "sequenceAccession": "NG_016711", "sequenceVersion": 2, "change": "g.276486A>G"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "UniProtKB", "id": "Q9UNA1#VAR_013623"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121918546", "type": "rs"}, {"db": "ClinGen", "id": "CA117231"}], "alleleId": "20091", "variationId": "5052"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Juvenile myelomonocytic leukemia", "db": "MedGen", "id": "C0349639"}], "traitSetId": "99"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001135608.3(ARHGAP26):c.1250A>G (p.Asn417Ser) AND Juvenile myelomonocytic leukemia", "accession": "RCV000005355", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "176876.0014", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0017", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0015", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0016", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, {"value": "Juvenile myelomonocytic leukemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Juvenile+Myelomonocytic+Leukemia+%28JMML%29/3936"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209"}, {"db": "MONDO", "id": "MONDO:0011908"}]}], "symbols": [{"value": "JMML", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9884"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9884"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "citations": [{"ids": [{"value": "24493721", "source": "PubMed"}], "type": "practice guideline", "abbrev": "ASCO, 2014"}], "xrefs": [{"db": "Orphanet", "id": "86834"}, {"db": "MedGen", "id": "C0349639"}, {"db": "MONDO", "id": "MONDO:0011908"}, {"db": "OMIM", "id": "607785", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "99", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-08-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605370.0001_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "title": "ARHGAP26, ASN417SER_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC"}, "clinvarAccession": {"accession": "SCV000025533", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a leukemic cells derived from a patient with juvenile myelomonocytic leukemia (JMML; 607785) and a fusion between the MLL gene on 11q and the GRAF gene on 5q, Borkhardt et al. (2000) identified in the other GRAF allele an A-to-G transition at nucleotide 1255 that resulted in the substitution of a serine for an asparagine at amino acid 417. This was thought to be a second hit in a leukemogenic process."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ARHGAP26"}], "name": {"value": "ARHGAP26, ASN417SER"}, "variantType": "Variation", "otherNames": [{"value": "ASN417SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25533"}], "traitMappings": [{"medgens": [{"name": "Juvenile myelomonocytic leukemia", "cui": "C0349639"}], "clinicalAssertionId": "25533", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "mappingRef": "Preferred"}]}}
+{"variationId": "5054", "variationName": "ARHGAP26, 74-BP INS", "variationType": "Insertion", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000005054", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5q31.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 142770377, "stop": 143229011, "displayStart": 142770377, "displayStop": 143229011, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 142150291, "stop": 142608571, "displayStart": 142150291, "displayStop": 142608571, "strand": "+"}]}], "omims": ["605370"], "fullName": "Rho GTPase activating protein 26", "geneId": "23092", "hgncId": "HGNC:17073", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}], "name": "ARHGAP26, 74-BP INS", "variantTypes": ["Insertion"], "locations": [{"cytogeneticLocations": ["5q31"]}], "otherNames": [{"value": "74-BP INS"}], "xrefs": [{"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}], "alleleId": "20093", "variationId": "5054"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Juvenile myelomonocytic leukemia", "db": "MedGen", "id": "C0349639"}], "traitSetId": "99"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "ARHGAP26, 74-BP INS AND Juvenile myelomonocytic leukemia", "accession": "RCV000005357", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "176876.0014", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0017", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0015", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0016", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, {"value": "Juvenile myelomonocytic leukemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Juvenile+Myelomonocytic+Leukemia+%28JMML%29/3936"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209"}, {"db": "MONDO", "id": "MONDO:0011908"}]}], "symbols": [{"value": "JMML", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9884"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9884"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "citations": [{"ids": [{"value": "24493721", "source": "PubMed"}], "type": "practice guideline", "abbrev": "ASCO, 2014"}], "xrefs": [{"db": "Orphanet", "id": "86834"}, {"db": "MedGen", "id": "C0349639"}, {"db": "MONDO", "id": "MONDO:0011908"}, {"db": "OMIM", "id": "607785", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "99", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-08-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605370.0003_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "title": "ARHGAP26, 74-BP INS_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC"}, "clinvarAccession": {"accession": "SCV000025535", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In leukemic cells from a patient with juvenile myelomonocytic leukemia (JMML; 607785) and a t(5;11)(q31;q23) involving the N-terminal part of MLL and the C-terminal part of the GRAF gene, Borkhardt et al. (2000) found that the GRAF allele on the other chromosome 5 carried a 74-bp insertion located in the 60-kb long intron between exons 15 and 16. The insertion presumably generated a stop codon. The predicted protein lacked the SH3 domain of GRAF that was shown to be necessary for the interaction with the focal adhesion kinase."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ARHGAP26"}], "name": {"value": "ARHGAP26, 74-BP INS"}, "variantType": "Variation", "otherNames": [{"value": "74-BP INS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25535"}], "traitMappings": [{"medgens": [{"name": "Juvenile myelomonocytic leukemia", "cui": "C0349639"}], "clinicalAssertionId": "25535", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "mappingRef": "Preferred"}]}}
+{"variationId": "5053", "variationName": "ARHGAP26, 52-BP INS", "variationType": "Insertion", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000005053", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5q31.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 142770377, "stop": 143229011, "displayStart": 142770377, "displayStop": 143229011, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 142150291, "stop": 142608571, "displayStart": 142150291, "displayStop": 142608571, "strand": "+"}]}], "omims": ["605370"], "fullName": "Rho GTPase activating protein 26", "geneId": "23092", "hgncId": "HGNC:17073", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}], "name": "ARHGAP26, 52-BP INS", "variantTypes": ["Insertion"], "locations": [{"cytogeneticLocations": ["5q31"]}], "otherNames": [{"value": "52-BP INS"}], "xrefs": [{"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}], "alleleId": "20092", "variationId": "5053"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Juvenile myelomonocytic leukemia", "db": "MedGen", "id": "C0349639"}], "traitSetId": "99"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "ARHGAP26, 52-BP INS AND Juvenile myelomonocytic leukemia", "accession": "RCV000005356", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "176876.0014", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0017", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0015", "type": "Allelic variant"}, {"db": "OMIM", "id": "176876.0016", "type": "Allelic variant"}, {"db": "OMIM", "id": "605370.0003", "type": "Allelic variant"}]}, {"value": "Juvenile myelomonocytic leukemia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Juvenile+Myelomonocytic+Leukemia+%28JMML%29/3936"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209"}, {"db": "MONDO", "id": "MONDO:0011908"}]}], "symbols": [{"value": "JMML", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "9884"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9884"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "citations": [{"ids": [{"value": "24493721", "source": "PubMed"}], "type": "practice guideline", "abbrev": "ASCO, 2014"}], "xrefs": [{"db": "Orphanet", "id": "86834"}, {"db": "MedGen", "id": "C0349639"}, {"db": "MONDO", "id": "MONDO:0011908"}, {"db": "OMIM", "id": "607785", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012209", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "99", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-08-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605370.0002_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "title": "ARHGAP26, 52-BP INS_LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC"}, "clinvarAccession": {"accession": "SCV000025534", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-08-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In leukemic cells from a patient with juvenile myelomonocytic leukemia (JMML; 607785) and a reciprocal translocation t(5;11)(q31;q23) involving the GRAF and MLL genes, Borkhardt et al. (2000) found that the other allele of the GRAF gene carried a 52-bp insertion at the splice junction of exons 12 and 13. The exon/intron boundary was located at nucleotides 1290/91. The insertion led to a reading frameshift that generated a stop codon. The predicted truncated GRAF protein lacked almost the entire GAP domain and therefore was most likely not functional. The 52-bp insertion (nucleotides 32560-32611) originated from a 524-bp long sequence located upstream of the 3-prime splice site of the adjacent nearly 13-kb long intron. Because the insertion is imbedded in perfect splice donor and acceptor sites, it was thought to be the result of aberrant splicing."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "10908648", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "607785", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ARHGAP26"}], "name": {"value": "ARHGAP26, 52-BP INS"}, "variantType": "Variation", "otherNames": [{"value": "52-BP INS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605370.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25534"}], "traitMappings": [{"medgens": [{"name": "Juvenile myelomonocytic leukemia", "cui": "C0349639"}], "clinicalAssertionId": "25534", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "LEUKEMIA, JUVENILE MYELOMONOCYTIC, SOMATIC", "mappingRef": "Preferred"}]}}
+{"variationId": "2752", "variationName": "NM_014319.5(LEMD3):c.457C>T (p.Gln153Ter)", "variationType": "single nucleotide variant", "dateCreated": "2020-06-27T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2020-06-27T00:00:00Z", "accession": "VCV000002752", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["12q14.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 65169583, "stop": 65248355, "displayStart": 65169583, "displayStop": 65248355, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 65563350, "stop": 65642140, "displayStart": 65563350, "displayStop": 65642140, "strand": "+"}]}], "omims": ["607844"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2020-10-19T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=LEMD3"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2020-10-19T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=LEMD3"}, "fullName": "LEM domain containing 3", "geneId": "23592", "hgncId": "HGNC:28887", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["12q14.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 65169871, "stop": 65170080, "displayStart": 65169871, "displayStop": 65170080, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 4630", "geneId": "130008224", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_014319.5(LEMD3):c.457C>T (p.Gln153Ter)", "canonicalSpdi": "NC_000012.12:65170052:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["12q14.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 65170053, "stop": 65170053, "displayStart": 65170053, "displayStop": 65170053, "variantLength": 1, "positionVcf": 65170053, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 65563833, "stop": 65563833, "displayStart": 65563833, "displayStop": 65563833, "variantLength": 1, "positionVcf": 65563833, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "457C-T"}], "proteinChanges": ["Q153*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000012.11:g.65563833C>T", "sequenceAccessionVersion": "NC_000012.11", "sequenceAccession": "NC_000012", "sequenceVersion": 11, "change": "g.65563833C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000012.12:g.65170053C>T", "sequenceAccessionVersion": "NC_000012.12", "sequenceAccession": "NC_000012", "sequenceVersion": 12, "change": "g.65170053C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016210.2:g.5483C>T", "sequenceAccessionVersion": "NG_016210.2", "sequenceAccession": "NG_016210", "sequenceVersion": 2, "change": "g.5483C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001167614.2:c.457C>T", "sequenceAccessionVersion": "NM_001167614.2", "sequenceAccession": "NM_001167614", "sequenceVersion": 2, "change": "c.457C>T"}, "proteinExpression": {"expression": "NP_001161086.1:p.Gln153Ter", "sequenceAccessionVersion": "NP_001161086.1", "sequenceAccession": "NP_001161086", "sequenceVersion": 1, "change": "p.Gln153Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_014319.5:c.457C>T", "sequenceAccessionVersion": "NM_014319.5", "sequenceAccession": "NM_014319", "sequenceVersion": 5, "change": "c.457C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_055134.2:p.Gln153Ter", "sequenceAccessionVersion": "NP_055134.2", "sequenceAccession": "NP_055134", "sequenceVersion": 2, "change": "p.Gln153Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "OMIM", "id": "607844.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "1018165800", "type": "rs"}], "comments": [{"value": "ClinGen staff contributed the HGVS expression for this variant.", "dataSource": "ClinGen", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "17791", "variationId": "2752"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Osteopoikilosis", "db": "MedGen", "id": "C0029455"}], "traitSetId": "705"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2004-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_014319.5(LEMD3):c.457C>T (p.Gln153Ter) AND Osteopoikilosis", "accession": "RCV000002877", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15489854", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Osteopoikilosis (disease)", "type": "Alternate"}, {"value": "Osteopoikilosis", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Osteopoikilosis/5484"}, {"db": "Human Phenotype Ontology", "id": "HP:0010739"}, {"db": "MONDO", "id": "MONDO:0001414"}]}], "attributes": [{"attribute": {"base": {"integerValue": "4158"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "4158"}]}], "xrefs": [{"db": "MedGen", "id": "C0029455"}, {"db": "MONDO", "id": "MONDO:0001414"}, {"db": "Human Phenotype Ontology", "id": "HP:0010739", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "705", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2004-11-01T00:00:00Z", "dateCreated": "2020-06-27T00:00:00Z", "mostRecentSubmission": "2020-06-27T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "607844.0001_OSTEOPOIKILOSIS", "title": "LEMD3, 457C-T_OSTEOPOIKILOSIS"}, "clinvarAccession": {"accession": "SCV000023035", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2020-06-27T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2004-11-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a Belgian individual with osteopoikilosis (see 166700), Hellemans et al. (2004) found a 457C-T transition in the LEMD3 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15489854", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "166700", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "LEMD3"}], "name": {"value": "LEMD3, 457C-T"}, "variantType": "Variation", "otherNames": [{"value": "457C-T", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "607844.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "OSTEOPOIKILOSIS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "23035"}], "traitMappings": [{"medgens": [{"name": "Osteopoikilosis", "cui": "C0029455"}], "clinicalAssertionId": "23035", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "OSTEOPOIKILOSIS", "mappingRef": "Preferred"}]}}
+{"variationId": "273", "variationName": "NM_173546.3(KLHDC8B):c.-158C>T", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000273", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3p21.31"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 49171598, "stop": 49176486, "displayStart": 49171598, "displayStop": 49176486, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 49209017, "stop": 49213918, "displayStart": 49209017, "displayStop": 49213918, "strand": "+"}]}], "omims": ["613169"], "fullName": "kelch domain containing 8B", "geneId": "200942", "hgncId": "HGNC:28557", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_173546.3(KLHDC8B):c.-158C>T", "canonicalSpdi": "NC_000003.12:49171661:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["3p21.31"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 49171662, "stop": 49171662, "displayStart": 49171662, "displayStop": 49171662, "variantLength": 1, "positionVcf": 49171662, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 49209095, "stop": 49209095, "displayStart": 49209095, "displayStop": 49209095, "variantLength": 1, "positionVcf": 49209095, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "KLHDC8B, 5-PRIME UTR, +28C-T"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NG_027702.1:g.5078C>T", "sequenceAccessionVersion": "NG_027702.1", "sequenceAccession": "NG_027702", "sequenceVersion": 1, "change": "g.5078C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_173546.3:c.-158C>T", "sequenceAccessionVersion": "NM_173546.3", "sequenceAccession": "NM_173546", "sequenceVersion": 3, "change": "c.-158C>T", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001623", "type": "5 prime UTR variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000003.11:g.49209095C>T", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.49209095C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.49171662C>T", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.49171662C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}], "xrefs": [{"db": "OMIM", "id": "613169.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "387906223", "type": "rs"}, {"db": "ClinGen", "id": "CA114098"}], "globalMinorAlleleFrequency": {"value": 0.003, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "15312", "variationId": "273"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Classic Hodgkin lymphoma", "db": "MedGen", "id": "C0019829"}], "traitSetId": "81"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2009-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_173546.3(KLHDC8B):c.-158C>T AND Classic Hodgkin lymphoma", "accession": "RCV000000297", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "19706467", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Classic Hodgkin lymphoma", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0009348"}]}, {"value": "Hodgkin lymphoma", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Hodgkin+lymphoma/3444"}, {"db": "Human Phenotype Ontology", "id": "HP:0012189"}]}], "symbols": [{"value": "CHL", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "236000", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "16529"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "16529"}]}], "citations": [{"url": "https://www.nccn.org/professionals/physician_gls/pdf/hodgkins.pdf", "citationText": "NCCN Clinical Practice Guidelines in Oncology (NCCN Guidelines\u00ae) Hodgkin Lymphoma, 2022", "type": "practice guideline", "abbrev": "NCCN, 2022"}], "xrefs": [{"db": "Orphanet", "id": "391"}, {"db": "MedGen", "id": "C0019829"}, {"db": "MONDO", "id": "MONDO:0009348"}, {"db": "OMIM", "id": "236000", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012189", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "81", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-09-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613169.0001_HODGKIN LYMPHOMA", "title": "KLHDC8B, 5-PRIME UTR, +28C-T_HODGKIN LYMPHOMA"}, "clinvarAccession": {"accession": "SCV000020441", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2009-09-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Salipante et al. (2009) analyzed the KLHDC8B gene in 52 probands from families with 2 or more individuals with classic Hodgkin lymphoma (236000) and identified a +28C-T transition at a highly conserved nucleotide in the 5-prime UTR that was present in probands from 3 (5.8%) of 52 families compared with 4 (1.3%) of 307 controls (odds ratio, 4.64; 95% confidence interval, 1.01-21.4). The variant segregated with disease, and individuals heterozygous for the T allele were found to produce lower levels of KLHDC8B than those homozygous for the more common C allele. Studies in transfected HeLA cells demonstrated an approximately 50% reduction in translation of mRNA with the T allele compared to the C allele."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19706467", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "236000", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "KLHDC8B"}], "name": {"value": "KLHDC8B, 5-PRIME UTR, +28C-T"}, "variantType": "Variation", "otherNames": [{"value": "5-PRIME UTR, +28C-T", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613169.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HODGKIN LYMPHOMA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20441"}], "traitMappings": [{"medgens": [{"name": "Classic Hodgkin lymphoma", "cui": "C0019829"}], "clinicalAssertionId": "20441", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HODGKIN LYMPHOMA", "mappingRef": "Preferred"}]}}
+{"variationId": "407", "variationName": "NM_144639.3(UROC1):c.1348C>T (p.Arg450Cys)", "variationType": "single nucleotide variant", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "accession": "VCV000000407", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["3q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 126481166, "stop": 126517773, "displayStart": 126481166, "displayStop": 126517773, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 126200007, "stop": 126236615, "displayStart": 126200007, "displayStop": 126236615, "strand": "-"}]}], "omims": ["613012"], "fullName": "urocanate hydratase 1", "geneId": "131669", "hgncId": "HGNC:26444", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_144639.3(UROC1):c.1348C>T (p.Arg450Cys)", "canonicalSpdi": "NC_000003.12:126498140:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["3q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_3", "accession": "NC_000003.12", "start": 126498141, "stop": 126498141, "displayStart": 126498141, "displayStop": 126498141, "variantLength": 1, "positionVcf": 126498141, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_3", "accession": "NC_000003.11", "start": 126216984, "stop": 126216984, "displayStart": 126216984, "displayStop": 126216984, "variantLength": 1, "positionVcf": 126216984, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["R450C", "R510C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NM_001165974.2:c.1528C>T", "sequenceAccessionVersion": "NM_001165974.2", "sequenceAccession": "NM_001165974", "sequenceVersion": 2, "change": "c.1528C>T"}, "proteinExpression": {"expression": "NP_001159446.1:p.Arg510Cys", "sequenceAccessionVersion": "NP_001159446.1", "sequenceAccession": "NP_001159446", "sequenceVersion": 1, "change": "p.Arg510Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_144639.3:c.1348C>T", "sequenceAccessionVersion": "NM_144639.3", "sequenceAccession": "NM_144639", "sequenceVersion": 3, "change": "c.1348C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_653240.1:p.Arg450Cys", "sequenceAccessionVersion": "NP_653240.1", "sequenceAccession": "NP_653240", "sequenceVersion": 1, "change": "p.Arg450Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000003.12:g.126498141G>A", "sequenceAccessionVersion": "NC_000003.12", "sequenceAccession": "NC_000003", "sequenceVersion": 12, "change": "g.126498141G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016286.1:g.24611C>T", "sequenceAccessionVersion": "NG_016286.1", "sequenceAccession": "NG_016286", "sequenceVersion": 1, "change": "g.24611C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NC_000003.11:g.126216984G>A", "sequenceAccessionVersion": "NC_000003.11", "sequenceAccession": "NC_000003", "sequenceVersion": 11, "change": "g.126216984G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA114248"}, {"db": "OMIM", "id": "613012.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "137852795", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.0002, "source": "1000 Genomes Project", "minorAllele": "A"}, "alleleId": "15446", "variationId": "407"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Urocanate hydratase deficiency", "db": "MedGen", "id": "C0268514"}], "traitSetId": "111"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2009-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_144639.3(UROC1):c.1348C>T (p.Arg450Cys) AND Urocanate hydratase deficiency", "accession": "RCV000000434", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "19304569", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Urocanate hydratase deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Urocanate+hydratase+deficiency/9437"}, {"db": "SNOMED CT", "id": "60952007"}]}, {"value": "Urocanic aciduria", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012237"}, {"db": "MONDO", "id": "MONDO:0010167"}]}, {"value": "Urocanase deficiency", "type": "Alternate"}], "symbols": [{"value": "UROCD", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "276880", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "8539"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "8539"}]}], "xrefs": [{"db": "Orphanet", "id": "210128"}, {"db": "MedGen", "id": "C0268514"}, {"db": "MONDO", "id": "MONDO:0010167"}, {"db": "OMIM", "id": "276880", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012237", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "111", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-06-01T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613012.0001_UROCANASE DEFICIENCY (1 family)", "title": "UROC1, ARG450CYS_UROCANASE DEFICIENCY (1 family)"}, "clinvarAccession": {"accession": "SCV000020582", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-18T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2009-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "familyData": {"numFamilies": 1}}, "observedData": [{"attributes": [{"base": {"value": "In a 19-year-old Spanish woman with urocanic aciduria, mental retardation, and ataxia (UROCD; 276880), Espinos et al. (2009) identified compound heterozygosity for a 1348C-T transition in exon 14 of the UROC1 gene, resulting in an arg450-to-cys (R450C) substitution at a highly conserved residue, and a 209T-C transition in exon 2 (613012.0002), resulting in a leu70to-pro (L70P) substitution in the N-terminal alpha helix. Both mutations were predicted to have a pathologic effect, and enzyme activity was not detectable in R450C urocanase extracts in a bacterial expression system. The unaffected father was heterozygous for R450C mutation, but DNA from the mother was unavailable for testing. Neither mutation was found in 200 ethnically matched control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19304569", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "276880", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "UROC1"}], "name": {"value": "UROC1, ARG450CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG450CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613012.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "UROCANASE DEFICIENCY (1 family)", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20582"}], "traitMappings": [{"medgens": [{"name": "Urocanate hydratase deficiency", "cui": "C0268514"}], "clinicalAssertionId": "20582", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "UROCANASE DEFICIENCY (1 family)", "mappingRef": "Preferred"}]}}
+{"variationId": "221", "variationName": "NM_000027.4(AGA):c.916T>C (p.Cys306Arg)", "variationType": "single nucleotide variant", "dateCreated": "2015-07-12T00:00:00Z", "dateLastUpdated": "2023-12-30T00:00:00Z", "mostRecentSubmission": "2023-12-30T00:00:00Z", "accession": "VCV000000221", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177430774, "stop": 177442437, "displayStart": 177430774, "displayStop": 177442437, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178351927, "stop": 178363656, "displayStart": 178351927, "displayStop": 178363656, "strand": "-"}]}], "omims": ["613228"], "fullName": "aspartylglucosaminidase", "geneId": "175", "hgncId": "HGNC:318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000027.4(AGA):c.916T>C (p.Cys306Arg)", "canonicalSpdi": "NC_000004.12:177433237:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["4q34.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 177433238, "stop": 177433238, "displayStart": 177433238, "displayStop": 177433238, "variantLength": 1, "positionVcf": 177433238, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 178354392, "stop": 178354392, "displayStart": 178354392, "displayStop": 178354392, "variantLength": 1, "positionVcf": 178354392, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["C306R", "C296R"], "hgvsExpressions": [{"proteinExpression": {"expression": "P20933:p.Cys306Arg", "sequenceAccessionVersion": "P20933", "sequenceAccession": "P20933", "change": "p.Cys306Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000004.11:g.178354392A>G", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.178354392A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.177433238A>G", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.177433238A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011845.2:g.14266T>C", "sequenceAccessionVersion": "NG_011845.2", "sequenceAccession": "NG_011845", "sequenceVersion": 2, "change": "g.14266T>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000027.4:c.916T>C", "sequenceAccessionVersion": "NM_000027.4", "sequenceAccession": "NM_000027", "sequenceVersion": 4, "change": "c.916T>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_000018.2:p.Cys306Arg", "sequenceAccessionVersion": "NP_000018.2", "sequenceAccession": "NP_000018", "sequenceVersion": 2, "change": "p.Cys306Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001171988.2:c.886T>C", "sequenceAccessionVersion": "NM_001171988.2", "sequenceAccession": "NM_001171988", "sequenceVersion": 2, "change": "c.886T>C"}, "proteinExpression": {"expression": "NP_001165459.1:p.Cys296Arg", "sequenceAccessionVersion": "NP_001165459.1", "sequenceAccession": "NP_001165459", "sequenceVersion": 1, "change": "p.Cys296Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033655.2:n.902T>C", "sequenceAccessionVersion": "NR_033655.2", "sequenceAccession": "NR_033655", "sequenceVersion": 2, "change": "n.902T>C"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114057"}, {"db": "UniProtKB", "id": "P20933#VAR_005075"}, {"db": "OMIM", "id": "613228.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121964906", "type": "rs"}], "alleleId": "15260", "variationId": "221"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Aspartylglucosaminuria", "db": "MedGen", "id": "C0268225"}], "traitSetId": "72"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2023-04-10T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000027.4(AGA):c.916T>C (p.Cys306Arg) AND Aspartylglucosaminuria", "accession": "RCV000000245", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Aspartylglycosaminuria", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Aspartylglucosaminuria/622"}]}, {"value": "Aspartylglucos-aminuria", "type": "Alternate"}, {"value": "Aspartylglucos-amidase (AGA) deficiency", "type": "Alternate"}, {"value": "AGA deficiency", "type": "Alternate"}, {"value": "Glycosylasparaginase deficiency", "type": "Alternate"}, {"value": "GLYCOASPARAGINASE", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}, {"value": "Aspartylglucosaminuria", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0012068"}, {"db": "MONDO", "id": "MONDO:0008830"}]}], "symbols": [{"value": "AGU", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "5854"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "5854"}]}], "xrefs": [{"db": "Orphanet", "id": "93"}, {"db": "MedGen", "id": "C0268225"}, {"db": "MONDO", "id": "MONDO:0008830"}, {"db": "OMIM", "id": "208400", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0012068", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "72", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2023-04-10T00:00:00Z", "dateCreated": "2015-07-12T00:00:00Z", "mostRecentSubmission": "2023-12-30T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613228.0003_ASPARTYLGLUCOSAMINURIA", "title": "AGA, CYS306ARG_ASPARTYLGLUCOSAMINURIA"}, "clinvarAccession": {"accession": "SCV000020389", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-07-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1991-12-15T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 16-year-old white American patient with aspartylglucosaminuria (AGU; 208400), Ikonen et al. (1991) found by the SSCP method a T-to-C change at nucleotide 916 of the AGA gene, resulting in substitution of arginine for cysteine-306 (C306R)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1722323", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AGA"}], "name": {"value": "AGA, CYS306ARG"}, "variantType": "Variation", "otherNames": [{"value": "CYS306ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613228.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ASPARTYLGLUCOSAMINURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20389"}, {"clinvarSubmissionId": {"localKey": "NM_000027.4:c.916T>C|OMIM:208400", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004212573", "version": 1, "submitterIdentifiers": {"submitterName": "Baylor Genetics", "orgId": "1006", "orgCategory": "laboratory"}, "dateUpdated": "2023-12-30T00:00:00Z", "dateCreated": "2023-12-30T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "dateLastEvaluated": "2023-04-10T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_000027.4:c.916T>C"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "208400", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB13856327"], "id": "7866537"}], "traitMappings": [{"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "7866537", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "208400", "mappingRef": "OMIM"}, {"medgens": [{"name": "Aspartylglucosaminuria", "cui": "C0268225"}], "clinicalAssertionId": "20389", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ASPARTYLGLUCOSAMINURIA", "mappingRef": "Preferred"}]}}
+{"variationId": "1610", "variationName": "NM_024884.3(L2HGDH):c.164G>A (p.Gly55Asp)", "variationType": "single nucleotide variant", "dateCreated": "2017-11-10T00:00:00Z", "dateLastUpdated": "2024-03-17T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "accession": "VCV000001610", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["14q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_14", "accession": "NC_000014.9", "start": 50242434, "stop": 50312229, "displayStart": 50242434, "displayStop": 50312229, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_14", "accession": "NC_000014.8", "start": 50709151, "stop": 50778946, "displayStart": 50709151, "displayStop": 50778946, "strand": "-"}]}], "omims": ["609584"], "fullName": "L-2-hydroxyglutarate dehydrogenase", "geneId": "79944", "hgncId": "HGNC:20499", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_024884.3(L2HGDH):c.164G>A (p.Gly55Asp)", "canonicalSpdi": "NC_000014.9:50302993:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["14q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_14", "accession": "NC_000014.9", "start": 50302994, "stop": 50302994, "displayStart": 50302994, "displayStop": 50302994, "variantLength": 1, "positionVcf": 50302994, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_14", "accession": "NC_000014.8", "start": 50769712, "stop": 50769712, "displayStart": 50769712, "displayStop": 50769712, "variantLength": 1, "positionVcf": 50769712, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "L2HGDH, GLY55ASP"}], "proteinChanges": ["G55D"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q9H9P8:p.Gly55Asp", "sequenceAccessionVersion": "Q9H9P8", "sequenceAccession": "Q9H9P8", "change": "p.Gly55Asp"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000014.8:g.50769712C>T", "sequenceAccessionVersion": "NC_000014.8", "sequenceAccession": "NC_000014", "sequenceVersion": 8, "change": "g.50769712C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000014.9:g.50302994C>T", "sequenceAccessionVersion": "NC_000014.9", "sequenceAccession": "NC_000014", "sequenceVersion": 9, "change": "g.50302994C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008092.1:g.14236G>A", "sequenceAccessionVersion": "NG_008092.1", "sequenceAccession": "NG_008092", "sequenceVersion": 1, "change": "g.14236G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_024884.3:c.164G>A", "sequenceAccessionVersion": "NM_024884.3", "sequenceAccession": "NM_024884", "sequenceVersion": 3, "change": "c.164G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_079160.1:p.Gly55Asp", "sequenceAccessionVersion": "NP_079160.1", "sequenceAccession": "NP_079160", "sequenceVersion": 1, "change": "p.Gly55Asp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_024884.2:c.164G>A", "sequenceAccessionVersion": "NM_024884.2", "sequenceAccession": "NM_024884", "sequenceVersion": 2, "change": "c.164G>A"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA115108"}, {"db": "UniProtKB", "id": "Q9H9P8#VAR_025682"}, {"db": "OMIM", "id": "609584.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118204021", "type": "rs"}], "alleleId": "16649", "variationId": "1610"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "L-2-hydroxyglutaric aciduria", "db": "MedGen", "id": "C1855995"}], "traitSetId": "414"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2004-11-15T00:00:00Z", "submissionCount": 1}}}, "title": "NM_024884.3(L2HGDH):c.164G>A (p.Gly55Asp) AND L-2-hydroxyglutaric aciduria", "accession": "RCV000001677", "version": 4}, {"classifiedConditionList": {"classifiedConditions": [{"value": "L2HGDH-related condition"}], "traitSetId": "90824"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2024-01-30T00:00:00Z", "submissionCount": 1}}}, "title": "NM_024884.3(L2HGDH):c.164G>A (p.Gly55Asp) AND L2HGDH-related condition", "accession": "RCV003398413", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "15385440", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "L2HGDH-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE", "id": "90824", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "L-2-hydroxyglutaric aciduria", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "L-2-hydroxyglutaric+aciduria/4061"}, {"db": "Human Phenotype Ontology", "id": "HP:0040144"}, {"db": "MONDO", "id": "MONDO:0009370"}]}], "symbols": [{"value": "L2HGA", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "236792", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "10472"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10472"}]}], "xrefs": [{"db": "Orphanet", "id": "79314"}, {"db": "MedGen", "id": "C1855995"}, {"db": "MONDO", "id": "MONDO:0009370"}, {"db": "OMIM", "id": "236792", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0040144", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "414", "contributesToAggregateClassification": false}], "dateLastEvaluated": "2024-01-30T00:00:00Z", "dateCreated": "2017-11-10T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "609584.0004_L-2-HYDROXYGLUTARIC ACIDURIA", "title": "L2HGDH, GLY55ASP_L-2-HYDROXYGLUTARIC ACIDURIA"}, "clinvarAccession": {"accession": "SCV000021833", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-11-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2004-11-15T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In members of 3 consanguineous Turkish families with L-2-hydroxyglutaric aciduria (L2HGA; 236792), Topcu et al. (2004) described homozygosity for a 164G-A transition in exon 2 of the L2HGDH gene, which was predicted to result in a substitution of aspartic acid for glycine at residue 55 (G55D)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15385440", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "236792", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "L2HGDH"}], "name": {"value": "L2HGDH, GLY55ASP"}, "variantType": "Variation", "otherNames": [{"value": "GLY55ASP", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "609584.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "L-2-HYDROXYGLUTARIC ACIDURIA", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21833"}, {"clinvarSubmissionId": {"localKey": "37587525|L2HGDH-related condition", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004103622", "version": 2, "submitterIdentifiers": {"submitterName": "PreventionGenetics, part of Exact Sciences", "orgId": "239772", "orgCategory": "laboratory", "orgAbbreviation": "PG"}, "dateUpdated": "2024-03-16T00:00:00Z", "dateCreated": "2023-11-20T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "comments": [{"value": "The L2HGDH c.164G>A variant is predicted to result in the amino acid substitution p.Gly55Asp. This variant was reported in the homozygous state in four individuals from three families; all individuals had biochemically confirmed L-2-Hydroxyglutaric aciduria (Topcu et al. 2004. PubMed ID: 15385440). It was also reported in the compound heterozygous state with a pathogenic frameshift variant in two affected relatives (Sass et al. 2008. PubMed ID: 18415700). This variant has not been reported in a large population database, indicating this variant is rare. This variant is interpreted as likely pathogenic."}], "dateLastEvaluated": "2024-01-30T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "L2HGDH"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_024884.2:c.164G>A"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "L2HGDH-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB13915440", "SUB14299258"], "id": "7685222"}], "traitMappings": [{"medgens": [{"name": "L-2-hydroxyglutaric aciduria", "cui": "C1855995"}], "clinicalAssertionId": "21833", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "L-2-HYDROXYGLUTARIC ACIDURIA", "mappingRef": "Preferred"}, {"medgens": [{"name": "L2HGDH-related condition", "cui": "None"}], "clinicalAssertionId": "7685222", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "L2HGDH-related condition", "mappingRef": "Preferred"}]}}
+{"variationId": "5220", "variationName": "NM_001463.4(FRZB):c.970C>G (p.Arg324Gly)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2024-03-17T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "accession": "VCV000005220", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2q32.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 182833275, "stop": 182866637, "displayStart": 182833275, "displayStop": 182866637, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 183698001, "stop": 183731497, "displayStart": 183698001, "displayStop": 183731497, "strand": "-"}]}], "omims": ["605083"], "fullName": "frizzled related protein", "geneId": "2487", "hgncId": "HGNC:3959", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001463.4(FRZB):c.970C>G (p.Arg324Gly)", "canonicalSpdi": "NC_000002.12:182834856:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2q32.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 182834857, "stop": 182834857, "displayStart": 182834857, "displayStop": 182834857, "variantLength": 1, "positionVcf": 182834857, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 183699584, "stop": 183699584, "displayStart": 183699584, "displayStop": 183699584, "variantLength": 1, "positionVcf": 183699584, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["R324G"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q92765:p.Arg324Gly", "sequenceAccessionVersion": "Q92765", "sequenceAccession": "Q92765", "change": "p.Arg324Gly"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NM_001463.3:c.970C>G", "sequenceAccessionVersion": "NM_001463.3", "sequenceAccession": "NM_001463", "sequenceVersion": 3, "change": "c.970C>G"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000002.11:g.183699584G>C", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.183699584G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.182834857G>C", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.182834857G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_017197.1:g.36915C>G", "sequenceAccessionVersion": "NG_017197.1", "sequenceAccession": "NG_017197", "sequenceVersion": 1, "change": "g.36915C>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001463.4:c.970C>G", "sequenceAccessionVersion": "NM_001463.4", "sequenceAccession": "NM_001463", "sequenceVersion": 4, "change": "c.970C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_001454.2:p.Arg324Gly", "sequenceAccessionVersion": "NP_001454.2", "sequenceAccession": "NP_001454", "sequenceVersion": 2, "change": "p.Arg324Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA117342"}, {"db": "UniProtKB", "id": "Q92765#VAR_014862"}, {"db": "OMIM", "id": "605083.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "7775", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.12839, "source": "1000 Genomes Project", "minorAllele": "C"}, "alleleId": "20259", "variationId": "5220"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Osteoarthritis", "db": "MedGen", "id": "C0029408"}], "traitSetId": "1446"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "risk factor", "dateLastEvaluated": "2004-06-29T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001463.4(FRZB):c.970C>G (p.Arg324Gly) AND Osteoarthritis", "accession": "RCV000005530", "version": 2}, {"classifiedConditionList": {"classifiedConditions": [{"value": "FRZB-related condition"}], "traitSetId": "95598"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Benign", "dateLastEvaluated": "2019-12-03T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001463.4(FRZB):c.970C>G (p.Arg324Gly) AND FRZB-related condition", "accession": "RCV003964794", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Benign", "citations": [{"ids": [{"value": "15210948", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "FRZB-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE", "id": "95598", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Osteoarthritis", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0002758"}, {"db": "MONDO", "id": "MONDO:0005178"}]}, {"value": "OSTEOARTHROSIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}], "symbols": [{"value": "OA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}], "citations": [{"url": "https://www.nice.org.uk/guidance/ng226", "citationText": "UK NICE Guideline NG226, Osteoarthritis in over 16s: diagnosis and management, 2022", "type": "practice guideline", "abbrev": "NICE, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng193", "citationText": "UK NICE Guideline NG193, Chronic pain (primary and secondary) in over 16s: assessment of all chronic pain and management of chronic primary pain, 2021", "type": "practice guideline", "abbrev": "NICE, 2021"}], "xrefs": [{"db": "MedGen", "id": "C0029408"}, {"db": "MONDO", "id": "MONDO:0005178"}, {"db": "Human Phenotype Ontology", "id": "HP:0002758", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0001379", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0002824", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005762", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "1446", "contributesToAggregateClassification": false}], "dateLastEvaluated": "2019-12-03T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605083.0001_OSTEOARTHRITIS SUSCEPTIBILITY 1", "title": "FRZB, ARG324GLY_OSTEOARTHRITIS SUSCEPTIBILITY 1"}, "clinvarAccession": {"accession": "SCV000025712", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "risk factor", "dateLastEvaluated": "2004-06-29T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "By linkage and association studies, Loughlin et al. (2004) found that an arg324-to-gly (R324G) (rs7775) substitution in the FRZB gene was associated with osteoarthritis of the hip in females (see OS1, 165720). The association was confirmed in an independent cohort of female hip cases (p = 0.04)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15210948", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "FRZB"}], "name": {"value": "FRZB, ARG324GLY"}, "variantType": "Variation", "otherNames": [{"value": "ARG324GLY", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605083.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "OSTEOARTHRITIS SUSCEPTIBILITY 1", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25712"}, {"clinvarSubmissionId": {"localKey": "388831|FRZB-related condition", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004778771", "version": 1, "submitterIdentifiers": {"submitterName": "PreventionGenetics, part of Exact Sciences", "orgId": "239772", "orgCategory": "laboratory", "orgAbbreviation": "PG"}, "dateUpdated": "2024-03-16T00:00:00Z", "dateCreated": "2024-03-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Benign", "comments": [{"value": "This variant is classified as benign based on ACMG/AMP sequence variant interpretation guidelines (Richards et al. 2015 PMID: 25741868, with internal and published modifications)."}], "dateLastEvaluated": "2019-12-03T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "FRZB"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001463.3:c.970C>G"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "FRZB-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14299258"], "id": "8862637"}], "traitMappings": [{"medgens": [{"name": "Osteoarthritis susceptibility 1", "cui": "C3887876"}], "clinicalAssertionId": "25712", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "OSTEOARTHRITIS SUSCEPTIBILITY 1", "mappingRef": "Preferred"}, {"medgens": [{"name": "FRZB-related condition", "cui": "None"}], "clinicalAssertionId": "8862637", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FRZB-related condition", "mappingRef": "Preferred"}]}}
+{"variationId": "5221", "variationName": "NM_001463.4(FRZB):c.598C>T (p.Arg200Trp)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2024-03-17T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "accession": "VCV000005221", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2q32.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 182833275, "stop": 182866637, "displayStart": 182833275, "displayStop": 182866637, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 183698001, "stop": 183731497, "displayStart": 183698001, "displayStop": 183731497, "strand": "-"}]}], "omims": ["605083"], "fullName": "frizzled related protein", "geneId": "2487", "hgncId": "HGNC:3959", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001463.4(FRZB):c.598C>T (p.Arg200Trp)", "canonicalSpdi": "NC_000002.12:182838607:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2q32.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 182838608, "stop": 182838608, "displayStart": 182838608, "displayStop": 182838608, "variantLength": 1, "positionVcf": 182838608, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 183703336, "stop": 183703336, "displayStart": 183703336, "displayStop": 183703336, "variantLength": 1, "positionVcf": 183703336, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["R200W"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q92765:p.Arg200Trp", "sequenceAccessionVersion": "Q92765", "sequenceAccession": "Q92765", "change": "p.Arg200Trp"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NM_001463.3:c.598C>T", "sequenceAccessionVersion": "NM_001463.3", "sequenceAccession": "NM_001463", "sequenceVersion": 3, "change": "c.598C>T"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000002.11:g.183703336G>A", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.183703336G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.182838608G>A", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.182838608G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_017197.1:g.33163C>T", "sequenceAccessionVersion": "NG_017197.1", "sequenceAccession": "NG_017197", "sequenceVersion": 1, "change": "g.33163C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001463.4:c.598C>T", "sequenceAccessionVersion": "NM_001463.4", "sequenceAccession": "NM_001463", "sequenceVersion": 4, "change": "c.598C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_001454.2:p.Arg200Trp", "sequenceAccessionVersion": "NP_001454.2", "sequenceAccession": "NP_001454", "sequenceVersion": 2, "change": "p.Arg200Trp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA117344"}, {"db": "UniProtKB", "id": "Q92765#VAR_021411"}, {"db": "OMIM", "id": "605083.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "288326", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.04393, "source": "1000 Genomes Project", "minorAllele": "A"}, "alleleId": "20260", "variationId": "5221"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Osteoarthritis", "db": "MedGen", "id": "C0029408"}], "traitSetId": "1446"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "risk factor", "dateLastEvaluated": "2004-06-29T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001463.4(FRZB):c.598C>T (p.Arg200Trp) AND Osteoarthritis", "accession": "RCV000005531", "version": 2}, {"classifiedConditionList": {"classifiedConditions": [{"value": "FRZB-related condition"}], "traitSetId": "95598"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Benign", "dateLastEvaluated": "2019-12-11T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001463.4(FRZB):c.598C>T (p.Arg200Trp) AND FRZB-related condition", "accession": "RCV003964795", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Benign", "citations": [{"ids": [{"value": "15210948", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "FRZB-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE", "id": "95598", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Osteoarthritis", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0002758"}, {"db": "MONDO", "id": "MONDO:0005178"}]}, {"value": "OSTEOARTHROSIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}], "symbols": [{"value": "OA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}], "citations": [{"url": "https://www.nice.org.uk/guidance/ng226", "citationText": "UK NICE Guideline NG226, Osteoarthritis in over 16s: diagnosis and management, 2022", "type": "practice guideline", "abbrev": "NICE, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng193", "citationText": "UK NICE Guideline NG193, Chronic pain (primary and secondary) in over 16s: assessment of all chronic pain and management of chronic primary pain, 2021", "type": "practice guideline", "abbrev": "NICE, 2021"}], "xrefs": [{"db": "MedGen", "id": "C0029408"}, {"db": "MONDO", "id": "MONDO:0005178"}, {"db": "Human Phenotype Ontology", "id": "HP:0002758", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0001379", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0002824", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0005762", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "1446", "contributesToAggregateClassification": false}], "dateLastEvaluated": "2019-12-11T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2024-03-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "605083.0002_OSTEOARTHRITIS SUSCEPTIBILITY 1", "title": "FRZB, ARG200TRP_OSTEOARTHRITIS SUSCEPTIBILITY 1"}, "clinvarAccession": {"accession": "SCV000025713", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "risk factor", "dateLastEvaluated": "2004-06-29T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "By linkage and association studies, Loughlin et al. (2004) identified a haplotype in the FRZB gene, defined by arg200-to-trp (R200W; 605083.0001) and arg324-to-gly (R324G) (rs288326) substitutions, as a strong risk factor for primary osteoarthritis of the hip in females (see OS1, 165720) (OR = 4.1, p = 0.004)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15210948", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "165720", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "FRZB"}], "name": {"value": "FRZB, ARG200TRP"}, "variantType": "Variation", "otherNames": [{"value": "ARG200TRP", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "605083.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "OSTEOARTHRITIS SUSCEPTIBILITY 1", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "25713"}, {"clinvarSubmissionId": {"localKey": "483393|FRZB-related condition", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004791813", "version": 1, "submitterIdentifiers": {"submitterName": "PreventionGenetics, part of Exact Sciences", "orgId": "239772", "orgCategory": "laboratory", "orgAbbreviation": "PG"}, "dateUpdated": "2024-03-16T00:00:00Z", "dateCreated": "2024-03-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Benign", "comments": [{"value": "This variant is classified as benign based on ACMG/AMP sequence variant interpretation guidelines (Richards et al. 2015 PMID: 25741868, with internal and published modifications)."}], "dateLastEvaluated": "2019-12-11T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "FRZB"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001463.3:c.598C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "FRZB-related condition", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14299258"], "id": "8870178"}], "traitMappings": [{"medgens": [{"name": "FRZB-related condition", "cui": "None"}], "clinicalAssertionId": "8870178", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FRZB-related condition", "mappingRef": "Preferred"}, {"medgens": [{"name": "Osteoarthritis susceptibility 1", "cui": "C3887876"}], "clinicalAssertionId": "25713", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "OSTEOARTHRITIS SUSCEPTIBILITY 1", "mappingRef": "Preferred"}]}}
+{"variationId": "1194", "variationName": "NM_001029871.4(RSPO4):c.98dup (p.Asn34fs)", "variationType": "Duplication", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2024-04-06T00:00:00Z", "mostRecentSubmission": "2024-04-06T00:00:00Z", "accession": "VCV000001194", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 958452, "stop": 1002311, "displayStart": 958452, "displayStop": 1002311, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 939094, "stop": 982906, "displayStart": 939094, "displayStop": 982906, "strand": "-"}]}], "omims": ["610573"], "fullName": "R-spondin 4", "geneId": "343637", "hgncId": "HGNC:16175", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001029871.4(RSPO4):c.98dup (p.Asn34fs)", "canonicalSpdi": "NC_000020.11:968119:CCCCCC:CCCCCCC", "variantTypes": ["Duplication"], "locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 968119, "stop": 968120, "displayStart": 968119, "displayStop": 968120, "variantLength": 1, "positionVcf": 968119, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GC"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 948762, "stop": 948763, "displayStart": 948762, "displayStop": 948763, "variantLength": 1, "positionVcf": 948762, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GC"}]}], "proteinChanges": ["N34fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.948768dup", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.948768dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.968125dup", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.968125dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_013043.1:g.39145dup", "sequenceAccessionVersion": "NG_013043.1", "sequenceAccession": "NG_013043", "sequenceVersion": 1, "change": "g.39145dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001029871.4:c.98dup", "sequenceAccessionVersion": "NM_001029871.4", "sequenceAccession": "NM_001029871", "sequenceVersion": 4, "change": "c.98dup", "maneSelect": true}, "proteinExpression": {"expression": "NP_001025042.2:p.Asn34fs", "sequenceAccessionVersion": "NP_001025042.2", "sequenceAccession": "NP_001025042", "sequenceVersion": 2, "change": "p.Asn34fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001040007.3:c.98dup", "sequenceAccessionVersion": "NM_001040007.3", "sequenceAccession": "NM_001040007", "sequenceVersion": 3, "change": "c.98dup"}, "proteinExpression": {"expression": "NP_001035096.1:p.Asn34fs", "sequenceAccessionVersion": "NP_001035096.1", "sequenceAccession": "NP_001035096", "sequenceVersion": 1, "change": "p.Asn34fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114830"}, {"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}, {"db": "dbSNP", "id": "768138495", "type": "rs"}], "alleleId": "16233", "variationId": "1194"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Anonychia", "db": "MedGen", "id": "C0265998"}], "traitSetId": "316"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2024-03-25T00:00:00Z", "submissionCount": 2}}}, "title": "NM_001029871.4(RSPO4):c.98dup (p.Asn34fs) AND Anonychia", "accession": "RCV000001253", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Uncertain significance", "citations": [{"ids": [{"value": "17186469", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hyponychia congenita", "type": "Alternate"}, {"value": "Anonychia", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Anonychia+Congenita/488"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798"}, {"db": "SNOMED CT", "id": "23610003"}]}, {"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "OMIM", "id": "610573.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0008", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0007", "type": "Allelic variant"}, {"db": "OMIM", "id": "610573.0006", "type": "Allelic variant"}]}, {"value": "ANONYCHIA/HYPONYCHIA CONGENITA", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}, {"value": "ANONYCHIA TOTALIS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "symbols": [{"value": "NDNC4", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "16837"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "16837"}]}], "xrefs": [{"db": "Orphanet", "id": "79143"}, {"db": "Orphanet", "id": "94150"}, {"db": "MedGen", "id": "C0265998"}, {"db": "MONDO", "id": "MONDO:0008798"}, {"db": "OMIM", "id": "206800", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0001798", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0007593", "type": "secondary"}, {"db": "Human Phenotype Ontology", "id": "HP:0008384", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "316", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2024-03-25T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2024-04-06T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "610573.0005_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "title": "RSPO4, 1-BP INS, 92G_NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4"}, "clinvarAccession": {"accession": "SCV000021403", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-09-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2006-12-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the 1-bp insertion in the RSPO4 gene (92_93insG) that was found in compound heterozygous state in affected members of a family with anonychia congenita (NDNC4; 206800) by Bergmann et al. (2006), see 610573.0004."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "17186469", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "RSPO4"}], "name": {"value": "RSPO4, 1-BP INS, 92G"}, "variantType": "Variation", "otherNames": [{"value": "1-BP INS, 92G", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "610573.0005", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21403"}, {"clinvarSubmissionId": {"localKey": "NM_001029871.3:c.98dup|OMIM:206800", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004805979", "version": 1, "submitterIdentifiers": {"submitterName": "Center for Genomic Medicine, King Faisal Specialist Hospital and Research Center", "orgId": "508075", "orgCategory": "other", "orgAbbreviation": "CGM_KFSHRC"}, "dateUpdated": "2024-04-06T00:00:00Z", "dateCreated": "2024-04-06T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Uncertain significance", "dateLastEvaluated": "2024-03-25T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001029871.3:c.98dup"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "206800", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14337453"], "id": "8986334"}], "traitMappings": [{"medgens": [{"name": "Anonychia", "cui": "C0265998"}], "clinicalAssertionId": "8986334", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "206800", "mappingRef": "OMIM"}, {"medgens": [{"name": "Anonychia", "cui": "C0265998"}], "clinicalAssertionId": "21403", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "NAIL DISORDER, NONSYNDROMIC CONGENITAL, 4", "mappingRef": "Preferred"}]}}
+{"variationId": "651", "variationName": "NM_000130.5(F5):c.3481C>T (p.Arg1161Ter)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000651", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169511951, "stop": 169586481, "displayStart": 169511951, "displayStop": 169586481, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169481191, "stop": 169555768, "displayStart": 169481191, "displayStop": 169555768, "strand": "-"}]}], "omims": ["612309"], "fullName": "coagulation factor V", "geneId": "2153", "hgncId": "HGNC:3542", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000130.5(F5):c.3481C>T (p.Arg1161Ter)", "canonicalSpdi": "NC_000001.11:169541608:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169541609, "stop": 169541609, "displayStart": 169541609, "displayStop": 169541609, "variantLength": 1, "positionVcf": 169541609, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169510847, "stop": 169510847, "displayStart": 169510847, "displayStop": 169510847, "variantLength": 1, "positionVcf": 169510847, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "F5, ARG1133TER"}, {"value": "R1133*"}], "proteinChanges": ["R1161*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.169510847G>A", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.169510847G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.169541609G>A", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.169541609G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011806.1:g.49923C>T", "sequenceAccessionVersion": "NG_011806.1", "sequenceAccession": "NG_011806", "sequenceVersion": 1, "change": "g.49923C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000130.5:c.3481C>T", "sequenceAccessionVersion": "NM_000130.5", "sequenceAccession": "NM_000130", "sequenceVersion": 5, "change": "c.3481C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000121.2:p.Arg1161Ter", "sequenceAccessionVersion": "NP_000121.2", "sequenceAccession": "NP_000121", "sequenceVersion": 2, "change": "p.Arg1161Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_553:g.49923C>T", "sequenceAccessionVersion": "LRG_553", "sequenceAccession": "LRG_553"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA251556"}, {"db": "OMIM", "id": "612309.0009", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203909", "type": "rs"}], "alleleId": "15690", "variationId": "651"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Factor V deficiency", "db": "MedGen", "id": "C4317320"}], "traitSetId": "169"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000130.5(F5):c.3481C>T (p.Arg1161Ter) AND Factor V deficiency", "accession": "RCV000000685", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11564077", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Reduced coagulation factor V activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0003225"}]}, {"value": "Factor V deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Factor+V+Deficiency/2709"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "SNOMED CT", "id": "4320005"}]}], "attributes": [{"attribute": {"base": {"value": "Factor V Leiden thrombophilia is characterized by a poor anticoagulant response to activated protein C (APC) and an increased risk for venous thromboembolism (VTE). Deep vein thrombosis (DVT) is the most common VTE, with the legs being the most common site. Thrombosis in unusual locations is less common. Evidence suggests that heterozygosity for the Leiden variant has at most a modest effect on risk for recurrent thrombosis after initial treatment of a first VTE. It is unlikely that factor V Leiden thrombophilia (i.e., heterozygosity or homozygosity for the Leiden variant) is a major factor contributing to pregnancy loss and other adverse pregnancy outcomes (preeclampsia, fetal growth restriction, and placental abruption). The clinical expression of factor V Leiden thrombophilia is influenced by the following: The number of Leiden variants (heterozygotes have a slightly increased risk for venous thrombosis; homozygotes have a much greater thrombotic risk). Coexisting genetic thrombophilic disorders, which have a supra-additive effect on overall thrombotic risk. Acquired thrombophilic disorders: antiphospholipid antibody (APLA) syndrome, paroxysmal nocturnal hemoglobinuria, myeloproliferative disorders, and increased levels of clotting factors. Circumstantial risk factors including but not limited to pregnancy, central venous catheters, travel, combined oral contraceptive (COC) use and other combined contraceptives, oral hormone replacement therapy (HRT), selective estrogen receptor modulators (SERMs), obesity, leg injury, and advancing age."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1368"}]}], "citations": [{"ids": [{"value": "20301542", "source": "PubMed"}, {"value": "NBK1368", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "21150787", "source": "PubMed"}], "type": "general", "abbrev": "EGAPP, 2011"}, {"ids": [{"value": "3111091", "source": "pmc"}], "type": "general", "abbrev": "Retired, ACMG, 2001"}, {"ids": [{"value": "33674767", "source": "PubMed"}], "type": "Suggested Reading", "abbrev": "ACMG, 2021"}, {"ids": [{"value": "35645034", "source": "PubMed"}], "type": "general", "abbrev": "BSH, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng158", "citationText": "UK NICE Guideline NG158, Venous thromboembolic diseases: diagnosis, management and thrombophilia testing, 2023", "type": "practice guideline", "abbrev": "NICE, 2023"}], "xrefs": [{"db": "Orphanet", "id": "326"}, {"db": "MedGen", "id": "C4317320"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "169", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-09-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612309.0009_FACTOR V DEFICIENCY", "title": "F5, ARG1133TER_FACTOR V DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020835", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-09-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 seemingly unrelated southern Italian probands with undetectable plasma levels of factor V antigen and activity (227400), van Wijk et al. (2001) found homozygosity for the factor V Leiden mutation (612309.0001) in cis with a homozygous 3571C-T transition in exon 13 of the F5 gene, resulting in an arg1133-to-ter (R1133X) substitution and a truncated factor V molecule. Haplotype analysis suggested that an ancestral F5 Leiden allele, carrying the R1133X nonsense mutation in cis, diverged into the relatively rare haplotype identified in 1 of the probands by an intragenic crossing-over. Although the deficiency of the coagulation factor was profound, it was associated with only mild bleeding diathesis in 1 proband and the other proband was asymptomatic."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "11564077", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "name": {"value": "F5, ARG1133TER"}, "variantType": "Variation", "otherNames": [{"value": "ARG1133TER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612309.0009", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "FACTOR V DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20835"}], "traitMappings": [{"medgens": [{"name": "Factor V deficiency", "cui": "C4317320"}], "clinicalAssertionId": "20835", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FACTOR V DEFICIENCY", "mappingRef": "Preferred"}]}}
+{"variationId": "654", "variationName": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-08-20T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2019-09-29T00:00:00Z", "accession": "VCV000000654", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169511951, "stop": 169586481, "displayStart": 169511951, "displayStop": 169586481, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169481191, "stop": 169555768, "displayStart": 169481191, "displayStop": 169555768, "strand": "-"}]}], "omims": ["612309"], "fullName": "coagulation factor V", "geneId": "2153", "hgncId": "HGNC:3542", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys)", "canonicalSpdi": "NC_000001.11:169518452:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169518453, "stop": 169518453, "displayStart": 169518453, "displayStop": 169518453, "variantLength": 1, "positionVcf": 169518453, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169487691, "stop": 169487691, "displayStart": 169487691, "displayStop": 169487691, "variantLength": 1, "positionVcf": 169487691, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "F5, ARG2074CYS"}, {"value": "R2074C"}], "proteinChanges": ["R2102C"], "hgvsExpressions": [{"proteinExpression": {"expression": "P12259:p.Arg2102Cys", "sequenceAccessionVersion": "P12259", "sequenceAccession": "P12259", "change": "p.Arg2102Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.169487691G>A", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.169487691G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.169518453G>A", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.169518453G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011806.1:g.73079C>T", "sequenceAccessionVersion": "NG_011806.1", "sequenceAccession": "NG_011806", "sequenceVersion": 1, "change": "g.73079C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000130.5:c.6304C>T", "sequenceAccessionVersion": "NM_000130.5", "sequenceAccession": "NM_000130", "sequenceVersion": 5, "change": "c.6304C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000121.2:p.Arg2102Cys", "sequenceAccessionVersion": "NP_000121.2", "sequenceAccession": "NP_000121", "sequenceVersion": 2, "change": "p.Arg2102Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_553:g.73079C>T", "sequenceAccessionVersion": "LRG_553", "sequenceAccession": "LRG_553"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_553t1:c.6304C>T", "sequenceAccessionVersion": "LRG_553t1", "sequenceAccession": "LRG_553t1"}, "proteinExpression": {"expression": "LRG_553p1:p.Arg2102Cys", "sequenceAccessionVersion": "LRG_553p1", "sequenceAccession": "LRG_553p1", "change": "p.Arg2102Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA251559"}, {"db": "UniProtKB", "id": "P12259#VAR_032701"}, {"db": "OMIM", "id": "612309.0012", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203910", "type": "rs"}], "alleleId": "15693", "variationId": "654"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Factor V deficiency", "db": "MedGen", "id": "C4317320"}], "traitSetId": "169"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2019-02-01T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys) AND Factor V deficiency", "accession": "RCV000000688", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "12393490", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Reduced coagulation factor V activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0003225"}]}, {"value": "Factor V deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Factor+V+Deficiency/2709"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "SNOMED CT", "id": "4320005"}]}], "attributes": [{"attribute": {"base": {"value": "Factor V Leiden thrombophilia is characterized by a poor anticoagulant response to activated protein C (APC) and an increased risk for venous thromboembolism (VTE). Deep vein thrombosis (DVT) is the most common VTE, with the legs being the most common site. Thrombosis in unusual locations is less common. Evidence suggests that heterozygosity for the Leiden variant has at most a modest effect on risk for recurrent thrombosis after initial treatment of a first VTE. It is unlikely that factor V Leiden thrombophilia (i.e., heterozygosity or homozygosity for the Leiden variant) is a major factor contributing to pregnancy loss and other adverse pregnancy outcomes (preeclampsia, fetal growth restriction, and placental abruption). The clinical expression of factor V Leiden thrombophilia is influenced by the following: The number of Leiden variants (heterozygotes have a slightly increased risk for venous thrombosis; homozygotes have a much greater thrombotic risk). Coexisting genetic thrombophilic disorders, which have a supra-additive effect on overall thrombotic risk. Acquired thrombophilic disorders: antiphospholipid antibody (APLA) syndrome, paroxysmal nocturnal hemoglobinuria, myeloproliferative disorders, and increased levels of clotting factors. Circumstantial risk factors including but not limited to pregnancy, central venous catheters, travel, combined oral contraceptive (COC) use and other combined contraceptives, oral hormone replacement therapy (HRT), selective estrogen receptor modulators (SERMs), obesity, leg injury, and advancing age."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1368"}]}], "citations": [{"ids": [{"value": "20301542", "source": "PubMed"}, {"value": "NBK1368", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "21150787", "source": "PubMed"}], "type": "general", "abbrev": "EGAPP, 2011"}, {"ids": [{"value": "3111091", "source": "pmc"}], "type": "general", "abbrev": "Retired, ACMG, 2001"}, {"ids": [{"value": "33674767", "source": "PubMed"}], "type": "Suggested Reading", "abbrev": "ACMG, 2021"}, {"ids": [{"value": "35645034", "source": "PubMed"}], "type": "general", "abbrev": "BSH, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng158", "citationText": "UK NICE Guideline NG158, Venous thromboembolic diseases: diagnosis, management and thrombophilia testing, 2023", "type": "practice guideline", "abbrev": "NICE, 2023"}], "xrefs": [{"db": "Orphanet", "id": "326"}, {"db": "MedGen", "id": "C4317320"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "169", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2019-02-01T00:00:00Z", "dateCreated": "2017-08-20T00:00:00Z", "mostRecentSubmission": "2019-09-29T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612309.0012_FACTOR V DEFICIENCY", "title": "F5, ARG2074CYS_FACTOR V DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020838", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-08-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2003-01-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 22-year-old Italian woman in whom factor V deficiency (227400) was first diagnosed at the age of 10 years after abnormal coagulation screening tests were found preceding an operation for strabismus, Duga et al. (2003) identified a homozygous 6394C-T transition at in exon 23 of the F5 gene, resulting in an arg2074-to-cys (R2074C) change in the C2 domain of the protein. Functional studies showed that this substitution impaired both factor V secretion and its activity. The patient's menstruation was normal and her only bleeding symptom was easy bruising after minor trauma. Her parents, apparently nonconsanguineous, were asymptomatic and had factor V functional and antigen levels typical of heterozygotes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12393490", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "name": {"value": "F5, ARG2074CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG2074CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612309.0012", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "FACTOR V DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20838"}, {"clinvarSubmissionId": {"localKey": "c.6304C>T_227400", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000899835", "version": 1, "submitterIdentifiers": {"submitterName": "NIHR Bioresource Rare Diseases, University of Cambridge", "orgId": "505998", "orgCategory": "consortium", "orgAbbreviation": "NIHR BR RD"}, "dateUpdated": "2019-09-29T00:00:00Z", "dateCreated": "2019-09-29T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "citations": [{"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2019-02-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "ethnicity": "European", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_COMPOUND_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "TGP0330"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_000130.4:c.6304C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyName": "ThromboGenomics", "submissionNames": ["ThromboGenomics"], "id": "1769365"}], "traitMappings": [{"medgens": [{"name": "Factor V deficiency", "cui": "C4317320"}], "clinicalAssertionId": "20838", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FACTOR V DEFICIENCY", "mappingRef": "Preferred"}, {"medgens": [{"name": "Congenital factor V deficiency", "cui": "C0015499"}], "clinicalAssertionId": "1769365", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "227400", "mappingRef": "OMIM"}]}}
+{"variationId": "4159", "variationName": "NM_130806.5(RXFP2):c.664A>C (p.Thr222Pro)", "variationType": "single nucleotide variant", "dateCreated": "2015-08-16T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2024-04-15T00:00:00Z", "accession": "VCV000004159", "version": 5, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["13q13.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_13", "accession": "NC_000013.11", "start": 31739526, "stop": 31803389, "displayStart": 31739526, "displayStop": 31803389, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_13", "accession": "NC_000013.10", "start": 32313678, "stop": 32377008, "displayStart": 32313678, "displayStop": 32377008, "strand": "+"}]}], "omims": ["606655"], "haploinsufficiency": {"value": "No evidence available", "lastEvaluated": "2012-07-06T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=RXFP2"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2012-07-06T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=RXFP2"}, "fullName": "relaxin family peptide receptor 2", "geneId": "122042", "hgncId": "HGNC:17318", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_130806.5(RXFP2):c.664A>C (p.Thr222Pro)", "canonicalSpdi": "NC_000013.11:31777397:A:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["13q13.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_13", "accession": "NC_000013.11", "start": 31777398, "stop": 31777398, "displayStart": 31777398, "displayStop": 31777398, "variantLength": 1, "positionVcf": 31777398, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_13", "accession": "NC_000013.10", "start": 32351535, "stop": 32351535, "displayStart": 32351535, "displayStop": 32351535, "variantLength": 1, "positionVcf": 32351535, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["T222P"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q8WXD0:p.Thr222Pro", "sequenceAccessionVersion": "Q8WXD0", "sequenceAccession": "Q8WXD0", "change": "p.Thr222Pro"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000013.10:g.32351535A>C", "sequenceAccessionVersion": "NC_000013.10", "sequenceAccession": "NC_000013", "sequenceVersion": 10, "change": "g.32351535A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000013.11:g.31777398A>C", "sequenceAccessionVersion": "NC_000013.11", "sequenceAccession": "NC_000013", "sequenceVersion": 11, "change": "g.31777398A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_015819.1:g.42857A>C", "sequenceAccessionVersion": "NG_015819.1", "sequenceAccession": "NG_015819", "sequenceVersion": 1, "change": "g.42857A>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001166058.2:c.664A>C", "sequenceAccessionVersion": "NM_001166058.2", "sequenceAccession": "NM_001166058", "sequenceVersion": 2, "change": "c.664A>C"}, "proteinExpression": {"expression": "NP_001159530.1:p.Thr222Pro", "sequenceAccessionVersion": "NP_001159530.1", "sequenceAccession": "NP_001159530", "sequenceVersion": 1, "change": "p.Thr222Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_130806.5:c.664A>C", "sequenceAccessionVersion": "NM_130806.5", "sequenceAccession": "NM_130806", "sequenceVersion": 5, "change": "c.664A>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_570718.1:p.Thr222Pro", "sequenceAccessionVersion": "NP_570718.1", "sequenceAccession": "NP_570718", "sequenceVersion": 1, "change": "p.Thr222Pro"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA210679"}, {"db": "UniProtKB", "id": "Q8WXD0#VAR_015386"}, {"db": "OMIM", "id": "606655.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121918303", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.0014, "source": "1000 Genomes Project", "minorAllele": "C"}, "alleleId": "19198", "variationId": "4159"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Cryptorchidism", "db": "MedGen", "id": "C0010417"}], "traitSetId": "1141"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2011-08-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_130806.5(RXFP2):c.664A>C (p.Thr222Pro) AND Cryptorchidism", "accession": "RCV000004376", "version": 3}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "C3661900"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely benign", "dateLastEvaluated": "2022-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_130806.5(RXFP2):c.664A>C (p.Thr222Pro) AND not provided", "accession": "RCV003389746", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely benign", "citations": [{"ids": [{"value": "12217959", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "12970298", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "20636340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}, {"value": "none provided", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "C3661900"}]}], "type": "TYPE_DISEASE", "id": "9460", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "undescended testicle", "type": "Alternate"}, {"value": "Cryptorchidism", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0000028"}, {"db": "MONDO", "id": "MONDO:0009047"}]}, {"value": "Cryptorchidism, unilateral or bilateral", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Cryptorchidism%2C+unilateral+or+bilateral/8117"}]}], "attributes": [{"attribute": {"base": {"value": "Cryptorchidism, or failure of testicular descent, is a common human congenital abnormality with a multifactorial etiology that likely reflects the involvement of endocrine, environmental, and hereditary factors. Cryptorchidism can result in infertility and increases risk for testicular tumors. Testicular descent from abdomen to scrotum occurs in 2 distinct phases: the transabdominal phase and the inguinoscrotal phase (summary by Gorlov et al., 2002)."}, "type": "public definition"}, "xrefs": [{"db": "OMIM", "id": "219050", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C0010417"}, {"db": "MONDO", "id": "MONDO:0009047"}, {"db": "OMIM", "id": "219050", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0000028", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0000797", "type": "secondary"}]}], "type": "TYPE_DISEASE", "id": "1141", "contributesToAggregateClassification": false}], "dateLastEvaluated": "2022-11-01T00:00:00Z", "dateCreated": "2015-08-16T00:00:00Z", "mostRecentSubmission": "2024-04-15T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "606655.0001_RECLASSIFIED - VARIANT OF UNKNOWN SIGNIFICANCE", "title": "RXFP2, THR222PRO_RECLASSIFIED - VARIANT OF UNKNOWN SIGNIFICANCE"}, "clinvarAccession": {"accession": "SCV000024548", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-08-16T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Uncertain significance", "dateLastEvaluated": "2011-08-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "This variant, formerly titled CRYPTORCHIDISM (see 219050), has been reclassified based on the findings of Ars et al. (2010)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20636340", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "219050", "type": "MIM"}]}, {"attributes": [{"base": {"value": "By mutation screening of the LGR8 gene on DNA from 60 cryptorchid patients, Gorlov et al. (2002) identified a heterozygous thr222-to-pro (T222P) mutation in the ectodomain in 1 patient. The mutant receptor failed to respond to ligand stimulation, implicating LGR8 in the etiology of some cases of cryptorchidism in humans."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12217959", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "By sequencing the LGR8 and INSL3 (146738) genes in a cohort of 87 patients with corrected cryptorchidism and 80 controls, Ferlin et al. (2003) identified the T222P mutation in LGR8 in 4 patients and 3 mutations in INSL3 (146738.0002-146738.0004) in 4 patients (8 of 87; 9.2%). The authors concluded that INSL3-LGR8 mutations are frequently associated with human cryptorchidism and are maternally inherited."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12970298", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "146738", "type": "MIM"}]}, {"attributes": [{"base": {"value": "Ars et al. (2010) screened for the RXFP2 T222P variant in 577 Spanish men, including 187 with a history of cryptorchidism and 390 controls, and in 550 Italian men, including 199 with a history of cryptorchidism and 351 controls. In the Spanish study population, the T222P variant was present at similar frequency in both cases (3 of 187; 1.6%) and controls (7 of 390; 1.8%). In the Italian study population, the variant was significantly more frequent in cases (9 of 199; 4.5%) than in controls (5 of 351; 1.4%), with an odds ratio of 3.17 (p = 0.031). Ars et al. (2010) concluded that T222P is a frequent variant in the Spanish population with no pathogenic effect, although the variant seemed to confer a mild risk for cryptorchidism in the Italian population. The authors stated that these data exclude a clear-cut cause-effect relationship between the T222P variant and testicular maldescent."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20636340", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "RXFP2"}], "name": {"value": "RXFP2, THR222PRO"}, "variantType": "Variation", "otherNames": [{"value": "THR222PRO", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "606655.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "RECLASSIFIED - VARIANT OF UNKNOWN SIGNIFICANCE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "24548"}, {"clinvarSubmissionId": {"localKey": "134119|MedGen:CN517202", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004132958", "version": 4, "submitterIdentifiers": {"submitterName": "CeGaT Center for Human Genetics Tuebingen", "orgId": "505870", "orgCategory": "laboratory", "orgAbbreviation": "CHGT"}, "dateUpdated": "2024-04-15T00:00:00Z", "dateCreated": "2023-11-20T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely benign", "comments": [{"value": "RXFP2: BP4, BS2"}], "dateLastEvaluated": "2022-11-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "CeGaT Center For Human Genetics Tuebingen Variant Classification Criteria Version 2"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/api/2.0/files/0ynenhfo/cegat_center_for_human_genetics_tuebingen_-_variant_classification_criteria_-_version_2.pdf/?format=attachment"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"genes": [{"symbol": "RXFP2"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_13", "start": 32351535, "stop": 32351535, "variantLength": 1, "referenceAllele": "A", "alternateAllele": "C"}]}}, "traitSet": {"traits": [{"xrefs": [{"db": "MedGen", "id": "CN517202", "type": "CUI"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["2024-04", "SUB13985080", "SUB14102099", "SUB14290090"], "id": "7709681"}], "traitMappings": [{"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "7709681", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "CN517202", "mappingRef": "MedGen"}, {"medgens": [{"name": "Breast-ovarian cancer, familial, susceptibility to, 2", "cui": "C2675520"}], "clinicalAssertionId": "24548", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "RECLASSIFIED - VARIANT OF UNKNOWN SIGNIFICANCE", "mappingRef": "Preferred"}]}}
+{"variationId": "1212", "variationName": "GNAS, 4.7-KB DEL", "variationType": "Deletion", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2024-05-01T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000001212", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20q13.32"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 58839748, "stop": 58911192, "displayStart": 58839748, "displayStop": 58911192, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 57414794, "stop": 57486249, "displayStart": 57414794, "displayStop": 57486249, "strand": "+"}]}], "omims": ["139320"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2021-01-12T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=GNAS"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2021-01-12T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=GNAS"}, "fullName": "GNAS complex locus", "geneId": "2778", "hgncId": "HGNC:4392", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}, {"locations": [{"cytogeneticLocations": ["20q13.32"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 58818918, "stop": 58850902, "displayStart": 58818918, "displayStop": 58850902, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 57393972, "stop": 57425957, "displayStart": 57393972, "displayStop": 57425957, "strand": "-"}]}], "omims": ["610540"], "fullName": "GNAS antisense RNA 1", "geneId": "149775", "hgncId": "HGNC:24872", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_ASSERTED_BUT_NOT_COMPUTED"}], "name": "GNAS, 4.7-KB DEL", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["20q13.2"]}], "otherNames": [{"value": "4.7-KB DEL"}], "xrefs": [{"db": "OMIM", "id": "139320.0031", "type": "Allelic variant"}, {"db": "OMIM", "id": "610540.0001", "type": "Allelic variant"}], "alleleId": "16251", "variationId": "1212"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Pseudohypoparathyroidism type 1B", "db": "MedGen", "id": "C1864100"}], "traitSetId": "321"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2005-01-01T00:00:00Z", "submissionCount": 1}}}, "title": "GNAS, 4.7-KB DEL AND Pseudohypoparathyroidism type 1B", "accession": "RCV000001271", "version": 9}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "15592469", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Pseudohypoparathyroidism Type IB", "type": "Alternate"}, {"value": "Pseudohypoparathyroidism type 1B", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Pseudohypoparathyroidism+type+1B/6036"}, {"db": "MONDO", "id": "MONDO:0011301"}]}, {"value": "PHP IB", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "603233", "type": "MIM"}]}], "symbols": [{"value": "PHP1B", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "603233", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "Disorders of GNAS inactivation include the phenotypes pseudohypoparathyroidism Ia, Ib, and Ic (PHP-Ia, -Ib, -Ic), pseudopseudohypoparathyroidism (PPHP), progressive osseous heteroplasia (POH), and osteoma cutis (OC). PHP-Ia and PHP-Ic are characterized by: End-organ resistance to endocrine hormones including parathyroid hormone (PTH), thyroid-stimulating hormone (TSH), gonadotropins (LH and FSH), growth hormone-releasing hormone (GHRH), and CNS neurotransmitters (leading to obesity and variable degrees of intellectual disability and developmental delay); and The Albright hereditary osteodystrophy (AHO) phenotype (short stature, round facies, and subcutaneous ossifications) and brachydactyly type E (shortening mainly of the 4th and/or 5th metacarpals and metatarsals and distal phalanx of the thumb). Although PHP-Ib is characterized principally by PTH resistance, some individuals also have partial TSH resistance and mild features of AHO (e.g., brachydactyly). PPHP, a more limited form of PHP-Ia, is characterized by various manifestations of the AHO phenotype without the hormone resistance or obesity. POH and OC are even more restricted variants of PPHP: POH consists of dermal ossification beginning in infancy, followed by increasing and extensive bone formation in deep muscle and fascia. OC consists of extra-skeletal ossification that is limited to the dermis and subcutaneous tissues."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK459117"}]}, {"attribute": {"base": {"integerValue": "10680"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10680"}]}], "citations": [{"ids": [{"value": "29072892", "source": "PubMed"}, {"value": "NBK459117", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "94089"}, {"db": "MedGen", "id": "C1864100"}, {"db": "MONDO", "id": "MONDO:0011301"}, {"db": "OMIM", "id": "603233", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "321", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2005-01-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "610540.0001_PSEUDOHYPOPARATHYROIDISM, TYPE IB", "title": "GNASAS, 4.7-KB DEL _PSEUDOHYPOPARATHYROIDISM, TYPE IB"}, "clinvarAccession": {"accession": "SCV000021421", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2005-01-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 unrelated kindreds with pseudohypoparathyroidism type Ib (603233), Bastepe et al. (2005) identified a 4.7-kb deletion that removed the differentially methylated region of the GNAS gene (139320.0031) encompassing the NESP55 region and exons 3 and 4 of the GNAS antisense transcript. When inherited from a female, the deletion abolished all maternal GNAS imprints and derepressed maternally silenced transcripts, suggesting that the deleted region contains a cis-acting element that controls imprinting of the maternal GNAS allele."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "15592469", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "603233", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "GNASAS"}], "name": {"value": "GNASAS, 4.7-KB DEL"}, "variantType": "Variation", "otherNames": [{"value": "4.7-KB DEL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "610540.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "PSEUDOHYPOPARATHYROIDISM, TYPE IB", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "21421"}], "traitMappings": [{"medgens": [{"name": "Pseudohypoparathyroidism type 1B", "cui": "C1864100"}], "clinicalAssertionId": "21421", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "PSEUDOHYPOPARATHYROIDISM, TYPE IB", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/data/records_with_maf.jsonl b/tests/clinvar_data/data/records_with_maf.jsonl
index 1003aad..ac2bf87 100644
--- a/tests/clinvar_data/data/records_with_maf.jsonl
+++ b/tests/clinvar_data/data/records_with_maf.jsonl
@@ -1,2 +1,2 @@
-{"variationId": "442", "variationName": "NM_005581.5(BCAM):c.711C>A (p.Cys237Ter)", "variationType": "single nucleotide variant", "dateCreated": "2018-02-08T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2018-02-08T00:00:00Z", "accession": "VCV000000442", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.32"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 44809059, "stop": 44821421, "displayStart": 44809059, "displayStop": 44821421, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 45312315, "stop": 45324677, "displayStart": 45312315, "displayStop": 45324677, "strand": "+"}]}], "omims": ["612773"], "fullName": "basal cell adhesion molecule (Lutheran blood group)", "geneId": "4059", "hgncId": "HGNC:6722", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_005581.5(BCAM):c.711C>A (p.Cys237Ter)", "canonicalSpdi": "NC_000019.10:44813546:C:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["19q13.32"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 44813547, "stop": 44813547, "displayStart": 44813547, "displayStop": 44813547, "variantLength": 1, "positionVcf": 44813547, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 45316804, "stop": 45316804, "displayStart": 45316804, "displayStop": 45316804, "variantLength": 1, "positionVcf": 45316804, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["C237*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_798:g.9467C>A", "sequenceAccessionVersion": "LRG_798", "sequenceAccession": "LRG_798"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_798t2:c.711C>A", "sequenceAccessionVersion": "LRG_798t2", "sequenceAccession": "LRG_798t2"}, "proteinExpression": {"expression": "LRG_798p2:p.Cys237Ter", "sequenceAccessionVersion": "LRG_798p2", "sequenceAccession": "LRG_798p2", "change": "p.Cys237Ter"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000019.10:g.44813547C>A", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.44813547C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.45316804C>A", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.45316804C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_007480.1:g.9467C>A", "sequenceAccessionVersion": "NG_007480.1", "sequenceAccession": "NG_007480", "sequenceVersion": 1, "change": "g.9467C>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001013257.2:c.711C>A", "sequenceAccessionVersion": "NM_001013257.2", "sequenceAccession": "NM_001013257", "sequenceVersion": 2, "change": "c.711C>A"}, "proteinExpression": {"expression": "NP_001013275.1:p.Cys237Ter", "sequenceAccessionVersion": "NP_001013275.1", "sequenceAccession": "NP_001013275", "sequenceVersion": 1, "change": "p.Cys237Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_005581.5:c.711C>A", "sequenceAccessionVersion": "NM_005581.5", "sequenceAccession": "NM_005581", "sequenceVersion": 5, "change": "c.711C>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_005572.2:p.Cys237Ter", "sequenceAccessionVersion": "NP_005572.2", "sequenceAccession": "NP_005572", "sequenceVersion": 2, "change": "p.Cys237Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114290"}, {"db": "OMIM", "id": "612773.0005", "type": "Allelic variant"}, {"db": "dbSNP", "id": "3810141", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.10004, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "15481", "variationId": "442"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "BLOOD GROUP--LUTHERAN NULL", "db": "MedGen", "id": "C4017284"}], "traitSetId": "125"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2007-03-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_005581.5(BCAM):c.711C>A (p.Cys237Ter) AND BLOOD GROUP--LUTHERAN NULL", "accession": "RCV000000471", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"citationText": "Mallinson, G., Green, C. A., Okubo, Y., Daniels, G. L. The molecular background of recessive Lu(a-b-) phenotype in a Japanese family. Transfusion Med. 7 (Suppl. 1): 18-only, 1997.", "type": "general"}, {"ids": [{"value": "17319831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "BLOOD GROUP--LUTHERAN NULL", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "612773.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "612773.0006", "type": "Allelic variant"}, {"db": "OMIM", "id": "612773.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "612773.0004", "type": "Allelic variant"}]}], "xrefs": [{"db": "MedGen", "id": "C4017284"}]}], "type": "TYPE_DISEASE", "id": "125", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-03-01T00:00:00Z", "dateCreated": "2018-02-08T00:00:00Z", "mostRecentSubmission": "2018-02-08T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612773.0005_BLOOD GROUP--LUTHERAN NULL", "title": "BCAM, CYS237TER_BLOOD GROUP--LUTHERAN NULL"}, "clinvarAccession": {"accession": "SCV000020620", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2018-02-08T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2007-03-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a healthy Japanese man with the Lutheran null blood group phenotype (247420), Mallinson et al. (1997) identified a homozygous 733C-A transversion in exon 6 of the BCAM gene, resulting in a cys237-to-ter (C237X) substitution in the extracellular domain. He was identified through blood donation and had no phenotypic manifestations. His parents and brother were heterozygous for the mutation. Karamatic Crew et al. (2007) stated that the C237X substitution resulted from a 711C-A transversion based on numbering from the translation initiation ATG codon."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"citationText": "Mallinson, G., Green, C. A., Okubo, Y., Daniels, G. L. The molecular background of recessive Lu(a-b-) phenotype in a Japanese family. Transfusion Med. 7 (Suppl. 1): 18-only, 1997."}, {"ids": [{"value": "17319831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "247420", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "BCAM"}], "names": [{"value": "BCAM, CYS237TER"}], "variantType": "Variation", "otherNames": [{"value": "CYS237TER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612773.0005", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "BLOOD GROUP--LUTHERAN NULL", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20620"}], "traitMappings": [{"medgens": [{"name": "BLOOD GROUP--LUTHERAN NULL", "cui": "C4017284"}], "clinicalAssertionId": "20620", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "BLOOD GROUP--LUTHERAN NULL", "mappingRef": "Preferred"}]}}
-{"variationId": "13196", "variationName": "NM_006907.4(PYCR1):c.355C>G (p.Arg119Gly)", "variationType": "single nucleotide variant", "dateCreated": "2015-05-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-05-23T00:00:00Z", "accession": "VCV000013196", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["17q25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_17", "accession": "NC_000017.11", "start": 81932391, "stop": 81937300, "displayStart": 81932391, "displayStop": 81937300, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_17", "accession": "NC_000017.10", "start": 79890266, "stop": 79894967, "displayStart": 79890266, "displayStop": 79894967, "strand": "-"}]}], "omims": ["179035"], "fullName": "pyrroline-5-carboxylate reductase 1", "geneId": "5831", "hgncId": "HGNC:9721", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_006907.4(PYCR1):c.355C>G (p.Arg119Gly)", "canonicalSpdi": "NC_000017.11:81935110:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["17q25.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_17", "accession": "NC_000017.11", "start": 81935111, "stop": 81935111, "displayStart": 81935111, "displayStop": 81935111, "variantLength": 1, "positionVcf": 81935111, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_17", "accession": "NC_000017.10", "start": 79892987, "stop": 79892987, "displayStart": 79892987, "displayStop": 79892987, "variantLength": 1, "positionVcf": 79892987, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["R119G", "R146G"], "hgvsExpressions": [{"proteinExpression": {"expression": "P32322:p.Arg119Gly", "sequenceAccessionVersion": "P32322", "sequenceAccession": "P32322", "change": "p.Arg119Gly"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000017.10:g.79892987G>C", "sequenceAccessionVersion": "NC_000017.10", "sequenceAccession": "NC_000017", "sequenceVersion": 10, "change": "g.79892987G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000017.11:g.81935111G>C", "sequenceAccessionVersion": "NC_000017.11", "sequenceAccession": "NC_000017", "sequenceVersion": 11, "change": "g.81935111G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_023032.1:g.6982C>G", "sequenceAccessionVersion": "NG_023032.1", "sequenceAccession": "NG_023032", "sequenceVersion": 1, "change": "g.6982C>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001282279.2:c.355C>G", "sequenceAccessionVersion": "NM_001282279.2", "sequenceAccession": "NM_001282279", "sequenceVersion": 2, "change": "c.355C>G"}, "proteinExpression": {"expression": "NP_001269208.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001269208.1", "sequenceAccession": "NP_001269208", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001282280.2:c.355C>G", "sequenceAccessionVersion": "NM_001282280.2", "sequenceAccession": "NM_001282280", "sequenceVersion": 2, "change": "c.355C>G"}, "proteinExpression": {"expression": "NP_001269209.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001269209.1", "sequenceAccession": "NP_001269209", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001282281.2:c.436C>G", "sequenceAccessionVersion": "NM_001282281.2", "sequenceAccession": "NM_001282281", "sequenceVersion": 2, "change": "c.436C>G"}, "proteinExpression": {"expression": "NP_001269210.1:p.Arg146Gly", "sequenceAccessionVersion": "NP_001269210.1", "sequenceAccession": "NP_001269210", "sequenceVersion": 1, "change": "p.Arg146Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330523.2:c.355C>G", "sequenceAccessionVersion": "NM_001330523.2", "sequenceAccession": "NM_001330523", "sequenceVersion": 2, "change": "c.355C>G"}, "proteinExpression": {"expression": "NP_001317452.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001317452.1", "sequenceAccession": "NP_001317452", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_006907.4:c.355C>G", "sequenceAccessionVersion": "NM_006907.4", "sequenceAccession": "NM_006907", "sequenceVersion": 4, "change": "c.355C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_008838.2:p.Arg119Gly", "sequenceAccessionVersion": "NP_008838.2", "sequenceAccession": "NP_008838", "sequenceVersion": 2, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_153824.3:c.355C>G", "sequenceAccessionVersion": "NM_153824.3", "sequenceAccession": "NM_153824", "sequenceVersion": 3, "change": "c.355C>G"}, "proteinExpression": {"expression": "NP_722546.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_722546.1", "sequenceAccession": "NP_722546", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA122954"}, {"db": "UniProtKB", "id": "P32322#VAR_059068"}, {"db": "OMIM", "id": "179035.0007", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121918376", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.0002, "source": "1000 Genomes Project", "minorAllele": "A"}, "alleleId": "28235", "variationId": "13196"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Autosomal recessive cutis laxa type 2B", "db": "MedGen", "id": "C2751987"}], "traitSetId": "3587"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2009-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_006907.4(PYCR1):c.355C>G (p.Arg119Gly) AND Autosomal recessive cutis laxa type 2B", "accession": "RCV000014083", "version": 24}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "19648921", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612940", "type": "MIM"}, {"db": "OMIM", "id": "179035.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0006", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0007", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0008", "type": "Allelic variant"}]}, {"value": "CUTIS LAXA WITH PROGEROID FEATURES", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612940", "type": "MIM"}]}, {"value": "Autosomal recessive cutis laxa type 2B", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Autosomal+recessive+cutis+laxa+type+2B/7790"}, {"db": "MONDO", "id": "MONDO:0013051"}]}], "symbols": [{"value": "ARCL2B", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "612940", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "1641"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "1641"}]}, {"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000331788"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000553576"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000569455"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000510761"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000561718"}]}], "xrefs": [{"db": "Orphanet", "id": "357064"}, {"db": "MedGen", "id": "C2751987"}, {"db": "MONDO", "id": "MONDO:0013051"}, {"db": "OMIM", "id": "612940", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "3587", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-09-01T00:00:00Z", "dateCreated": "2015-05-23T00:00:00Z", "mostRecentSubmission": "2015-05-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "179035.0007_CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB", "title": "PYCR1, ARG119GLY_CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB"}, "clinvarAccession": {"accession": "SCV000034331", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2009-09-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the arg119-to-gly (R119G) mutation in the PYCR1 gene that was found in compound heterozygous state in a patient with intrauterine growth retardation, congenital cutis laxa, hernias, osteopenia, and mental retardation (ARCL2B; 612940) by Reversade et al. (2009), see 179035.0006."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19648921", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612940", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "PYCR1"}], "names": [{"value": "PYCR1, ARG119GLY"}], "variantType": "Variation", "otherNames": [{"value": "ARG119GLY", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "179035.0007", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "34331"}], "traitMappings": [{"medgens": [{"name": "Autosomal recessive cutis laxa type 2B", "cui": "C2751987"}], "clinicalAssertionId": "34331", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB", "mappingRef": "Preferred"}]}}
+{"variationId": "442", "variationName": "NM_005581.5(BCAM):c.711C>A (p.Cys237Ter)", "variationType": "single nucleotide variant", "dateCreated": "2018-02-08T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2018-02-08T00:00:00Z", "accession": "VCV000000442", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.32"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 44809059, "stop": 44821421, "displayStart": 44809059, "displayStop": 44821421, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 45312315, "stop": 45324677, "displayStart": 45312315, "displayStop": 45324677, "strand": "+"}]}], "omims": ["612773"], "fullName": "basal cell adhesion molecule (Lutheran blood group)", "geneId": "4059", "hgncId": "HGNC:6722", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_005581.5(BCAM):c.711C>A (p.Cys237Ter)", "canonicalSpdi": "NC_000019.10:44813546:C:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["19q13.32"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 44813547, "stop": 44813547, "displayStart": 44813547, "displayStop": 44813547, "variantLength": 1, "positionVcf": 44813547, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 45316804, "stop": 45316804, "displayStart": 45316804, "displayStop": 45316804, "variantLength": 1, "positionVcf": 45316804, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["C237*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_798:g.9467C>A", "sequenceAccessionVersion": "LRG_798", "sequenceAccession": "LRG_798"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_798t2:c.711C>A", "sequenceAccessionVersion": "LRG_798t2", "sequenceAccession": "LRG_798t2"}, "proteinExpression": {"expression": "LRG_798p2:p.Cys237Ter", "sequenceAccessionVersion": "LRG_798p2", "sequenceAccession": "LRG_798p2", "change": "p.Cys237Ter"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000019.10:g.44813547C>A", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.44813547C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.45316804C>A", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.45316804C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_007480.1:g.9467C>A", "sequenceAccessionVersion": "NG_007480.1", "sequenceAccession": "NG_007480", "sequenceVersion": 1, "change": "g.9467C>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001013257.2:c.711C>A", "sequenceAccessionVersion": "NM_001013257.2", "sequenceAccession": "NM_001013257", "sequenceVersion": 2, "change": "c.711C>A"}, "proteinExpression": {"expression": "NP_001013275.1:p.Cys237Ter", "sequenceAccessionVersion": "NP_001013275.1", "sequenceAccession": "NP_001013275", "sequenceVersion": 1, "change": "p.Cys237Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_005581.5:c.711C>A", "sequenceAccessionVersion": "NM_005581.5", "sequenceAccession": "NM_005581", "sequenceVersion": 5, "change": "c.711C>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_005572.2:p.Cys237Ter", "sequenceAccessionVersion": "NP_005572.2", "sequenceAccession": "NP_005572", "sequenceVersion": 2, "change": "p.Cys237Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA114290"}, {"db": "OMIM", "id": "612773.0005", "type": "Allelic variant"}, {"db": "dbSNP", "id": "3810141", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.10004, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "15481", "variationId": "442"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "BLOOD GROUP--LUTHERAN NULL", "db": "MedGen", "id": "C4017284"}], "traitSetId": "125"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2007-03-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_005581.5(BCAM):c.711C>A (p.Cys237Ter) AND BLOOD GROUP--LUTHERAN NULL", "accession": "RCV000000471", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"citationText": "Mallinson, G., Green, C. A., Okubo, Y., Daniels, G. L. The molecular background of recessive Lu(a-b-) phenotype in a Japanese family. Transfusion Med. 7 (Suppl. 1): 18-only, 1997.", "type": "general"}, {"ids": [{"value": "17319831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "BLOOD GROUP--LUTHERAN NULL", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "612773.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "612773.0006", "type": "Allelic variant"}, {"db": "OMIM", "id": "612773.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "612773.0004", "type": "Allelic variant"}]}], "xrefs": [{"db": "MedGen", "id": "C4017284"}]}], "type": "TYPE_DISEASE", "id": "125", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2007-03-01T00:00:00Z", "dateCreated": "2018-02-08T00:00:00Z", "mostRecentSubmission": "2018-02-08T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612773.0005_BLOOD GROUP--LUTHERAN NULL", "title": "BCAM, CYS237TER_BLOOD GROUP--LUTHERAN NULL"}, "clinvarAccession": {"accession": "SCV000020620", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2018-02-08T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2007-03-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a healthy Japanese man with the Lutheran null blood group phenotype (247420), Mallinson et al. (1997) identified a homozygous 733C-A transversion in exon 6 of the BCAM gene, resulting in a cys237-to-ter (C237X) substitution in the extracellular domain. He was identified through blood donation and had no phenotypic manifestations. His parents and brother were heterozygous for the mutation. Karamatic Crew et al. (2007) stated that the C237X substitution resulted from a 711C-A transversion based on numbering from the translation initiation ATG codon."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"citationText": "Mallinson, G., Green, C. A., Okubo, Y., Daniels, G. L. The molecular background of recessive Lu(a-b-) phenotype in a Japanese family. Transfusion Med. 7 (Suppl. 1): 18-only, 1997."}, {"ids": [{"value": "17319831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "247420", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "BCAM"}], "name": {"value": "BCAM, CYS237TER"}, "variantType": "Variation", "otherNames": [{"value": "CYS237TER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612773.0005", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "BLOOD GROUP--LUTHERAN NULL", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20620"}], "traitMappings": [{"medgens": [{"name": "BLOOD GROUP--LUTHERAN NULL", "cui": "C4017284"}], "clinicalAssertionId": "20620", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "BLOOD GROUP--LUTHERAN NULL", "mappingRef": "Preferred"}]}}
+{"variationId": "13196", "variationName": "NM_006907.4(PYCR1):c.355C>G (p.Arg119Gly)", "variationType": "single nucleotide variant", "dateCreated": "2015-05-23T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-05-23T00:00:00Z", "accession": "VCV000013196", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["17q25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_17", "accession": "NC_000017.11", "start": 81932391, "stop": 81937300, "displayStart": 81932391, "displayStop": 81937300, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_17", "accession": "NC_000017.10", "start": 79890266, "stop": 79894967, "displayStart": 79890266, "displayStop": 79894967, "strand": "-"}]}], "omims": ["179035"], "fullName": "pyrroline-5-carboxylate reductase 1", "geneId": "5831", "hgncId": "HGNC:9721", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_006907.4(PYCR1):c.355C>G (p.Arg119Gly)", "canonicalSpdi": "NC_000017.11:81935110:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["17q25.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_17", "accession": "NC_000017.11", "start": 81935111, "stop": 81935111, "displayStart": 81935111, "displayStop": 81935111, "variantLength": 1, "positionVcf": 81935111, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_17", "accession": "NC_000017.10", "start": 79892987, "stop": 79892987, "displayStart": 79892987, "displayStop": 79892987, "variantLength": 1, "positionVcf": 79892987, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["R119G", "R146G"], "hgvsExpressions": [{"proteinExpression": {"expression": "P32322:p.Arg119Gly", "sequenceAccessionVersion": "P32322", "sequenceAccession": "P32322", "change": "p.Arg119Gly"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000017.10:g.79892987G>C", "sequenceAccessionVersion": "NC_000017.10", "sequenceAccession": "NC_000017", "sequenceVersion": 10, "change": "g.79892987G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000017.11:g.81935111G>C", "sequenceAccessionVersion": "NC_000017.11", "sequenceAccession": "NC_000017", "sequenceVersion": 11, "change": "g.81935111G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_023032.1:g.6982C>G", "sequenceAccessionVersion": "NG_023032.1", "sequenceAccession": "NG_023032", "sequenceVersion": 1, "change": "g.6982C>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001282279.2:c.355C>G", "sequenceAccessionVersion": "NM_001282279.2", "sequenceAccession": "NM_001282279", "sequenceVersion": 2, "change": "c.355C>G"}, "proteinExpression": {"expression": "NP_001269208.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001269208.1", "sequenceAccession": "NP_001269208", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001282280.2:c.355C>G", "sequenceAccessionVersion": "NM_001282280.2", "sequenceAccession": "NM_001282280", "sequenceVersion": 2, "change": "c.355C>G"}, "proteinExpression": {"expression": "NP_001269209.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001269209.1", "sequenceAccession": "NP_001269209", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001282281.2:c.436C>G", "sequenceAccessionVersion": "NM_001282281.2", "sequenceAccession": "NM_001282281", "sequenceVersion": 2, "change": "c.436C>G"}, "proteinExpression": {"expression": "NP_001269210.1:p.Arg146Gly", "sequenceAccessionVersion": "NP_001269210.1", "sequenceAccession": "NP_001269210", "sequenceVersion": 1, "change": "p.Arg146Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001330523.2:c.355C>G", "sequenceAccessionVersion": "NM_001330523.2", "sequenceAccession": "NM_001330523", "sequenceVersion": 2, "change": "c.355C>G"}, "proteinExpression": {"expression": "NP_001317452.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_001317452.1", "sequenceAccession": "NP_001317452", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_006907.4:c.355C>G", "sequenceAccessionVersion": "NM_006907.4", "sequenceAccession": "NM_006907", "sequenceVersion": 4, "change": "c.355C>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_008838.2:p.Arg119Gly", "sequenceAccessionVersion": "NP_008838.2", "sequenceAccession": "NP_008838", "sequenceVersion": 2, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_153824.3:c.355C>G", "sequenceAccessionVersion": "NM_153824.3", "sequenceAccession": "NM_153824", "sequenceVersion": 3, "change": "c.355C>G"}, "proteinExpression": {"expression": "NP_722546.1:p.Arg119Gly", "sequenceAccessionVersion": "NP_722546.1", "sequenceAccession": "NP_722546", "sequenceVersion": 1, "change": "p.Arg119Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA122954"}, {"db": "UniProtKB", "id": "P32322#VAR_059068"}, {"db": "OMIM", "id": "179035.0007", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121918376", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.0002, "source": "1000 Genomes Project", "minorAllele": "A"}, "alleleId": "28235", "variationId": "13196"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Autosomal recessive cutis laxa type 2B", "db": "MedGen", "id": "C2751987"}], "traitSetId": "3587"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2009-09-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_006907.4(PYCR1):c.355C>G (p.Arg119Gly) AND Autosomal recessive cutis laxa type 2B", "accession": "RCV000014083", "version": 24}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "19648921", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612940", "type": "MIM"}, {"db": "OMIM", "id": "179035.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0006", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0007", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "179035.0008", "type": "Allelic variant"}]}, {"value": "CUTIS LAXA WITH PROGEROID FEATURES", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612940", "type": "MIM"}]}, {"value": "Autosomal recessive cutis laxa type 2B", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Autosomal+recessive+cutis+laxa+type+2B/7790"}, {"db": "MONDO", "id": "MONDO:0013051"}]}], "symbols": [{"value": "ARCL2B", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "612940", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "1641"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "1641"}]}, {"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000331788"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000553576"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000569455"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000510761"}, {"db": "Genetic Testing Registry (GTR)", "id": "GTR000561718"}]}], "xrefs": [{"db": "Orphanet", "id": "357064"}, {"db": "MedGen", "id": "C2751987"}, {"db": "MONDO", "id": "MONDO:0013051"}, {"db": "OMIM", "id": "612940", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "3587", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-09-01T00:00:00Z", "dateCreated": "2015-05-23T00:00:00Z", "mostRecentSubmission": "2015-05-23T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "179035.0007_CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB", "title": "PYCR1, ARG119GLY_CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB"}, "clinvarAccession": {"accession": "SCV000034331", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-23T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2009-09-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the arg119-to-gly (R119G) mutation in the PYCR1 gene that was found in compound heterozygous state in a patient with intrauterine growth retardation, congenital cutis laxa, hernias, osteopenia, and mental retardation (ARCL2B; 612940) by Reversade et al. (2009), see 179035.0006."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "19648921", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612940", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "PYCR1"}], "name": {"value": "PYCR1, ARG119GLY"}, "variantType": "Variation", "otherNames": [{"value": "ARG119GLY", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "179035.0007", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "34331"}], "traitMappings": [{"medgens": [{"name": "Autosomal recessive cutis laxa type 2B", "cui": "C2751987"}], "clinicalAssertionId": "34331", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "CUTIS LAXA, AUTOSOMAL RECESSIVE, TYPE IIB", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/data/records_with_maf.xml b/tests/clinvar_data/data/records_with_maf.xml
index 9d12106..2f99a5b 100644
--- a/tests/clinvar_data/data/records_with_maf.xml
+++ b/tests/clinvar_data/data/records_with_maf.xml
@@ -179,7 +179,6 @@
-
current
Homo sapiens
diff --git a/tests/clinvar_data/data/ten_records.jsonl b/tests/clinvar_data/data/ten_records.jsonl
index 34ca9b0..eec7693 100644
--- a/tests/clinvar_data/data/ten_records.jsonl
+++ b/tests/clinvar_data/data/ten_records.jsonl
@@ -1,10 +1,10 @@
-{"variationId": "2", "variationName": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "variationType": "Indel", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "accession": "VCV000000002", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "canonicalSpdi": "NC_000007.14:4781212:GGAT:TGCTGTAAACTGTAACTGTAAA", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4781213, "stop": 4781216, "displayStart": 4781213, "displayStop": 4781216, "variantLength": 22, "positionVcf": 4781213, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4820844, "stop": 4820847, "displayStart": 4820844, "displayStop": 4820847, "variantLength": 22, "positionVcf": 4820844, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}]}], "otherNames": [{"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000007.13:g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001623", "type": "5 prime UTR variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "proteinExpression": {"expression": "LRG_1247p1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.173_176delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.173_176delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA215070"}, {"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704705", "type": "rs"}], "alleleId": "15041", "variationId": "2"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "submissionCount": 2}}}, "title": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer) AND Hereditary spastic paraplegia 48", "accession": "RCV000000012", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0001_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "title": "AP5Z1, 4-BP DEL/22-BP INS, NT80_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE"}, "clinvarAccession": {"accession": "SCV000020155", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 French sibs with autosomal recessive spastic paraplegia-48 (SPG48; 613647), Slabicki et al. (2010) identified a homozygous complex insertion/deletion mutation in exon 2 of the KIAA0415 gene. The mutation comprised a 4-bp deletion (80del4) and a 22-bp insertion (84ins22), resulting in a frameshift and premature stop codon following residue 29. The insertion was found to be an imperfect quadruplication of a sequence, suggesting DNA polymerase slippage during DNA synthesis as the pathogenetic mechanism. The patients presented with progressive spastic paraplegia associated with urinary incontinence from ages 50 and 49 years, respectively. One had a normal cerebral MRI, whereas the other had spinal hyperintensities in the cervical spine. The unaffected parents were not known to be consanguineous, but they originated from 2 neighboring villages. The mutation was not found in 156 Caucasian or 242 North African control chromosomes. Studies of lymphoblastoid cells derived from 1 patient showed increased sensitivity to DNA-damaging drugs. The findings suggested a link between this form of spastic paraplegia, which could be considered a neurodegenerative disease, and defects in DNA repair."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "names": [{"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}], "variantType": "Variation", "otherNames": [{"value": "4-BP DEL/22-BP INS, NT80", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20155"}, {"clinvarSubmissionId": {"localKey": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA|OMIM:613647", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001451119", "version": 1, "submitterIdentifiers": {"submitterName": "Paris Brain Institute, Inserm - ICM", "orgId": "507826", "orgCategory": "laboratory"}, "dateUpdated": "2021-05-16T00:00:00Z", "dateCreated": "2021-05-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "2"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB8526155"], "id": "2865972"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20155", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "2865972", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "613647", "mappingRef": "OMIM"}]}}
-{"variationId": "6", "variationName": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser)", "variationType": "single nucleotide variant", "dateCreated": "2019-02-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-02-04T00:00:00Z", "accession": "VCV000000006", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["11q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_11", "accession": "NC_000011.10", "start": 126269154, "stop": 126278126, "displayStart": 126269154, "displayStop": 126278126, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_11", "accession": "NC_000011.9", "start": 126138934, "stop": 126148026, "displayStart": 126138934, "displayStop": 126148026, "strand": "+"}]}], "omims": ["613622"], "fullName": "FAD dependent oxidoreductase domain containing 1", "geneId": "55572", "hgncId": "HGNC:26927", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser)", "canonicalSpdi": "NC_000011.10:126277516:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["11q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_11", "accession": "NC_000011.10", "start": 126277517, "stop": 126277517, "displayStart": 126277517, "displayStop": 126277517, "variantLength": 1, "positionVcf": 126277517, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_11", "accession": "NC_000011.9", "start": 126147412, "stop": 126147412, "displayStart": 126147412, "displayStop": 126147412, "variantLength": 1, "positionVcf": 126147412, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N430S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q96CU9:p.Asn430Ser", "sequenceAccessionVersion": "Q96CU9", "sequenceAccession": "Q96CU9", "change": "p.Asn430Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000011.10:g.126277517A>G", "sequenceAccessionVersion": "NC_000011.10", "sequenceAccession": "NC_000011", "sequenceVersion": 10, "change": "g.126277517A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000011.9:g.126147412A>G", "sequenceAccessionVersion": "NC_000011.9", "sequenceAccession": "NC_000011", "sequenceVersion": 9, "change": "g.126147412A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NR_037648.2:n.1466A>G", "sequenceAccessionVersion": "NR_037648.2", "sequenceAccession": "NR_037648", "sequenceVersion": 2, "change": "n.1466A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NG_028029.1:g.13478A>G", "sequenceAccessionVersion": "NG_028029.1", "sequenceAccession": "NG_028029", "sequenceVersion": 1, "change": "g.13478A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_017547.4:c.1289A>G", "sequenceAccessionVersion": "NM_017547.4", "sequenceAccession": "NM_017547", "sequenceVersion": 4, "change": "c.1289A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_060017.1:p.Asn430Ser", "sequenceAccessionVersion": "NP_060017.1", "sequenceAccession": "NP_060017", "sequenceVersion": 1, "change": "p.Asn430Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_037647.2:n.1121A>G", "sequenceAccessionVersion": "NR_037647.2", "sequenceAccession": "NR_037647", "sequenceVersion": 2, "change": "n.1121A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113794"}, {"db": "UniProtKB", "id": "Q96CU9#VAR_064571"}, {"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267606830", "type": "rs"}], "alleleId": "15045", "variationId": "6"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Mitochondrial complex 1 deficiency, nuclear type 19", "db": "MedGen", "id": "C4748791"}], "traitSetId": "45335"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-10-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser) AND Mitochondrial complex 1 deficiency, nuclear type 19", "accession": "RCV000000016", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20818383", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Mitochondrial complex 1 deficiency, nuclear type 19", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0032624"}]}, {"value": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}, {"db": "OMIM", "id": "613622.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613622.0003", "type": "Allelic variant"}]}], "symbols": [{"value": "MC1DN19", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C4748791"}, {"db": "MONDO", "id": "MONDO:0032624"}, {"db": "OMIM", "id": "618241", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "45335", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-10-01T00:00:00Z", "dateCreated": "2019-02-04T00:00:00Z", "mostRecentSubmission": "2019-02-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613622.0002_MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "title": "FOXRED1, ASN430SER_MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19"}, "clinvarAccession": {"accession": "SCV000020159", "version": 5, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-02-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-10-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the asn430-to-ser (N430S) mutation in the FOXRED1 gene that was found in compound heterozygous state in a patient with mitochondrial complex I deficiency nuclear type 19 (MC1DN19; 618241) manifesting as Leigh syndrome (see 252010), by Calvo et al. (2010), see 613622.0001."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20818383", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}, {"db": "OMIM", "id": "252010", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "FOXRED1"}], "names": [{"value": "FOXRED1, ASN430SER"}], "variantType": "Variation", "otherNames": [{"value": "ASN430SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20159"}], "traitMappings": [{"medgens": [{"name": "Mitochondrial complex 1 deficiency, nuclear type 19", "cui": "C4748791"}], "clinicalAssertionId": "20159", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "mappingRef": "Preferred"}]}}
-{"variationId": "3", "variationName": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs)", "variationType": "Deletion", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-01-30T00:00:00Z", "accession": "VCV000000003", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs)", "canonicalSpdi": "NC_000007.14:4787729:CTGCTGGACCTGCCCTGCT:CTGCT", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4787730, "stop": 4787743, "displayStart": 4787730, "displayStop": 4787743, "variantLength": 14, "positionVcf": 4787729, "referenceAlleleVcf": "GCTGCTGGACCTGCC", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4827361, "stop": 4827374, "displayStart": 4827361, "displayStop": 4827374, "variantLength": 14, "positionVcf": 4827360, "referenceAlleleVcf": "GCTGCTGGACCTGCC", "alternateAlleleVcf": "G"}]}], "otherNames": [{"value": "AP5Z1, 14-BP DEL, NT1413"}], "proteinChanges": ["L317fs", "L473fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_1247:g.17105_17118del", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.17105_17118del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.1413_1426del", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.1413_1426del"}, "proteinExpression": {"expression": "LRG_1247p1:p.Leu473fs", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Leu473fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.945_958del", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.945_958del"}, "proteinExpression": {"expression": "NP_001351787.1:p.Leu317fs", "sequenceAccessionVersion": "NP_001351787.1", "sequenceAccession": "NP_001351787", "sequenceVersion": 1, "change": "p.Leu317fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.1413_1426del", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.1413_1426del", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Leu473fs", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Leu473fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.1544_1557del", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.1544_1557del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.13:g.4827366_4827379del", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4827366_4827379del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4787735_4787748del", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4787735_4787748del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.17105_17118del", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.17105_17118del"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "dbSNP", "id": "397704709", "type": "rs"}, {"db": "ClinGen", "id": "CA215072"}, {"db": "OMIM", "id": "613653.0002", "type": "Allelic variant"}], "alleleId": "15042", "variationId": "3"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z", "submissionCount": 1}}}, "title": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs) AND Hereditary spastic paraplegia 48", "accession": "RCV000000013", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-06-29T00:00:00Z", "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2017-01-30T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0002_SPASTIC PARAPLEGIA 48", "title": "AP5Z1, 14-BP DEL, NT1413_SPASTIC PARAPLEGIA 48"}, "clinvarAccession": {"accession": "SCV000020156", "version": 5, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a patient with sporadic SPG48 (613647), Slabicki et al. (2010) identified a heterozygous 14-bp deletion (1413del14) in the KIAA0415 gene, resulting in a frameshift and premature termination following residue 56. No family members were available for study, and no copy number variations were found on chromosome 7, but a second small change affecting the KIAA0415 gene could not be completely excluded. The mutation was not found in 158 Caucasian or 84 North African control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "names": [{"value": "AP5Z1, 14-BP DEL, NT1413"}], "variantType": "Variation", "otherNames": [{"value": "14-BP DEL, NT1413", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20156"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20156", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48", "mappingRef": "Preferred"}]}}
-{"variationId": "26", "variationName": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter)", "variationType": "Duplication", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "accession": "VCV000000026", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25294743, "stop": 25390835, "displayStart": 25294743, "displayStop": 25390835, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25275378, "stop": 25371617, "displayStart": 25275378, "displayStop": 25371617, "strand": "-"}]}], "omims": ["613599"], "fullName": "abhydrolase domain containing 12, lysophospholipase", "geneId": "26090", "hgncId": "HGNC:15868", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter)", "canonicalSpdi": "NC_000020.11:25307980:GCTCTTAGCT:GCTCTTAGCTCTTAGCT", "variantTypes": ["Duplication"], "locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25307980, "stop": 25307981, "displayStart": 25307980, "displayStop": 25307981, "variantLength": 7, "positionVcf": 25307980, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GGCTCTTA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25288616, "stop": 25288617, "displayStart": 25288616, "displayStop": 25288617, "variantLength": 7, "positionVcf": 25288616, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GGCTCTTA"}]}], "proteinChanges": ["H285*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.25288620_25288626dup", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.25288620_25288626dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25307984_25307990dup", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25307984_25307990dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028119.1:g.87996_88002dup", "sequenceAccessionVersion": "NG_028119.1", "sequenceAccession": "NG_028119", "sequenceVersion": 1, "change": "g.87996_88002dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001042472.3:c.846_852dup", "sequenceAccessionVersion": "NM_001042472.3", "sequenceAccession": "NM_001042472", "sequenceVersion": 3, "change": "c.846_852dup", "maneSelect": true}, "proteinExpression": {"expression": "NP_001035937.1:p.His285Ter", "sequenceAccessionVersion": "NP_001035937.1", "sequenceAccession": "NP_001035937", "sequenceVersion": 1, "change": "p.His285Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_015600.5:c.846_852dup", "sequenceAccessionVersion": "NM_015600.5", "sequenceAccession": "NM_015600", "sequenceVersion": 5, "change": "c.846_852dup"}, "proteinExpression": {"expression": "NP_056415.1:p.His285Ter", "sequenceAccessionVersion": "NP_056415.1", "sequenceAccession": "NP_056415", "sequenceVersion": 1, "change": "p.His285Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113810"}, {"db": "OMIM", "id": "613599.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704714", "type": "rs"}], "alleleId": "15065", "variationId": "26"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "PHARC syndrome", "db": "MedGen", "id": "C2675204"}], "traitSetId": "17"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter) AND PHARC syndrome", "accession": "RCV000000043", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "PHARC syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0012984"}]}, {"value": "Polyneuropathy-hearing loss-ataxia-retinitis pigmentosa-cataract syndrome", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "171848"}]}, {"value": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Polyneuropathy%2C+hearing+loss%2C+ataxia%2C+retinitis+pigmentosa%2C+and+cataract/9132"}]}], "symbols": [{"value": "PHARC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "171848"}, {"db": "MedGen", "id": "C2675204"}, {"db": "MONDO", "id": "MONDO:0012984"}, {"db": "OMIM", "id": "612674", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "17", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613599.0003_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "title": "ABHD12, 7-BP DUP, NT846_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT"}, "clinvarAccession": {"accession": "SCV000020186", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-18T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 7 patients from 4 Algerian families with polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract (PHARC; 612674), Fiskerstrand et al. (2010) identified a homozygous 7-bp duplication in exon 9 of the ABHD12 gene (846_852dupTAAGAGC), resulting in a premature stop codon at residue 285. The patients ranged in age from 10 to 44 years. The older individuals were more severely affected. All patients had some evidence of a polyneuropathy, with hyporeflexia, pes cavus, and/or sensory loss, and most had gait ataxia with onset in the childhood. Four of the older patients had hearing loss, but only 1 had retinitis pigmentosa and cataract. Other common features included extensor plantar responses and cerebellar atrophy."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ABHD12"}], "names": [{"value": "ABHD12, 7-BP DUP, NT846"}], "variantType": "Variation", "otherNames": [{"value": "7-BP DUP, NT846", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613599.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20186"}], "traitMappings": [{"medgens": [{"name": "PHARC syndrome", "cui": "C2675204"}], "clinicalAssertionId": "20186", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "mappingRef": "Preferred"}]}}
-{"variationId": "32", "variationName": "NM_138413.4(HOGA1):c.700+4G>T", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000032", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["10q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_10", "accession": "NC_000010.11", "start": 97584389, "stop": 97612802, "displayStart": 97584389, "displayStop": 97612802, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_10", "accession": "NC_000010.10", "start": 99344101, "stop": 99372558, "displayStart": 99344101, "displayStop": 99372558, "strand": "+"}]}], "omims": ["613597"], "fullName": "4-hydroxy-2-oxoglutarate aldolase 1", "geneId": "112817", "hgncId": "HGNC:25155", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_138413.4(HOGA1):c.700+4G>T", "canonicalSpdi": "NC_000010.11:97600166:G:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["10q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_10", "accession": "NC_000010.11", "start": 97600167, "stop": 97600167, "displayStart": 97600167, "displayStop": 97600167, "variantLength": 1, "positionVcf": 97600167, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_10", "accession": "NC_000010.10", "start": 99359924, "stop": 99359924, "displayStart": 99359924, "displayStop": 99359924, "variantLength": 1, "positionVcf": 99359924, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "IVS, G-T, +4"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000010.10:g.99359924G>T", "sequenceAccessionVersion": "NC_000010.10", "sequenceAccession": "NC_000010", "sequenceVersion": 10, "change": "g.99359924G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000010.11:g.97600167G>T", "sequenceAccessionVersion": "NC_000010.11", "sequenceAccession": "NC_000010", "sequenceVersion": 11, "change": "g.97600167G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_027922.1:g.20823G>T", "sequenceAccessionVersion": "NG_027922.1", "sequenceAccession": "NG_027922", "sequenceVersion": 1, "change": "g.20823G>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_138413.4:c.700+4G>T", "sequenceAccessionVersion": "NM_138413.4", "sequenceAccession": "NM_138413", "sequenceVersion": 4, "change": "c.700+4G>T", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001134670.2:c.212-1690G>T", "sequenceAccessionVersion": "NM_001134670.2", "sequenceAccession": "NM_001134670", "sequenceVersion": 2, "change": "c.212-1690G>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "LOVD 3", "id": "HOGA1_000005"}, {"db": "OMIM", "id": "613597.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "2041105506", "type": "rs"}], "alleleId": "15071", "variationId": "32"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Primary hyperoxaluria type 3", "db": "MedGen", "id": "C3150878"}], "traitSetId": "19"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_138413.4(HOGA1):c.700+4G>T AND Primary hyperoxaluria type 3", "accession": "RCV000000049", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797690", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Primary hyperoxaluria type 3", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013327"}]}, {"value": "PH III", "type": "Alternate"}, {"value": "Primary hyperoxaluria, type III", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+Hyperoxaluria+Type+3/8596"}]}], "symbols": [{"value": "HP3", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613616", "type": "MIM"}]}, {"value": "HOGA1", "type": "Alternate"}, {"value": "PH3", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000561373"}]}, {"attribute": {"base": {"integerValue": "10738"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10738"}]}], "citations": [{"ids": [{"value": "26401545", "source": "PubMed"}, {"value": "NBK316514", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "416"}, {"db": "Orphanet", "id": "93600"}, {"db": "MedGen", "id": "C3150878"}, {"db": "MONDO", "id": "MONDO:0013327"}, {"db": "OMIM", "id": "613616", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "19", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613597.0004_HYPEROXALURIA, PRIMARY, TYPE III", "title": "HOGA1, IVS, G-T, +4_HYPEROXALURIA, PRIMARY, TYPE III"}, "clinvarAccession": {"accession": "SCV000020192", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 24-year-old woman from a European American family with calcium oxalate nephrolithiasis (HP3; 613616), Belostotsky et al. (2010) identified compound heterozygosity for an intronic G-to-T transversion (701+4G-T) in the DHDPSL gene, predicted to result in insertion of 17 amino acid residues, and glu315del (613597.0001). The unaffected parents were each heterozygous for 1 of the mutations, neither of which was found in 226 chromosomes from European American individuals."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797690", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613616", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "HOGA1"}], "names": [{"value": "HOGA1, IVS, G-T, +4"}], "variantType": "Variation", "otherNames": [{"value": "IVS, G-T, +4", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613597.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HYPEROXALURIA, PRIMARY, TYPE III", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20192"}], "traitMappings": [{"medgens": [{"name": "Primary hyperoxaluria type 3", "cui": "C3150878"}], "clinicalAssertionId": "20192", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HYPEROXALURIA, PRIMARY, TYPE III", "mappingRef": "Preferred"}]}}
-{"variationId": "42", "variationName": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser)", "variationType": "single nucleotide variant", "dateCreated": "2019-03-10T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-03-10T00:00:00Z", "accession": "VCV000000042", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36054897, "stop": 36111145, "displayStart": 36054897, "displayStop": 36111145, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36545782, "stop": 36596011, "displayStart": 36545782, "displayStop": 36596011, "strand": "+"}]}], "omims": ["613583"], "fullName": "WD repeat domain 62", "geneId": "284403", "hgncId": "HGNC:24502", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser)", "canonicalSpdi": "NC_000019.10:36067414:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36067415, "stop": 36067415, "displayStart": 36067415, "displayStop": 36067415, "variantLength": 1, "positionVcf": 36067415, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36558317, "stop": 36558317, "displayStart": 36558317, "displayStop": 36558317, "variantLength": 1, "positionVcf": 36558317, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["W224S"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000019.10:g.36067415G>C", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.36067415G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.36558317G>C", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.36558317G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_028101.1:g.17535G>C", "sequenceAccessionVersion": "NG_028101.1", "sequenceAccession": "NG_028101", "sequenceVersion": 1, "change": "g.17535G>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001083961.2:c.671G>C", "sequenceAccessionVersion": "NM_001083961.2", "sequenceAccession": "NM_001083961", "sequenceVersion": 2, "change": "c.671G>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_001077430.1:p.Trp224Ser", "sequenceAccessionVersion": "NP_001077430.1", "sequenceAccession": "NP_001077430", "sequenceVersion": 1, "change": "p.Trp224Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_173636.5:c.671G>C", "sequenceAccessionVersion": "NM_173636.5", "sequenceAccession": "NM_173636", "sequenceVersion": 5, "change": "c.671G>C"}, "proteinExpression": {"expression": "NP_775907.4:p.Trp224Ser", "sequenceAccessionVersion": "NP_775907.4", "sequenceAccession": "NP_775907", "sequenceVersion": 4, "change": "p.Trp224Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "O43379:p.Trp224Ser", "sequenceAccessionVersion": "O43379", "sequenceAccession": "O43379", "change": "p.Trp224Ser"}, "type": "HGVS_TYPE_PROTEIN"}], "xrefs": [{"db": "ClinGen", "id": "CA251361"}, {"db": "UniProtKB", "id": "O43379#VAR_063702"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267607176", "type": "rs"}], "alleleId": "15081", "variationId": "42"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "db": "MedGen", "id": "C1858535"}], "traitSetId": "7167"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser) AND Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "accession": "RCV000000059", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613583.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0009", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0010", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0013", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0012", "type": "Allelic variant"}]}, {"value": "Primary autosomal recessive microcephaly 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+autosomal+recessive+microcephaly+2/9156"}]}, {"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0011435"}]}], "symbols": [{"value": "MCPH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "In WDR62 primary microcephaly (WDR62-MCPH), microcephaly (occipitofrontal circumference [OFC] = -2 SD) is usually present at birth, but in some instances becomes evident later in the first year of life. Growth is otherwise normal. Except for brain malformations in most affected individuals, no other congenital malformations are observed. Central nervous system involvement can include delayed motor development, mild-to-severe intellectual disability (ID), behavior problems, epilepsy, spasticity, and ataxia."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK578067"}]}], "citations": [{"ids": [{"value": "35188728", "source": "PubMed"}, {"value": "NBK578067", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "2512"}, {"db": "MedGen", "id": "C1858535"}, {"db": "MONDO", "id": "MONDO:0011435"}, {"db": "OMIM", "id": "604317", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7167", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-09T00:00:00Z", "dateCreated": "2019-03-10T00:00:00Z", "mostRecentSubmission": "2019-03-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613583.0003_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "title": "WDR62, TRP224SER_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS"}, "clinvarAccession": {"accession": "SCV000020202", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-03-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 sibs and their cousin with microcephaly-2 and cortical malformations (MCPH2; 604317), Bilguvar et al. (2010) identified homozygosity for a missense mutation in the WDR62 gene, a G-to-C transversion in exon 6 that converted tryptophan to serine at codon 224 (W224S). All parents were heterozygous for the mutation, which was not identified in 1,290 Turkish and 1,500 Caucasian control chromosomes. Tryptophan-224 was invariant in all species examined from human to zebrafish and lamprey. The proband was a 6-year, 5-month-old boy who presented at 2 years of age with hyperactivity, seizures, and inability to sleep. He experienced 4 to 8 seizures per day and had microcephaly, micrognathia, and severe mental retardation, and could ambulate only with assistance. The sibs were cousins of the proband. One was an 8-year, 7-month-old female who presented at age 3 with seizures. She was microcephalic, hyperactive, and had dysconjugate gaze. She was able to walk independently and had no obvious dysmorphic features but had moderate mental retardation. Her brother was 12 years, 11 months old. He had seizures, self-mutilating behavior, and severe mental retardation, but could ambulate independently."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "WDR62"}], "names": [{"value": "WDR62, TRP224SER"}], "variantType": "Variation", "otherNames": [{"value": "TRP224SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20202"}], "traitMappings": [{"medgens": [{"name": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "cui": "C1858535"}], "clinicalAssertionId": "20202", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "mappingRef": "Preferred"}]}}
-{"variationId": "40", "variationName": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs)", "variationType": "Deletion", "dateCreated": "2015-09-17T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-09-17T00:00:00Z", "accession": "VCV000000040", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36054897, "stop": 36111145, "displayStart": 36054897, "displayStop": 36111145, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36545782, "stop": 36596011, "displayStart": 36545782, "displayStop": 36596011, "strand": "+"}]}], "omims": ["613583"], "fullName": "WD repeat domain 62", "geneId": "284403", "hgncId": "HGNC:24502", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs)", "canonicalSpdi": "NC_000019.10:36104568:TGCC:", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36104569, "stop": 36104572, "displayStart": 36104569, "displayStop": 36104572, "variantLength": 4, "positionVcf": 36104568, "referenceAlleleVcf": "GTGCC", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36595471, "stop": 36595474, "displayStart": 36595471, "displayStop": 36595474, "variantLength": 4, "positionVcf": 36595470, "referenceAlleleVcf": "GTGCC", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["V1397fs", "V1402fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NG_028101.1:g.54689_54692del", "sequenceAccessionVersion": "NG_028101.1", "sequenceAccession": "NG_028101", "sequenceVersion": 1, "change": "g.54689_54692del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001083961.2:c.4205_4208del", "sequenceAccessionVersion": "NM_001083961.2", "sequenceAccession": "NM_001083961", "sequenceVersion": 2, "change": "c.4205_4208del", "maneSelect": true}, "proteinExpression": {"expression": "NP_001077430.1:p.Val1402fs", "sequenceAccessionVersion": "NP_001077430.1", "sequenceAccession": "NP_001077430", "sequenceVersion": 1, "change": "p.Val1402fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_173636.5:c.4190_4193del", "sequenceAccessionVersion": "NM_173636.5", "sequenceAccession": "NM_173636", "sequenceVersion": 5, "change": "c.4190_4193del"}, "proteinExpression": {"expression": "NP_775907.4:p.Val1397fs", "sequenceAccessionVersion": "NP_775907.4", "sequenceAccession": "NP_775907", "sequenceVersion": 4, "change": "p.Val1397fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000019.10:g.36104569_36104572del", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.36104569_36104572del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.36595471_36595474del", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.36595471_36595474del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA251360"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704721", "type": "rs"}], "alleleId": "15079", "variationId": "40"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "db": "MedGen", "id": "C1858535"}], "traitSetId": "7167"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs) AND Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "accession": "RCV000000057", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613583.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0009", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0010", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0013", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0012", "type": "Allelic variant"}]}, {"value": "Primary autosomal recessive microcephaly 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+autosomal+recessive+microcephaly+2/9156"}]}, {"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0011435"}]}], "symbols": [{"value": "MCPH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "In WDR62 primary microcephaly (WDR62-MCPH), microcephaly (occipitofrontal circumference [OFC] = -2 SD) is usually present at birth, but in some instances becomes evident later in the first year of life. Growth is otherwise normal. Except for brain malformations in most affected individuals, no other congenital malformations are observed. Central nervous system involvement can include delayed motor development, mild-to-severe intellectual disability (ID), behavior problems, epilepsy, spasticity, and ataxia."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK578067"}]}], "citations": [{"ids": [{"value": "35188728", "source": "PubMed"}, {"value": "NBK578067", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "2512"}, {"db": "MedGen", "id": "C1858535"}, {"db": "MONDO", "id": "MONDO:0011435"}, {"db": "OMIM", "id": "604317", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7167", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-09T00:00:00Z", "dateCreated": "2015-09-17T00:00:00Z", "mostRecentSubmission": "2015-09-17T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613583.0001_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "title": "WDR62, 4-BP DEL, TGCC_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS"}, "clinvarAccession": {"accession": "SCV000020200", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-09-17T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 sibs with autosomal recessive microcephaly-2 and cortical malformations (MCPH2; 604317) and in an affected child from another family, all from consanguineous Turkish unions, Bilguvar et al. (2010) identified homozygosity for a 4-basepair deletion (TGCC) in exon 31 of the WDR62 gene. This deletion occurred at codon 1402 and resulted in a frameshift and premature termination (Val1402GlyfsTer12). The mutation was heterozygous in all parents. It was not observed in 1,290 Turkish control chromosomes. The index patient was a 4-year, 6-month-old female who initially presented at 4 months of age with small head size. At 2 years, 3 months she showed micrognathia and a bulbous nose, and suffered from severe mental retardation. She had had no seizures. MRI showed diffuse cortical thickening and pachygyria. The patient from the second family was a 2-year, 4 month-old male. He had microcephaly and developmental delay but no seizures. Coronal images of this patient showed findings of microlissencephaly including prominent microcephaly, bilateral Sylvian clefts, hypoplastic corpus callosum, and thickened cortex. The kinship coefficients between affected individuals from both families were consistent with fourth-degree relatedness."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "WDR62"}], "names": [{"value": "WDR62, 4-BP DEL, TGCC"}], "variantType": "Variation", "otherNames": [{"value": "4-BP DEL, TGCC", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20200"}], "traitMappings": [{"medgens": [{"name": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "cui": "C1858535"}], "clinicalAssertionId": "20200", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "mappingRef": "Preferred"}]}}
-{"variationId": "18397", "variationName": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)", "variationType": "Deletion", "dateCreated": "2015-08-12T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-08-12T00:00:00Z", "accession": "VCV000018397", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)", "canonicalSpdi": "NC_000001.11:159205718:CCTGGCTGGCCTGTCCTGGC:CCTGGC", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205719, "stop": 159205732, "displayStart": 159205719, "displayStop": 159205732, "variantLength": 14, "positionVcf": 159205718, "referenceAlleleVcf": "CCCTGGCTGGCCTGT", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175509, "stop": 159175522, "displayStart": 159175509, "displayStop": 159175522, "variantLength": 14, "positionVcf": 159175508, "referenceAlleleVcf": "CCCTGGCTGGCCTGT", "alternateAlleleVcf": "C"}]}], "otherNames": [{"value": "ACKR1, 14-BP DEL, NT286"}], "proteinChanges": ["W96fs", "W98fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_801:g.6713_6726del", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.286_299del", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Trp96fs", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Trp96fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.159175515_159175528del", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175515_159175528del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205725_159205738del", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205725_159205738del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6713_6726del", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6713_6726del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.292_305del", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.292_305del"}, "proteinExpression": {"expression": "NP_001116423.1:p.Trp98fs", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Trp98fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.286_299del", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.286_299del", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Trp96fs", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Trp96fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "587776507", "type": "rs"}, {"db": "ClinGen", "id": "CA113791"}], "alleleId": "33436", "variationId": "18397"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE"}], "traitSetId": "6212"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-04-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs) AND DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "accession": "RCV000000010", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10791881", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "7669660", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8248172", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY NULL; Fy(a-b-)", "type": "Alternate"}, {"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613665.0002", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6212", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-04-01T00:00:00Z", "dateCreated": "2015-08-12T00:00:00Z", "mostRecentSubmission": "2015-08-12T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0004_DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "title": "ACKR1, 14-BP DEL, NT286_DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020153", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-08-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-04-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Mallinson et al. (1995) presented evidence for 2 different genetic backgrounds giving rise to the Fy(a-b-) phenotype. The most likely genetic mechanism in most individuals is downregulation of Duffy glycoprotein mRNA (see 613665.0002). However, the Duffy gene from a very rare Caucasian individual (AZ) with the Fy(a-b-) phenotype had a 14-bp deletion that resulted in a frameshift. In the Abstract and Results sections of their paper, Mallinson et al. (1995) reported that the deletion removed nucleotides 287 to 301 of DARC. However, their Figure 4 showed that the deletion involved nucleotides 292 to 305, which appeared to be correct. The DARC cDNA sequence used by Mallinson et al. (1995) was identical to that of the minor DARC variant reported by Chaudhuri et al. (1993). The frameshift resulting from the deletion introduced a stop codon 23 amino acids downstream and produced a putative truncated 118-amino acid protein. The occurrence of this mutation in an apparently healthy individual raised questions about the functional importance of the Duffy glycoprotein, not only in normal erythrocytes, but also in all human cells and tissues. The only known examples of the Fy(a-b-) phenotype in Caucasians were AZ and Czech gypsies."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "7669660", "source": "PubMed"}]}, {"ids": [{"value": "8248172", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Using the sequence of the major DARC variant reported by Iwamoto et al. (1996), as was recommended by Pogo and Chaudhuri (2000), this 14-bp deletion occurs at nucleotide 286."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8547665", "source": "PubMed"}]}, {"ids": [{"value": "10791881", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "names": [{"value": "ACKR1, 14-BP DEL, NT286"}], "variantType": "Variation", "otherNames": [{"value": "14-BP DEL, NT286", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20153"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "cui": "C4017326"}], "clinicalAssertionId": "20153", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "mappingRef": "Preferred"}]}}
-{"variationId": "25", "variationName": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC", "variationType": "Indel", "dateCreated": "2018-10-10T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2018-10-10T00:00:00Z", "accession": "VCV000000025", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25294743, "stop": 25390835, "displayStart": 25294743, "displayStop": 25390835, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25275378, "stop": 25371617, "displayStart": 25275378, "displayStop": 25371617, "strand": "-"}]}], "omims": ["613599"], "fullName": "abhydrolase domain containing 12, lysophospholipase", "geneId": "26090", "hgncId": "HGNC:15868", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25389925, "stop": 25390084, "displayStart": 25389925, "displayStop": 25390084, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12749", "geneId": "130065583", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390255, "stop": 25390414, "displayStart": 25390255, "displayStop": 25390414, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12750", "geneId": "130065584", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390455, "stop": 25390504, "displayStart": 25390455, "displayStop": 25390504, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12751", "geneId": "130065585", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390545, "stop": 25390964, "displayStart": 25390545, "displayStop": 25390964, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12752", "geneId": "130065586", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25383511, "stop": 25397601, "displayStart": 25383511, "displayStop": 25397601, "variantLength": 14091, "alternateAllele": "GG"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25364147, "stop": 25378237, "displayStart": 25364147, "displayStop": 25378237, "variantLength": 14091, "alternateAllele": "GG"}]}], "otherNames": [{"value": "14-KB DEL"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.25364147_25378237delinsGG", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.25364147_25378237delinsGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25383511_25397601delinsGG", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25383511_25397601delinsGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_015600.4:c.-6898_191+7002delinsCC", "sequenceAccessionVersion": "NM_015600.4", "sequenceAccession": "NM_015600", "sequenceVersion": 4, "change": "c.-6898_191+7002delinsCC"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25383511_25397600delinsG", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25383511_25397600delinsG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}], "xrefs": [{"db": "dbVar", "id": "nssv3761628"}, {"db": "dbVar", "id": "nsv1067853"}, {"db": "OMIM", "id": "613599.0002", "type": "Allelic variant"}], "comments": [{"value": "Deletion of exon 1 plus flanking sequences from ABHD12 (NG_028119.1), with insertion of GG", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}, {"value": "The location of this deletion was determined from analysis of Fig. S4C in PubMed 20797687.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "15064", "variationId": "25"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "PHARC syndrome", "db": "MedGen", "id": "C2675204"}], "traitSetId": "17"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC AND PHARC syndrome", "accession": "RCV000000042", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "PHARC syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0012984"}]}, {"value": "Polyneuropathy-hearing loss-ataxia-retinitis pigmentosa-cataract syndrome", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "171848"}]}, {"value": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Polyneuropathy%2C+hearing+loss%2C+ataxia%2C+retinitis+pigmentosa%2C+and+cataract/9132"}]}], "symbols": [{"value": "PHARC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "17071"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "17071"}]}], "xrefs": [{"db": "Orphanet", "id": "171848"}, {"db": "MedGen", "id": "C2675204"}, {"db": "MONDO", "id": "MONDO:0012984"}, {"db": "OMIM", "id": "612674", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "17", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2018-10-10T00:00:00Z", "mostRecentSubmission": "2018-10-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613599.0002_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "title": "ABHD12, 14-KB DEL_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT"}, "clinvarAccession": {"accession": "SCV000020185", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2018-10-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 3 affected members of a family from the United Arab Emirates with polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract (PHARC; 612674), Fiskerstrand et al. (2010) identified a homozygous 14-kb deletion and 2-bp insertion (del14007insGG) in the ABHD12 gene encompassing the promoter region and exon 1 of the gene. Two patients were in their twenties, and 1 was age 6 years. Common features included absent tendon reflexes, hearing loss, ataxia, cataracts; hearing loss occurred in childhood in all 3. Only the older 2 patients had retinitis pigmentosa."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ABHD12"}], "names": [{"value": "ABHD12, 14-KB DEL"}], "variantType": "Variation", "otherNames": [{"value": "14-KB DEL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613599.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20185"}], "traitMappings": [{"medgens": [{"name": "PHARC syndrome", "cui": "C2675204"}], "clinicalAssertionId": "20185", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "mappingRef": "Preferred"}]}}
-{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "names": [{"value": "ACKR1, ARG89CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
+{"variationId": "2", "variationName": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "variationType": "Indel", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "accession": "VCV000000002", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "canonicalSpdi": "NC_000007.14:4781212:GGAT:TGCTGTAAACTGTAACTGTAAA", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4781213, "stop": 4781216, "displayStart": 4781213, "displayStop": 4781216, "variantLength": 22, "positionVcf": 4781213, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4820844, "stop": 4820847, "displayStart": 4820844, "displayStop": 4820847, "variantLength": 22, "positionVcf": 4820844, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}]}], "otherNames": [{"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000007.13:g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001623", "type": "5 prime UTR variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "proteinExpression": {"expression": "LRG_1247p1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.173_176delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.173_176delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA215070"}, {"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704705", "type": "rs"}], "alleleId": "15041", "variationId": "2"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "submissionCount": 2}}}, "title": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer) AND Hereditary spastic paraplegia 48", "accession": "RCV000000012", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0001_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "title": "AP5Z1, 4-BP DEL/22-BP INS, NT80_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE"}, "clinvarAccession": {"accession": "SCV000020155", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 French sibs with autosomal recessive spastic paraplegia-48 (SPG48; 613647), Slabicki et al. (2010) identified a homozygous complex insertion/deletion mutation in exon 2 of the KIAA0415 gene. The mutation comprised a 4-bp deletion (80del4) and a 22-bp insertion (84ins22), resulting in a frameshift and premature stop codon following residue 29. The insertion was found to be an imperfect quadruplication of a sequence, suggesting DNA polymerase slippage during DNA synthesis as the pathogenetic mechanism. The patients presented with progressive spastic paraplegia associated with urinary incontinence from ages 50 and 49 years, respectively. One had a normal cerebral MRI, whereas the other had spinal hyperintensities in the cervical spine. The unaffected parents were not known to be consanguineous, but they originated from 2 neighboring villages. The mutation was not found in 156 Caucasian or 242 North African control chromosomes. Studies of lymphoblastoid cells derived from 1 patient showed increased sensitivity to DNA-damaging drugs. The findings suggested a link between this form of spastic paraplegia, which could be considered a neurodegenerative disease, and defects in DNA repair."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "name": {"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}, "variantType": "Variation", "otherNames": [{"value": "4-BP DEL/22-BP INS, NT80", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20155"}, {"clinvarSubmissionId": {"localKey": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA|OMIM:613647", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001451119", "version": 1, "submitterIdentifiers": {"submitterName": "Paris Brain Institute, Inserm - ICM", "orgId": "507826", "orgCategory": "laboratory"}, "dateUpdated": "2021-05-16T00:00:00Z", "dateCreated": "2021-05-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "2"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB8526155"], "id": "2865972"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20155", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "2865972", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "613647", "mappingRef": "OMIM"}]}}
+{"variationId": "6", "variationName": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser)", "variationType": "single nucleotide variant", "dateCreated": "2019-02-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-02-04T00:00:00Z", "accession": "VCV000000006", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["11q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_11", "accession": "NC_000011.10", "start": 126269154, "stop": 126278126, "displayStart": 126269154, "displayStop": 126278126, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_11", "accession": "NC_000011.9", "start": 126138934, "stop": 126148026, "displayStart": 126138934, "displayStop": 126148026, "strand": "+"}]}], "omims": ["613622"], "fullName": "FAD dependent oxidoreductase domain containing 1", "geneId": "55572", "hgncId": "HGNC:26927", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser)", "canonicalSpdi": "NC_000011.10:126277516:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["11q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_11", "accession": "NC_000011.10", "start": 126277517, "stop": 126277517, "displayStart": 126277517, "displayStop": 126277517, "variantLength": 1, "positionVcf": 126277517, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_11", "accession": "NC_000011.9", "start": 126147412, "stop": 126147412, "displayStart": 126147412, "displayStop": 126147412, "variantLength": 1, "positionVcf": 126147412, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N430S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q96CU9:p.Asn430Ser", "sequenceAccessionVersion": "Q96CU9", "sequenceAccession": "Q96CU9", "change": "p.Asn430Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000011.10:g.126277517A>G", "sequenceAccessionVersion": "NC_000011.10", "sequenceAccession": "NC_000011", "sequenceVersion": 10, "change": "g.126277517A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000011.9:g.126147412A>G", "sequenceAccessionVersion": "NC_000011.9", "sequenceAccession": "NC_000011", "sequenceVersion": 9, "change": "g.126147412A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NR_037648.2:n.1466A>G", "sequenceAccessionVersion": "NR_037648.2", "sequenceAccession": "NR_037648", "sequenceVersion": 2, "change": "n.1466A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NG_028029.1:g.13478A>G", "sequenceAccessionVersion": "NG_028029.1", "sequenceAccession": "NG_028029", "sequenceVersion": 1, "change": "g.13478A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_017547.4:c.1289A>G", "sequenceAccessionVersion": "NM_017547.4", "sequenceAccession": "NM_017547", "sequenceVersion": 4, "change": "c.1289A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_060017.1:p.Asn430Ser", "sequenceAccessionVersion": "NP_060017.1", "sequenceAccession": "NP_060017", "sequenceVersion": 1, "change": "p.Asn430Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_037647.2:n.1121A>G", "sequenceAccessionVersion": "NR_037647.2", "sequenceAccession": "NR_037647", "sequenceVersion": 2, "change": "n.1121A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113794"}, {"db": "UniProtKB", "id": "Q96CU9#VAR_064571"}, {"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267606830", "type": "rs"}], "alleleId": "15045", "variationId": "6"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Mitochondrial complex 1 deficiency, nuclear type 19", "db": "MedGen", "id": "C4748791"}], "traitSetId": "45335"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-10-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser) AND Mitochondrial complex 1 deficiency, nuclear type 19", "accession": "RCV000000016", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20818383", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Mitochondrial complex 1 deficiency, nuclear type 19", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0032624"}]}, {"value": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}, {"db": "OMIM", "id": "613622.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613622.0003", "type": "Allelic variant"}]}], "symbols": [{"value": "MC1DN19", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C4748791"}, {"db": "MONDO", "id": "MONDO:0032624"}, {"db": "OMIM", "id": "618241", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "45335", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-10-01T00:00:00Z", "dateCreated": "2019-02-04T00:00:00Z", "mostRecentSubmission": "2019-02-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613622.0002_MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "title": "FOXRED1, ASN430SER_MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19"}, "clinvarAccession": {"accession": "SCV000020159", "version": 5, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-02-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-10-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the asn430-to-ser (N430S) mutation in the FOXRED1 gene that was found in compound heterozygous state in a patient with mitochondrial complex I deficiency nuclear type 19 (MC1DN19; 618241) manifesting as Leigh syndrome (see 252010), by Calvo et al. (2010), see 613622.0001."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20818383", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}, {"db": "OMIM", "id": "252010", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "FOXRED1"}], "name": {"value": "FOXRED1, ASN430SER"}, "variantType": "Variation", "otherNames": [{"value": "ASN430SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20159"}], "traitMappings": [{"medgens": [{"name": "Mitochondrial complex 1 deficiency, nuclear type 19", "cui": "C4748791"}], "clinicalAssertionId": "20159", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "mappingRef": "Preferred"}]}}
+{"variationId": "3", "variationName": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs)", "variationType": "Deletion", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-01-30T00:00:00Z", "accession": "VCV000000003", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs)", "canonicalSpdi": "NC_000007.14:4787729:CTGCTGGACCTGCCCTGCT:CTGCT", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4787730, "stop": 4787743, "displayStart": 4787730, "displayStop": 4787743, "variantLength": 14, "positionVcf": 4787729, "referenceAlleleVcf": "GCTGCTGGACCTGCC", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4827361, "stop": 4827374, "displayStart": 4827361, "displayStop": 4827374, "variantLength": 14, "positionVcf": 4827360, "referenceAlleleVcf": "GCTGCTGGACCTGCC", "alternateAlleleVcf": "G"}]}], "otherNames": [{"value": "AP5Z1, 14-BP DEL, NT1413"}], "proteinChanges": ["L317fs", "L473fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_1247:g.17105_17118del", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.17105_17118del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.1413_1426del", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.1413_1426del"}, "proteinExpression": {"expression": "LRG_1247p1:p.Leu473fs", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Leu473fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.945_958del", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.945_958del"}, "proteinExpression": {"expression": "NP_001351787.1:p.Leu317fs", "sequenceAccessionVersion": "NP_001351787.1", "sequenceAccession": "NP_001351787", "sequenceVersion": 1, "change": "p.Leu317fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.1413_1426del", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.1413_1426del", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Leu473fs", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Leu473fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.1544_1557del", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.1544_1557del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.13:g.4827366_4827379del", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4827366_4827379del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4787735_4787748del", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4787735_4787748del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.17105_17118del", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.17105_17118del"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "dbSNP", "id": "397704709", "type": "rs"}, {"db": "ClinGen", "id": "CA215072"}, {"db": "OMIM", "id": "613653.0002", "type": "Allelic variant"}], "alleleId": "15042", "variationId": "3"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z", "submissionCount": 1}}}, "title": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs) AND Hereditary spastic paraplegia 48", "accession": "RCV000000013", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-06-29T00:00:00Z", "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2017-01-30T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0002_SPASTIC PARAPLEGIA 48", "title": "AP5Z1, 14-BP DEL, NT1413_SPASTIC PARAPLEGIA 48"}, "clinvarAccession": {"accession": "SCV000020156", "version": 5, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a patient with sporadic SPG48 (613647), Slabicki et al. (2010) identified a heterozygous 14-bp deletion (1413del14) in the KIAA0415 gene, resulting in a frameshift and premature termination following residue 56. No family members were available for study, and no copy number variations were found on chromosome 7, but a second small change affecting the KIAA0415 gene could not be completely excluded. The mutation was not found in 158 Caucasian or 84 North African control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "name": {"value": "AP5Z1, 14-BP DEL, NT1413"}, "variantType": "Variation", "otherNames": [{"value": "14-BP DEL, NT1413", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20156"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20156", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48", "mappingRef": "Preferred"}]}}
+{"variationId": "26", "variationName": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter)", "variationType": "Duplication", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "accession": "VCV000000026", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25294743, "stop": 25390835, "displayStart": 25294743, "displayStop": 25390835, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25275378, "stop": 25371617, "displayStart": 25275378, "displayStop": 25371617, "strand": "-"}]}], "omims": ["613599"], "fullName": "abhydrolase domain containing 12, lysophospholipase", "geneId": "26090", "hgncId": "HGNC:15868", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter)", "canonicalSpdi": "NC_000020.11:25307980:GCTCTTAGCT:GCTCTTAGCTCTTAGCT", "variantTypes": ["Duplication"], "locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25307980, "stop": 25307981, "displayStart": 25307980, "displayStop": 25307981, "variantLength": 7, "positionVcf": 25307980, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GGCTCTTA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25288616, "stop": 25288617, "displayStart": 25288616, "displayStop": 25288617, "variantLength": 7, "positionVcf": 25288616, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GGCTCTTA"}]}], "proteinChanges": ["H285*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.25288620_25288626dup", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.25288620_25288626dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25307984_25307990dup", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25307984_25307990dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028119.1:g.87996_88002dup", "sequenceAccessionVersion": "NG_028119.1", "sequenceAccession": "NG_028119", "sequenceVersion": 1, "change": "g.87996_88002dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001042472.3:c.846_852dup", "sequenceAccessionVersion": "NM_001042472.3", "sequenceAccession": "NM_001042472", "sequenceVersion": 3, "change": "c.846_852dup", "maneSelect": true}, "proteinExpression": {"expression": "NP_001035937.1:p.His285Ter", "sequenceAccessionVersion": "NP_001035937.1", "sequenceAccession": "NP_001035937", "sequenceVersion": 1, "change": "p.His285Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_015600.5:c.846_852dup", "sequenceAccessionVersion": "NM_015600.5", "sequenceAccession": "NM_015600", "sequenceVersion": 5, "change": "c.846_852dup"}, "proteinExpression": {"expression": "NP_056415.1:p.His285Ter", "sequenceAccessionVersion": "NP_056415.1", "sequenceAccession": "NP_056415", "sequenceVersion": 1, "change": "p.His285Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113810"}, {"db": "OMIM", "id": "613599.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704714", "type": "rs"}], "alleleId": "15065", "variationId": "26"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "PHARC syndrome", "db": "MedGen", "id": "C2675204"}], "traitSetId": "17"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter) AND PHARC syndrome", "accession": "RCV000000043", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "PHARC syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0012984"}]}, {"value": "Polyneuropathy-hearing loss-ataxia-retinitis pigmentosa-cataract syndrome", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "171848"}]}, {"value": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Polyneuropathy%2C+hearing+loss%2C+ataxia%2C+retinitis+pigmentosa%2C+and+cataract/9132"}]}], "symbols": [{"value": "PHARC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "171848"}, {"db": "MedGen", "id": "C2675204"}, {"db": "MONDO", "id": "MONDO:0012984"}, {"db": "OMIM", "id": "612674", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "17", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613599.0003_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "title": "ABHD12, 7-BP DUP, NT846_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT"}, "clinvarAccession": {"accession": "SCV000020186", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-18T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 7 patients from 4 Algerian families with polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract (PHARC; 612674), Fiskerstrand et al. (2010) identified a homozygous 7-bp duplication in exon 9 of the ABHD12 gene (846_852dupTAAGAGC), resulting in a premature stop codon at residue 285. The patients ranged in age from 10 to 44 years. The older individuals were more severely affected. All patients had some evidence of a polyneuropathy, with hyporeflexia, pes cavus, and/or sensory loss, and most had gait ataxia with onset in the childhood. Four of the older patients had hearing loss, but only 1 had retinitis pigmentosa and cataract. Other common features included extensor plantar responses and cerebellar atrophy."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ABHD12"}], "name": {"value": "ABHD12, 7-BP DUP, NT846"}, "variantType": "Variation", "otherNames": [{"value": "7-BP DUP, NT846", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613599.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20186"}], "traitMappings": [{"medgens": [{"name": "PHARC syndrome", "cui": "C2675204"}], "clinicalAssertionId": "20186", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "mappingRef": "Preferred"}]}}
+{"variationId": "32", "variationName": "NM_138413.4(HOGA1):c.700+4G>T", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000032", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["10q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_10", "accession": "NC_000010.11", "start": 97584389, "stop": 97612802, "displayStart": 97584389, "displayStop": 97612802, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_10", "accession": "NC_000010.10", "start": 99344101, "stop": 99372558, "displayStart": 99344101, "displayStop": 99372558, "strand": "+"}]}], "omims": ["613597"], "fullName": "4-hydroxy-2-oxoglutarate aldolase 1", "geneId": "112817", "hgncId": "HGNC:25155", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_138413.4(HOGA1):c.700+4G>T", "canonicalSpdi": "NC_000010.11:97600166:G:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["10q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_10", "accession": "NC_000010.11", "start": 97600167, "stop": 97600167, "displayStart": 97600167, "displayStop": 97600167, "variantLength": 1, "positionVcf": 97600167, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_10", "accession": "NC_000010.10", "start": 99359924, "stop": 99359924, "displayStart": 99359924, "displayStop": 99359924, "variantLength": 1, "positionVcf": 99359924, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "IVS, G-T, +4"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000010.10:g.99359924G>T", "sequenceAccessionVersion": "NC_000010.10", "sequenceAccession": "NC_000010", "sequenceVersion": 10, "change": "g.99359924G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000010.11:g.97600167G>T", "sequenceAccessionVersion": "NC_000010.11", "sequenceAccession": "NC_000010", "sequenceVersion": 11, "change": "g.97600167G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_027922.1:g.20823G>T", "sequenceAccessionVersion": "NG_027922.1", "sequenceAccession": "NG_027922", "sequenceVersion": 1, "change": "g.20823G>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_138413.4:c.700+4G>T", "sequenceAccessionVersion": "NM_138413.4", "sequenceAccession": "NM_138413", "sequenceVersion": 4, "change": "c.700+4G>T", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001134670.2:c.212-1690G>T", "sequenceAccessionVersion": "NM_001134670.2", "sequenceAccession": "NM_001134670", "sequenceVersion": 2, "change": "c.212-1690G>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "LOVD 3", "id": "HOGA1_000005"}, {"db": "OMIM", "id": "613597.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "2041105506", "type": "rs"}], "alleleId": "15071", "variationId": "32"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Primary hyperoxaluria type 3", "db": "MedGen", "id": "C3150878"}], "traitSetId": "19"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_138413.4(HOGA1):c.700+4G>T AND Primary hyperoxaluria type 3", "accession": "RCV000000049", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797690", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Primary hyperoxaluria type 3", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013327"}]}, {"value": "PH III", "type": "Alternate"}, {"value": "Primary hyperoxaluria, type III", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+Hyperoxaluria+Type+3/8596"}]}], "symbols": [{"value": "HP3", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613616", "type": "MIM"}]}, {"value": "HOGA1", "type": "Alternate"}, {"value": "PH3", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000561373"}]}, {"attribute": {"base": {"integerValue": "10738"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10738"}]}], "citations": [{"ids": [{"value": "26401545", "source": "PubMed"}, {"value": "NBK316514", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "416"}, {"db": "Orphanet", "id": "93600"}, {"db": "MedGen", "id": "C3150878"}, {"db": "MONDO", "id": "MONDO:0013327"}, {"db": "OMIM", "id": "613616", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "19", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613597.0004_HYPEROXALURIA, PRIMARY, TYPE III", "title": "HOGA1, IVS, G-T, +4_HYPEROXALURIA, PRIMARY, TYPE III"}, "clinvarAccession": {"accession": "SCV000020192", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 24-year-old woman from a European American family with calcium oxalate nephrolithiasis (HP3; 613616), Belostotsky et al. (2010) identified compound heterozygosity for an intronic G-to-T transversion (701+4G-T) in the DHDPSL gene, predicted to result in insertion of 17 amino acid residues, and glu315del (613597.0001). The unaffected parents were each heterozygous for 1 of the mutations, neither of which was found in 226 chromosomes from European American individuals."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797690", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613616", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "HOGA1"}], "name": {"value": "HOGA1, IVS, G-T, +4"}, "variantType": "Variation", "otherNames": [{"value": "IVS, G-T, +4", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613597.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HYPEROXALURIA, PRIMARY, TYPE III", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20192"}], "traitMappings": [{"medgens": [{"name": "Primary hyperoxaluria type 3", "cui": "C3150878"}], "clinicalAssertionId": "20192", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HYPEROXALURIA, PRIMARY, TYPE III", "mappingRef": "Preferred"}]}}
+{"variationId": "42", "variationName": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser)", "variationType": "single nucleotide variant", "dateCreated": "2019-03-10T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-03-10T00:00:00Z", "accession": "VCV000000042", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36054897, "stop": 36111145, "displayStart": 36054897, "displayStop": 36111145, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36545782, "stop": 36596011, "displayStart": 36545782, "displayStop": 36596011, "strand": "+"}]}], "omims": ["613583"], "fullName": "WD repeat domain 62", "geneId": "284403", "hgncId": "HGNC:24502", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser)", "canonicalSpdi": "NC_000019.10:36067414:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36067415, "stop": 36067415, "displayStart": 36067415, "displayStop": 36067415, "variantLength": 1, "positionVcf": 36067415, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36558317, "stop": 36558317, "displayStart": 36558317, "displayStop": 36558317, "variantLength": 1, "positionVcf": 36558317, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["W224S"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000019.10:g.36067415G>C", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.36067415G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.36558317G>C", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.36558317G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_028101.1:g.17535G>C", "sequenceAccessionVersion": "NG_028101.1", "sequenceAccession": "NG_028101", "sequenceVersion": 1, "change": "g.17535G>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001083961.2:c.671G>C", "sequenceAccessionVersion": "NM_001083961.2", "sequenceAccession": "NM_001083961", "sequenceVersion": 2, "change": "c.671G>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_001077430.1:p.Trp224Ser", "sequenceAccessionVersion": "NP_001077430.1", "sequenceAccession": "NP_001077430", "sequenceVersion": 1, "change": "p.Trp224Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_173636.5:c.671G>C", "sequenceAccessionVersion": "NM_173636.5", "sequenceAccession": "NM_173636", "sequenceVersion": 5, "change": "c.671G>C"}, "proteinExpression": {"expression": "NP_775907.4:p.Trp224Ser", "sequenceAccessionVersion": "NP_775907.4", "sequenceAccession": "NP_775907", "sequenceVersion": 4, "change": "p.Trp224Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "O43379:p.Trp224Ser", "sequenceAccessionVersion": "O43379", "sequenceAccession": "O43379", "change": "p.Trp224Ser"}, "type": "HGVS_TYPE_PROTEIN"}], "xrefs": [{"db": "ClinGen", "id": "CA251361"}, {"db": "UniProtKB", "id": "O43379#VAR_063702"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267607176", "type": "rs"}], "alleleId": "15081", "variationId": "42"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "db": "MedGen", "id": "C1858535"}], "traitSetId": "7167"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser) AND Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "accession": "RCV000000059", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613583.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0009", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0010", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0013", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0012", "type": "Allelic variant"}]}, {"value": "Primary autosomal recessive microcephaly 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+autosomal+recessive+microcephaly+2/9156"}]}, {"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0011435"}]}], "symbols": [{"value": "MCPH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "In WDR62 primary microcephaly (WDR62-MCPH), microcephaly (occipitofrontal circumference [OFC] = -2 SD) is usually present at birth, but in some instances becomes evident later in the first year of life. Growth is otherwise normal. Except for brain malformations in most affected individuals, no other congenital malformations are observed. Central nervous system involvement can include delayed motor development, mild-to-severe intellectual disability (ID), behavior problems, epilepsy, spasticity, and ataxia."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK578067"}]}], "citations": [{"ids": [{"value": "35188728", "source": "PubMed"}, {"value": "NBK578067", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "2512"}, {"db": "MedGen", "id": "C1858535"}, {"db": "MONDO", "id": "MONDO:0011435"}, {"db": "OMIM", "id": "604317", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7167", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-09T00:00:00Z", "dateCreated": "2019-03-10T00:00:00Z", "mostRecentSubmission": "2019-03-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613583.0003_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "title": "WDR62, TRP224SER_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS"}, "clinvarAccession": {"accession": "SCV000020202", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-03-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 sibs and their cousin with microcephaly-2 and cortical malformations (MCPH2; 604317), Bilguvar et al. (2010) identified homozygosity for a missense mutation in the WDR62 gene, a G-to-C transversion in exon 6 that converted tryptophan to serine at codon 224 (W224S). All parents were heterozygous for the mutation, which was not identified in 1,290 Turkish and 1,500 Caucasian control chromosomes. Tryptophan-224 was invariant in all species examined from human to zebrafish and lamprey. The proband was a 6-year, 5-month-old boy who presented at 2 years of age with hyperactivity, seizures, and inability to sleep. He experienced 4 to 8 seizures per day and had microcephaly, micrognathia, and severe mental retardation, and could ambulate only with assistance. The sibs were cousins of the proband. One was an 8-year, 7-month-old female who presented at age 3 with seizures. She was microcephalic, hyperactive, and had dysconjugate gaze. She was able to walk independently and had no obvious dysmorphic features but had moderate mental retardation. Her brother was 12 years, 11 months old. He had seizures, self-mutilating behavior, and severe mental retardation, but could ambulate independently."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "WDR62"}], "name": {"value": "WDR62, TRP224SER"}, "variantType": "Variation", "otherNames": [{"value": "TRP224SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20202"}], "traitMappings": [{"medgens": [{"name": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "cui": "C1858535"}], "clinicalAssertionId": "20202", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "mappingRef": "Preferred"}]}}
+{"variationId": "40", "variationName": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs)", "variationType": "Deletion", "dateCreated": "2015-09-17T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-09-17T00:00:00Z", "accession": "VCV000000040", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36054897, "stop": 36111145, "displayStart": 36054897, "displayStop": 36111145, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36545782, "stop": 36596011, "displayStart": 36545782, "displayStop": 36596011, "strand": "+"}]}], "omims": ["613583"], "fullName": "WD repeat domain 62", "geneId": "284403", "hgncId": "HGNC:24502", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs)", "canonicalSpdi": "NC_000019.10:36104568:TGCC:", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36104569, "stop": 36104572, "displayStart": 36104569, "displayStop": 36104572, "variantLength": 4, "positionVcf": 36104568, "referenceAlleleVcf": "GTGCC", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36595471, "stop": 36595474, "displayStart": 36595471, "displayStop": 36595474, "variantLength": 4, "positionVcf": 36595470, "referenceAlleleVcf": "GTGCC", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["V1397fs", "V1402fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NG_028101.1:g.54689_54692del", "sequenceAccessionVersion": "NG_028101.1", "sequenceAccession": "NG_028101", "sequenceVersion": 1, "change": "g.54689_54692del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001083961.2:c.4205_4208del", "sequenceAccessionVersion": "NM_001083961.2", "sequenceAccession": "NM_001083961", "sequenceVersion": 2, "change": "c.4205_4208del", "maneSelect": true}, "proteinExpression": {"expression": "NP_001077430.1:p.Val1402fs", "sequenceAccessionVersion": "NP_001077430.1", "sequenceAccession": "NP_001077430", "sequenceVersion": 1, "change": "p.Val1402fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_173636.5:c.4190_4193del", "sequenceAccessionVersion": "NM_173636.5", "sequenceAccession": "NM_173636", "sequenceVersion": 5, "change": "c.4190_4193del"}, "proteinExpression": {"expression": "NP_775907.4:p.Val1397fs", "sequenceAccessionVersion": "NP_775907.4", "sequenceAccession": "NP_775907", "sequenceVersion": 4, "change": "p.Val1397fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000019.10:g.36104569_36104572del", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.36104569_36104572del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.36595471_36595474del", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.36595471_36595474del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA251360"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704721", "type": "rs"}], "alleleId": "15079", "variationId": "40"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "db": "MedGen", "id": "C1858535"}], "traitSetId": "7167"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs) AND Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "accession": "RCV000000057", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613583.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0009", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0010", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0013", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0012", "type": "Allelic variant"}]}, {"value": "Primary autosomal recessive microcephaly 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+autosomal+recessive+microcephaly+2/9156"}]}, {"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0011435"}]}], "symbols": [{"value": "MCPH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "In WDR62 primary microcephaly (WDR62-MCPH), microcephaly (occipitofrontal circumference [OFC] = -2 SD) is usually present at birth, but in some instances becomes evident later in the first year of life. Growth is otherwise normal. Except for brain malformations in most affected individuals, no other congenital malformations are observed. Central nervous system involvement can include delayed motor development, mild-to-severe intellectual disability (ID), behavior problems, epilepsy, spasticity, and ataxia."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK578067"}]}], "citations": [{"ids": [{"value": "35188728", "source": "PubMed"}, {"value": "NBK578067", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "2512"}, {"db": "MedGen", "id": "C1858535"}, {"db": "MONDO", "id": "MONDO:0011435"}, {"db": "OMIM", "id": "604317", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7167", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-09T00:00:00Z", "dateCreated": "2015-09-17T00:00:00Z", "mostRecentSubmission": "2015-09-17T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613583.0001_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "title": "WDR62, 4-BP DEL, TGCC_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS"}, "clinvarAccession": {"accession": "SCV000020200", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-09-17T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 sibs with autosomal recessive microcephaly-2 and cortical malformations (MCPH2; 604317) and in an affected child from another family, all from consanguineous Turkish unions, Bilguvar et al. (2010) identified homozygosity for a 4-basepair deletion (TGCC) in exon 31 of the WDR62 gene. This deletion occurred at codon 1402 and resulted in a frameshift and premature termination (Val1402GlyfsTer12). The mutation was heterozygous in all parents. It was not observed in 1,290 Turkish control chromosomes. The index patient was a 4-year, 6-month-old female who initially presented at 4 months of age with small head size. At 2 years, 3 months she showed micrognathia and a bulbous nose, and suffered from severe mental retardation. She had had no seizures. MRI showed diffuse cortical thickening and pachygyria. The patient from the second family was a 2-year, 4 month-old male. He had microcephaly and developmental delay but no seizures. Coronal images of this patient showed findings of microlissencephaly including prominent microcephaly, bilateral Sylvian clefts, hypoplastic corpus callosum, and thickened cortex. The kinship coefficients between affected individuals from both families were consistent with fourth-degree relatedness."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "WDR62"}], "name": {"value": "WDR62, 4-BP DEL, TGCC"}, "variantType": "Variation", "otherNames": [{"value": "4-BP DEL, TGCC", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20200"}], "traitMappings": [{"medgens": [{"name": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "cui": "C1858535"}], "clinicalAssertionId": "20200", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "mappingRef": "Preferred"}]}}
+{"variationId": "18397", "variationName": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)", "variationType": "Deletion", "dateCreated": "2015-08-12T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-08-12T00:00:00Z", "accession": "VCV000018397", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)", "canonicalSpdi": "NC_000001.11:159205718:CCTGGCTGGCCTGTCCTGGC:CCTGGC", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205719, "stop": 159205732, "displayStart": 159205719, "displayStop": 159205732, "variantLength": 14, "positionVcf": 159205718, "referenceAlleleVcf": "CCCTGGCTGGCCTGT", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175509, "stop": 159175522, "displayStart": 159175509, "displayStop": 159175522, "variantLength": 14, "positionVcf": 159175508, "referenceAlleleVcf": "CCCTGGCTGGCCTGT", "alternateAlleleVcf": "C"}]}], "otherNames": [{"value": "ACKR1, 14-BP DEL, NT286"}], "proteinChanges": ["W96fs", "W98fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_801:g.6713_6726del", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.286_299del", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Trp96fs", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Trp96fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.159175515_159175528del", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175515_159175528del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205725_159205738del", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205725_159205738del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6713_6726del", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6713_6726del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.292_305del", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.292_305del"}, "proteinExpression": {"expression": "NP_001116423.1:p.Trp98fs", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Trp98fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.286_299del", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.286_299del", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Trp96fs", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Trp96fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "587776507", "type": "rs"}, {"db": "ClinGen", "id": "CA113791"}], "alleleId": "33436", "variationId": "18397"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE"}], "traitSetId": "6212"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-04-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs) AND DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "accession": "RCV000000010", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10791881", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "7669660", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8248172", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY NULL; Fy(a-b-)", "type": "Alternate"}, {"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613665.0002", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6212", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-04-01T00:00:00Z", "dateCreated": "2015-08-12T00:00:00Z", "mostRecentSubmission": "2015-08-12T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0004_DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "title": "ACKR1, 14-BP DEL, NT286_DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020153", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-08-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-04-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Mallinson et al. (1995) presented evidence for 2 different genetic backgrounds giving rise to the Fy(a-b-) phenotype. The most likely genetic mechanism in most individuals is downregulation of Duffy glycoprotein mRNA (see 613665.0002). However, the Duffy gene from a very rare Caucasian individual (AZ) with the Fy(a-b-) phenotype had a 14-bp deletion that resulted in a frameshift. In the Abstract and Results sections of their paper, Mallinson et al. (1995) reported that the deletion removed nucleotides 287 to 301 of DARC. However, their Figure 4 showed that the deletion involved nucleotides 292 to 305, which appeared to be correct. The DARC cDNA sequence used by Mallinson et al. (1995) was identical to that of the minor DARC variant reported by Chaudhuri et al. (1993). The frameshift resulting from the deletion introduced a stop codon 23 amino acids downstream and produced a putative truncated 118-amino acid protein. The occurrence of this mutation in an apparently healthy individual raised questions about the functional importance of the Duffy glycoprotein, not only in normal erythrocytes, but also in all human cells and tissues. The only known examples of the Fy(a-b-) phenotype in Caucasians were AZ and Czech gypsies."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "7669660", "source": "PubMed"}]}, {"ids": [{"value": "8248172", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Using the sequence of the major DARC variant reported by Iwamoto et al. (1996), as was recommended by Pogo and Chaudhuri (2000), this 14-bp deletion occurs at nucleotide 286."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8547665", "source": "PubMed"}]}, {"ids": [{"value": "10791881", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "name": {"value": "ACKR1, 14-BP DEL, NT286"}, "variantType": "Variation", "otherNames": [{"value": "14-BP DEL, NT286", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20153"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "cui": "C4017326"}], "clinicalAssertionId": "20153", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "mappingRef": "Preferred"}]}}
+{"variationId": "25", "variationName": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC", "variationType": "Indel", "dateCreated": "2018-10-10T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2018-10-10T00:00:00Z", "accession": "VCV000000025", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25294743, "stop": 25390835, "displayStart": 25294743, "displayStop": 25390835, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25275378, "stop": 25371617, "displayStart": 25275378, "displayStop": 25371617, "strand": "-"}]}], "omims": ["613599"], "fullName": "abhydrolase domain containing 12, lysophospholipase", "geneId": "26090", "hgncId": "HGNC:15868", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25389925, "stop": 25390084, "displayStart": 25389925, "displayStop": 25390084, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12749", "geneId": "130065583", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390255, "stop": 25390414, "displayStart": 25390255, "displayStop": 25390414, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12750", "geneId": "130065584", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390455, "stop": 25390504, "displayStart": 25390455, "displayStop": 25390504, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12751", "geneId": "130065585", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390545, "stop": 25390964, "displayStart": 25390545, "displayStop": 25390964, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12752", "geneId": "130065586", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25383511, "stop": 25397601, "displayStart": 25383511, "displayStop": 25397601, "variantLength": 14091, "alternateAllele": "GG"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25364147, "stop": 25378237, "displayStart": 25364147, "displayStop": 25378237, "variantLength": 14091, "alternateAllele": "GG"}]}], "otherNames": [{"value": "14-KB DEL"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.25364147_25378237delinsGG", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.25364147_25378237delinsGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25383511_25397601delinsGG", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25383511_25397601delinsGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_015600.4:c.-6898_191+7002delinsCC", "sequenceAccessionVersion": "NM_015600.4", "sequenceAccession": "NM_015600", "sequenceVersion": 4, "change": "c.-6898_191+7002delinsCC"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25383511_25397600delinsG", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25383511_25397600delinsG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}], "xrefs": [{"db": "dbVar", "id": "nssv3761628"}, {"db": "dbVar", "id": "nsv1067853"}, {"db": "OMIM", "id": "613599.0002", "type": "Allelic variant"}], "comments": [{"value": "Deletion of exon 1 plus flanking sequences from ABHD12 (NG_028119.1), with insertion of GG", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}, {"value": "The location of this deletion was determined from analysis of Fig. S4C in PubMed 20797687.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "15064", "variationId": "25"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "PHARC syndrome", "db": "MedGen", "id": "C2675204"}], "traitSetId": "17"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC AND PHARC syndrome", "accession": "RCV000000042", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "PHARC syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0012984"}]}, {"value": "Polyneuropathy-hearing loss-ataxia-retinitis pigmentosa-cataract syndrome", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "171848"}]}, {"value": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Polyneuropathy%2C+hearing+loss%2C+ataxia%2C+retinitis+pigmentosa%2C+and+cataract/9132"}]}], "symbols": [{"value": "PHARC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "17071"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "17071"}]}], "xrefs": [{"db": "Orphanet", "id": "171848"}, {"db": "MedGen", "id": "C2675204"}, {"db": "MONDO", "id": "MONDO:0012984"}, {"db": "OMIM", "id": "612674", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "17", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2018-10-10T00:00:00Z", "mostRecentSubmission": "2018-10-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613599.0002_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "title": "ABHD12, 14-KB DEL_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT"}, "clinvarAccession": {"accession": "SCV000020185", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2018-10-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 3 affected members of a family from the United Arab Emirates with polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract (PHARC; 612674), Fiskerstrand et al. (2010) identified a homozygous 14-kb deletion and 2-bp insertion (del14007insGG) in the ABHD12 gene encompassing the promoter region and exon 1 of the gene. Two patients were in their twenties, and 1 was age 6 years. Common features included absent tendon reflexes, hearing loss, ataxia, cataracts; hearing loss occurred in childhood in all 3. Only the older 2 patients had retinitis pigmentosa."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ABHD12"}], "name": {"value": "ABHD12, 14-KB DEL"}, "variantType": "Variation", "otherNames": [{"value": "14-KB DEL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613599.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20185"}], "traitMappings": [{"medgens": [{"name": "PHARC syndrome", "cui": "C2675204"}], "clinicalAssertionId": "20185", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "mappingRef": "Preferred"}]}}
+{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "name": {"value": "ACKR1, ARG89CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json/one_record.xml-one_record.jsonl/one_record.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json/one_record.xml-one_record.jsonl/one_record.jsonl
index c81393a..5a42f3a 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json/one_record.xml-one_record.jsonl/one_record.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json/one_record.xml-one_record.jsonl/one_record.jsonl
@@ -1 +1 @@
-{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "names": [{"value": "ACKR1, ARG89CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
+{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "name": {"value": "ACKR1, ARG89CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json/one_record.xml.gz-one_record.jsonl.gz/one_record.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json/one_record.xml.gz-one_record.jsonl.gz/one_record.jsonl
index c81393a..5a42f3a 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json/one_record.xml.gz-one_record.jsonl.gz/one_record.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json/one_record.xml.gz-one_record.jsonl.gz/one_record.jsonl
@@ -1 +1 @@
-{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "names": [{"value": "ACKR1, ARG89CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
+{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "name": {"value": "ACKR1, ARG89CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json_stdin_stdout/one_record.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json_stdin_stdout/one_record.jsonl
index c81393a..5a42f3a 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json_stdin_stdout/one_record.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_cli_xml_to_json_stdin_stdout/one_record.jsonl
@@ -1 +1 @@
-{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "names": [{"value": "ACKR1, ARG89CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
+{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "name": {"value": "ACKR1, ARG89CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_additional_submitters.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_additional_submitters.xml/out.jsonl
index f7261d7..8fdb81f 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_additional_submitters.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_additional_submitters.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "56992", "variationName": "GRCh38/hg38 6p25.3(chr6:259528-307998)x3", "variationType": "copy number gain", "dateCreated": "2015-07-10T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2015-07-10T00:00:00Z", "accession": "VCV000056992", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 292487, "stop": 351355, "displayStart": 292487, "displayStop": 351355, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_6", "accession": "NC_000006.11", "start": 292100, "stop": 351354, "displayStart": 292100, "displayStop": 351354, "strand": "+"}]}], "omims": ["616778"], "fullName": "dual specificity phosphatase 22", "geneId": "56940", "hgncId": "HGNC:16077", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 287018, "stop": 287087, "displayStart": 287018, "displayStop": 287087, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23815", "geneId": "129995536", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 287308, "stop": 287377, "displayStart": 287308, "displayStop": 287377, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23816", "geneId": "129995537", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 292960, "stop": 293219, "displayStart": 292960, "displayStop": 293219, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23818", "geneId": "129995538", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 296647, "stop": 296806, "displayStart": 296647, "displayStop": 296806, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23819", "geneId": "129995539", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 297547, "stop": 297636, "displayStart": 297547, "displayStop": 297636, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23820", "geneId": "129995540", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 304067, "stop": 304146, "displayStart": 304067, "displayStop": 304146, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23821", "geneId": "129995541", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 304966, "stop": 305015, "displayStart": 304966, "displayStop": 305015, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23822", "geneId": "129995542", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "GRCh38/hg38 6p25.3(chr6:259528-307998)x3", "variantTypes": ["copy number gain"], "locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "innerStart": 259528, "innerStop": 307998, "displayStart": 259528, "displayStop": 307998, "variantLength": 48471}, {"assembly": "GRCh37", "chr": "CHROMOSOME_6", "accession": "NC_000006.11", "innerStart": 259528, "innerStop": 307998, "displayStart": 259528, "displayStop": 307998, "variantLength": 48471}, {"assembly": "NCBI36", "chr": "CHROMOSOME_6", "accession": "NC_000006.10", "innerStart": 204528, "innerStop": 252998, "displayStart": 204528, "displayStop": 252998, "variantLength": 48471}]}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000006.11:g.(?_259528)_(307998_?)dup", "sequenceAccessionVersion": "NC_000006.11", "sequenceAccession": "NC_000006", "sequenceVersion": 11, "change": "g.(?_259528)_(307998_?)dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000006.10:g.(?_204528)_(252998_?)dup", "sequenceAccessionVersion": "NC_000006.10", "sequenceAccession": "NC_000006", "sequenceVersion": 10, "change": "g.(?_204528)_(252998_?)dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "NCBI36"}, {"nucleotideExpression": {"expression": "NC_000006.12:g.(?_259528)_(307998_?)dup", "sequenceAccessionVersion": "NC_000006.12", "sequenceAccession": "NC_000006", "sequenceVersion": 12, "change": "g.(?_259528)_(307998_?)dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}], "xrefs": [{"db": "dbVar", "id": "nssv581836"}, {"db": "dbVar", "id": "nssv582007"}, {"db": "dbVar", "id": "nsv529150"}], "alleleId": "71587", "variationId": "56992"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "See cases"}], "traitSetId": "16994"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Benign", "dateLastEvaluated": "2010-10-19T00:00:00Z", "submissionCount": 2}}}, "title": "GRCh38/hg38 6p25.3(chr6:259528-307998)x3 AND See cases", "accession": "RCV000050474", "version": 7}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Benign", "conditions": [{"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION", "id": "16994", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-10-19T00:00:00Z", "dateCreated": "2015-07-10T00:00:00Z", "mostRecentSubmission": "2015-07-10T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "nsv529150:copy number gain:See cases:3:SCV000196254"}, "clinvarAccession": {"accession": "SCV000196254", "version": 2, "submitterIdentifiers": {"submitterName": "ISCA site 17", "orgId": "505238", "orgCategory": "laboratory"}, "dateUpdated": "2015-07-10T00:00:00Z", "dateCreated": "2015-01-02T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "International Standards For Cytogenomic Arrays Consortium (ISCA)", "orgId": "500029", "orgCategory": "consortium"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "replaceds": [{"accession": "SCV000175203", "version": 1, "dateChanged": "2015-01-01T00:00:00Z"}], "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Benign", "dateLastEvaluated": "2009-07-30T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"sampleDescription": {"description": {"value": "p25.3", "type": "COMMENT_TYPE_PUBLIC"}}, "origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}], "traitSet": {"traits": [{"names": [{"value": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "type": "Preferred"}]}], "type": "TYPE_FINDING"}, "xrefs": [{"db": "dbVar", "id": "nssv582007", "type": "dbVarVariantCallId"}]}], "simpleAllele": {"variantType": "copy number gain", "location": {"sequenceLocations": [{"assembly": "NCBI36", "chr": "CHROMOSOME_6", "accession": "NC_000006.10", "innerStart": 204528, "innerStop": 252998}]}, "xrefs": [{"db": "dbVar", "id": "nssv582007", "type": "dbVarVariantCallId"}, {"db": "dbVar", "id": "nsv529150", "type": "dbVarVariantRegionId"}], "attributes": [{"attribute": {"base": {"value": "3"}, "type": "AbsoluteCopyNumber"}}, {"attribute": {"base": {"value": "NC_000006.10:g.(?_204528)_(252998_?)dup"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION"}, "studyDescription": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter.", "comments": [{"value": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter."}], "submissionNames": ["nstd37"], "id": "350852"}, {"clinvarSubmissionId": {"localKey": "nsv529150:copy number gain:See cases:3:SCV000196255"}, "clinvarAccession": {"accession": "SCV000196255", "version": 2, "submitterIdentifiers": {"submitterName": "ISCA site 8", "orgId": "505285", "orgCategory": "laboratory"}, "dateUpdated": "2015-07-10T00:00:00Z", "dateCreated": "2015-01-02T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "International Standards For Cytogenomic Arrays Consortium (ISCA)", "orgId": "500029", "orgCategory": "consortium"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Benign", "dateLastEvaluated": "2010-10-19T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}], "traitSet": {"traits": [{"names": [{"value": "Obesity", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001513"}]}, {"names": [{"value": "Global developmental delay", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001263"}]}], "type": "TYPE_FINDING"}, "xrefs": [{"db": "dbVar", "id": "nssv581836", "type": "dbVarVariantCallId"}]}], "simpleAllele": {"variantType": "copy number gain", "location": {"sequenceLocations": [{"assembly": "NCBI36", "chr": "CHROMOSOME_6", "accession": "NC_000006.10", "innerStart": 204528, "innerStop": 252998}]}, "xrefs": [{"db": "dbVar", "id": "nssv581836", "type": "dbVarVariantCallId"}, {"db": "dbVar", "id": "nsv529150", "type": "dbVarVariantRegionId"}], "attributes": [{"attribute": {"base": {"value": "3"}, "type": "AbsoluteCopyNumber"}}, {"attribute": {"base": {"value": "NC_000006.10:g.(?_204528)_(252998_?)dup"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION"}, "studyDescription": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter.", "comments": [{"value": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter."}], "submissionNames": ["nstd37"], "id": "350976"}], "traitMappings": [{"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "350976", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "350852", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "BODY MASS INDEX QUANTITATIVE TRAIT LOCUS 20", "cui": "C4759928"}], "clinicalAssertionId": "350976", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Obesity", "mappingRef": "Preferred"}, {"medgens": [{"name": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "cui": "CN218420"}], "clinicalAssertionId": "350852", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "mappingRef": "Preferred"}, {"medgens": [{"name": "Global developmental delay", "cui": "C0557874"}], "clinicalAssertionId": "350976", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Global developmental delay", "mappingRef": "Preferred"}]}}
+{"variationId": "56992", "variationName": "GRCh38/hg38 6p25.3(chr6:259528-307998)x3", "variationType": "copy number gain", "dateCreated": "2015-07-10T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2015-07-10T00:00:00Z", "accession": "VCV000056992", "version": 2, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 292487, "stop": 351355, "displayStart": 292487, "displayStop": 351355, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_6", "accession": "NC_000006.11", "start": 292100, "stop": 351354, "displayStart": 292100, "displayStop": 351354, "strand": "+"}]}], "omims": ["616778"], "fullName": "dual specificity phosphatase 22", "geneId": "56940", "hgncId": "HGNC:16077", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 287018, "stop": 287087, "displayStart": 287018, "displayStop": 287087, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23815", "geneId": "129995536", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 287308, "stop": 287377, "displayStart": 287308, "displayStop": 287377, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23816", "geneId": "129995537", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 292960, "stop": 293219, "displayStart": 292960, "displayStop": 293219, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23818", "geneId": "129995538", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 296647, "stop": 296806, "displayStart": 296647, "displayStop": 296806, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23819", "geneId": "129995539", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 297547, "stop": 297636, "displayStart": 297547, "displayStop": 297636, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23820", "geneId": "129995540", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 304067, "stop": 304146, "displayStart": 304067, "displayStop": 304146, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23821", "geneId": "129995541", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 304966, "stop": 305015, "displayStart": 304966, "displayStop": 305015, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 23822", "geneId": "129995542", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "GRCh38/hg38 6p25.3(chr6:259528-307998)x3", "variantTypes": ["copy number gain"], "locations": [{"cytogeneticLocations": ["6p25.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "innerStart": 259528, "innerStop": 307998, "displayStart": 259528, "displayStop": 307998, "variantLength": 48471}, {"assembly": "GRCh37", "chr": "CHROMOSOME_6", "accession": "NC_000006.11", "innerStart": 259528, "innerStop": 307998, "displayStart": 259528, "displayStop": 307998, "variantLength": 48471}, {"assembly": "NCBI36", "chr": "CHROMOSOME_6", "accession": "NC_000006.10", "innerStart": 204528, "innerStop": 252998, "displayStart": 204528, "displayStop": 252998, "variantLength": 48471}]}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000006.11:g.(?_259528)_(307998_?)dup", "sequenceAccessionVersion": "NC_000006.11", "sequenceAccession": "NC_000006", "sequenceVersion": 11, "change": "g.(?_259528)_(307998_?)dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000006.10:g.(?_204528)_(252998_?)dup", "sequenceAccessionVersion": "NC_000006.10", "sequenceAccession": "NC_000006", "sequenceVersion": 10, "change": "g.(?_204528)_(252998_?)dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "NCBI36"}, {"nucleotideExpression": {"expression": "NC_000006.12:g.(?_259528)_(307998_?)dup", "sequenceAccessionVersion": "NC_000006.12", "sequenceAccession": "NC_000006", "sequenceVersion": 12, "change": "g.(?_259528)_(307998_?)dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}], "xrefs": [{"db": "dbVar", "id": "nssv581836"}, {"db": "dbVar", "id": "nssv582007"}, {"db": "dbVar", "id": "nsv529150"}], "alleleId": "71587", "variationId": "56992"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "See cases"}], "traitSetId": "16994"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Benign", "dateLastEvaluated": "2010-10-19T00:00:00Z", "submissionCount": 2}}}, "title": "GRCh38/hg38 6p25.3(chr6:259528-307998)x3 AND See cases", "accession": "RCV000050474", "version": 7}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Benign", "conditions": [{"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION", "id": "16994", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-10-19T00:00:00Z", "dateCreated": "2015-07-10T00:00:00Z", "mostRecentSubmission": "2015-07-10T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "nsv529150:copy number gain:See cases:3:SCV000196254"}, "clinvarAccession": {"accession": "SCV000196254", "version": 2, "submitterIdentifiers": {"submitterName": "ISCA site 17", "orgId": "505238", "orgCategory": "laboratory"}, "dateUpdated": "2015-07-10T00:00:00Z", "dateCreated": "2015-01-02T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "International Standards For Cytogenomic Arrays Consortium (ISCA)", "orgId": "500029", "orgCategory": "consortium"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "replaceds": [{"accession": "SCV000175203", "version": 1, "dateChanged": "2015-01-01T00:00:00Z"}], "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Benign", "dateLastEvaluated": "2009-07-30T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"sampleDescription": {"description": {"value": "p25.3", "type": "COMMENT_TYPE_PUBLIC"}}, "origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}], "traitSet": {"traits": [{"names": [{"value": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "type": "Preferred"}]}], "type": "TYPE_FINDING"}, "xrefs": [{"db": "dbVar", "id": "nssv582007", "type": "dbVarVariantCallId"}]}], "simpleAllele": {"variantType": "copy number gain", "location": {"sequenceLocations": [{"assembly": "NCBI36", "chr": "CHROMOSOME_6", "accession": "NC_000006.10", "innerStart": 204528, "innerStop": 252998}]}, "xrefs": [{"db": "dbVar", "id": "nssv582007", "type": "dbVarVariantCallId"}, {"db": "dbVar", "id": "nsv529150", "type": "dbVarVariantRegionId"}], "attributes": [{"attribute": {"base": {"value": "3"}, "type": "AbsoluteCopyNumber"}}, {"attribute": {"base": {"value": "NC_000006.10:g.(?_204528)_(252998_?)dup"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION"}, "studyDescription": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter.", "comments": [{"value": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter."}], "submissionNames": ["nstd37"], "id": "350852"}, {"clinvarSubmissionId": {"localKey": "nsv529150:copy number gain:See cases:3:SCV000196255"}, "clinvarAccession": {"accession": "SCV000196255", "version": 2, "submitterIdentifiers": {"submitterName": "ISCA site 8", "orgId": "505285", "orgCategory": "laboratory"}, "dateUpdated": "2015-07-10T00:00:00Z", "dateCreated": "2015-01-02T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "International Standards For Cytogenomic Arrays Consortium (ISCA)", "orgId": "500029", "orgCategory": "consortium"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Benign", "dateLastEvaluated": "2010-10-19T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}], "traitSet": {"traits": [{"names": [{"value": "Obesity", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001513"}]}, {"names": [{"value": "Global developmental delay", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001263"}]}], "type": "TYPE_FINDING"}, "xrefs": [{"db": "dbVar", "id": "nssv581836", "type": "dbVarVariantCallId"}]}], "simpleAllele": {"variantType": "copy number gain", "location": {"sequenceLocations": [{"assembly": "NCBI36", "chr": "CHROMOSOME_6", "accession": "NC_000006.10", "innerStart": 204528, "innerStop": 252998}]}, "xrefs": [{"db": "dbVar", "id": "nssv581836", "type": "dbVarVariantCallId"}, {"db": "dbVar", "id": "nsv529150", "type": "dbVarVariantRegionId"}], "attributes": [{"attribute": {"base": {"value": "3"}, "type": "AbsoluteCopyNumber"}}, {"attribute": {"base": {"value": "NC_000006.10:g.(?_204528)_(252998_?)dup"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION"}, "studyDescription": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter.", "comments": [{"value": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter."}], "submissionNames": ["nstd37"], "id": "350976"}], "traitMappings": [{"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "350976", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "350852", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "BODY MASS INDEX QUANTITATIVE TRAIT LOCUS 20", "cui": "C4759928"}], "clinicalAssertionId": "350976", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Obesity", "mappingRef": "Preferred"}, {"medgens": [{"name": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "cui": "CN218420"}], "clinicalAssertionId": "350852", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "mappingRef": "Preferred"}, {"medgens": [{"name": "Global developmental delay", "cui": "C0557874"}], "clinicalAssertionId": "350976", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Global developmental delay", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_attribute_set.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_attribute_set.xml/out.jsonl
index f1234bd..68b32b7 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_attribute_set.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_attribute_set.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "11900", "variationName": "NM_000128.4(F11):c.1782C>A (p.Ser594Arg)", "variationType": "single nucleotide variant", "dateCreated": "2015-10-11T00:00:00Z", "dateLastUpdated": "2024-03-30T00:00:00Z", "mostRecentSubmission": "2023-12-17T00:00:00Z", "accession": "VCV000011900", "version": 4, "numberOfSubmitters": 3, "numberOfSubmissions": 3, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q35.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 186266189, "stop": 186289681, "displayStart": 186266189, "displayStop": 186289681, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 187187117, "stop": 187210834, "displayStart": 187187117, "displayStop": 187210834, "strand": "+"}]}], "omims": ["264900"], "fullName": "coagulation factor XI", "geneId": "2160", "hgncId": "HGNC:3529", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["4q35.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 186286098, "stop": 186501058, "displayStart": 186286098, "displayStop": 186501058, "strand": "-"}]}], "fullName": "F11 antisense RNA 1", "geneId": "285441", "hgncId": "HGNC:27725", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_000128.4(F11):c.1782C>A (p.Ser594Arg)", "canonicalSpdi": "NC_000004.12:186288517:C:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["4q35.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 186288518, "stop": 186288518, "displayStart": 186288518, "displayStop": 186288518, "variantLength": 1, "positionVcf": 186288518, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 187209672, "stop": 187209672, "displayStart": 187209672, "displayStop": 187209672, "variantLength": 1, "positionVcf": 187209672, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "F11, SER576ARG"}, {"value": "S576R"}], "proteinChanges": ["S594R"], "hgvsExpressions": [{"proteinExpression": {"expression": "P03951:p.Ser594Arg", "sequenceAccessionVersion": "P03951", "sequenceAccession": "P03951", "change": "p.Ser594Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_583:g.27555C>A", "sequenceAccessionVersion": "LRG_583", "sequenceAccession": "LRG_583"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_583t1:c.1782C>A", "sequenceAccessionVersion": "LRG_583t1", "sequenceAccession": "LRG_583t1"}, "proteinExpression": {"expression": "LRG_583p1:p.Ser594Arg", "sequenceAccessionVersion": "LRG_583p1", "sequenceAccession": "LRG_583p1", "change": "p.Ser594Arg"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000004.11:g.187209672C>A", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.187209672C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.186288518C>A", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.186288518C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008051.1:g.27555C>A", "sequenceAccessionVersion": "NG_008051.1", "sequenceAccession": "NG_008051", "sequenceVersion": 1, "change": "g.27555C>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000128.4:c.1782C>A", "sequenceAccessionVersion": "NM_000128.4", "sequenceAccession": "NM_000128", "sequenceVersion": 4, "change": "c.1782C>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_000119.1:p.Ser594Arg", "sequenceAccessionVersion": "NP_000119.1", "sequenceAccession": "NP_000119", "sequenceVersion": 1, "change": "p.Ser594Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033900.1:n.976G>T", "sequenceAccessionVersion": "NR_033900.1", "sequenceAccession": "NR_033900", "sequenceVersion": 1, "change": "n.976G>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA121761"}, {"db": "UniProtKB", "id": "P03951#VAR_012096"}, {"db": "OMIM", "id": "264900.0011", "type": "Allelic variant"}, {"db": "dbSNP", "id": "28934609", "type": "rs"}], "alleleId": "26939", "variationId": "11900"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary factor XI deficiency disease", "db": "MedGen", "id": "C0015523"}], "traitSetId": "3228"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": {"value": "Pathogenic/Likely pathogenic", "dateLastEvaluated": "2021-03-03T00:00:00Z", "submissionCount": 3}}}, "title": "NM_000128.4(F11):c.1782C>A (p.Ser594Arg) AND Hereditary factor XI deficiency disease", "accession": "RCV000012675", "version": 20}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": "Pathogenic/Likely pathogenic", "citations": [{"ids": [{"value": "10606881", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary factor XI deficiency disease", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Hereditary+factor+XI+deficiency+disease/8518"}, {"db": "SNOMED CT", "id": "49762007"}]}, {"value": "Congenital factor XI deficiency", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0012897"}]}, {"value": "PTA deficiency", "type": "Alternate"}, {"value": "Rosenthal syndrome", "type": "Alternate"}, {"value": "Plasma thromboplastin antecedent deficiency", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"integerValue": "9670"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9670"}]}], "xrefs": [{"db": "Orphanet", "id": "329"}, {"db": "MedGen", "id": "C0015523"}, {"db": "MeSH", "id": "D005173"}, {"db": "MONDO", "id": "MONDO:0012897"}, {"db": "OMIM", "id": "612416", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "3228", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2021-03-03T00:00:00Z", "dateCreated": "2015-10-11T00:00:00Z", "mostRecentSubmission": "2023-12-17T00:00:00Z", "numberOfSubmitters": 3, "numberOfSubmissions": 3}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "264900.0011_FACTOR XI DEFICIENCY", "title": "F11, SER576ARG_FACTOR XI DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000032910", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-10-11T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1999-12-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Mitchell et al. (1999) did molecular analysis of the F11 gene in a patient who suffered a hemorrhage following cervical erosion and had miscarried during her second trimester after experiencing pregnancy-associated bleeding (612416). They found a heterozygous C-to-A transversion in exon 15, resulting in a ser576-to-arg (S576R) substitution."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "10606881", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612416", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "F11"}], "names": [{"value": "F11, SER576ARG"}], "variantType": "Variation", "otherNames": [{"value": "SER576ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "264900.0011", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "FACTOR XI DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "32910"}, {"clinvarSubmissionId": {"localKey": "c.1782C>A_612416", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000899559", "version": 1, "submitterIdentifiers": {"submitterName": "NIHR Bioresource Rare Diseases, University of Cambridge", "orgId": "505998", "orgCategory": "consortium", "orgAbbreviation": "NIHR BR RD"}, "dateUpdated": "2019-09-29T00:00:00Z", "dateCreated": "2019-09-29T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "citations": [{"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2019-02-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "ethnicity": "European", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_SINGLE_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "TGP0217"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}]}], "simpleAllele": {"genes": [{"symbol": "F11"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_000128.3:c.1782C>A"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "612416", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyName": "ThromboGenomics", "submissionNames": ["ThromboGenomics"], "id": "1769249"}, {"clinvarSubmissionId": {"localKey": "sa_pathology/molecular_genetics_frome_rd/vc15292", "localKeyIsSubmitted": false}, "clinvarAccession": {"accession": "SCV004175445", "version": 1, "submitterIdentifiers": {"submitterName": "Genetics and Molecular Pathology, SA Pathology", "orgId": "506043", "orgCategory": "laboratory"}, "dateUpdated": "2023-12-17T00:00:00Z", "dateCreated": "2023-12-17T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "Shariant Australia, Australian Genomics", "orgId": "508197", "orgCategory": "consortium"}, "type": "TYPE_BEHALF"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "dateLastEvaluated": "2021-03-03T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "F11"}], "variantType": "Variation", "otherNames": [{"value": "ALLELE_5692", "type": "SubmitterVariantId"}], "attributes": [{"attribute": {"base": {"value": "NM_000128.3:c.1782C>A"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "612416", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["submission_40"], "id": "7813512"}], "traitMappings": [{"medgens": [{"name": "Hereditary factor XI deficiency disease", "cui": "C0015523"}], "clinicalAssertionId": "7813512", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "612416", "mappingRef": "OMIM"}, {"medgens": [{"name": "Hereditary factor XI deficiency disease", "cui": "C0015523"}], "clinicalAssertionId": "1769249", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "612416", "mappingRef": "OMIM"}, {"medgens": [{"name": "Factor XI deficiency", "cui": "C4321502"}], "clinicalAssertionId": "32910", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FACTOR XI DEFICIENCY", "mappingRef": "Preferred"}]}}
+{"variationId": "11900", "variationName": "NM_000128.4(F11):c.1782C>A (p.Ser594Arg)", "variationType": "single nucleotide variant", "dateCreated": "2015-10-11T00:00:00Z", "dateLastUpdated": "2024-03-30T00:00:00Z", "mostRecentSubmission": "2023-12-17T00:00:00Z", "accession": "VCV000011900", "version": 4, "numberOfSubmitters": 3, "numberOfSubmissions": 3, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["4q35.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 186266189, "stop": 186289681, "displayStart": 186266189, "displayStop": 186289681, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 187187117, "stop": 187210834, "displayStart": 187187117, "displayStop": 187210834, "strand": "+"}]}], "omims": ["264900"], "fullName": "coagulation factor XI", "geneId": "2160", "hgncId": "HGNC:3529", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["4q35.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 186286098, "stop": 186501058, "displayStart": 186286098, "displayStop": 186501058, "strand": "-"}]}], "fullName": "F11 antisense RNA 1", "geneId": "285441", "hgncId": "HGNC:27725", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_000128.4(F11):c.1782C>A (p.Ser594Arg)", "canonicalSpdi": "NC_000004.12:186288517:C:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["4q35.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_4", "accession": "NC_000004.12", "start": 186288518, "stop": 186288518, "displayStart": 186288518, "displayStop": 186288518, "variantLength": 1, "positionVcf": 186288518, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_4", "accession": "NC_000004.11", "start": 187209672, "stop": 187209672, "displayStart": 187209672, "displayStop": 187209672, "variantLength": 1, "positionVcf": 187209672, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "F11, SER576ARG"}, {"value": "S576R"}], "proteinChanges": ["S594R"], "hgvsExpressions": [{"proteinExpression": {"expression": "P03951:p.Ser594Arg", "sequenceAccessionVersion": "P03951", "sequenceAccession": "P03951", "change": "p.Ser594Arg"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_583:g.27555C>A", "sequenceAccessionVersion": "LRG_583", "sequenceAccession": "LRG_583"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_583t1:c.1782C>A", "sequenceAccessionVersion": "LRG_583t1", "sequenceAccession": "LRG_583t1"}, "proteinExpression": {"expression": "LRG_583p1:p.Ser594Arg", "sequenceAccessionVersion": "LRG_583p1", "sequenceAccession": "LRG_583p1", "change": "p.Ser594Arg"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000004.11:g.187209672C>A", "sequenceAccessionVersion": "NC_000004.11", "sequenceAccession": "NC_000004", "sequenceVersion": 11, "change": "g.187209672C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000004.12:g.186288518C>A", "sequenceAccessionVersion": "NC_000004.12", "sequenceAccession": "NC_000004", "sequenceVersion": 12, "change": "g.186288518C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008051.1:g.27555C>A", "sequenceAccessionVersion": "NG_008051.1", "sequenceAccession": "NG_008051", "sequenceVersion": 1, "change": "g.27555C>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000128.4:c.1782C>A", "sequenceAccessionVersion": "NM_000128.4", "sequenceAccession": "NM_000128", "sequenceVersion": 4, "change": "c.1782C>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_000119.1:p.Ser594Arg", "sequenceAccessionVersion": "NP_000119.1", "sequenceAccession": "NP_000119", "sequenceVersion": 1, "change": "p.Ser594Arg"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_033900.1:n.976G>T", "sequenceAccessionVersion": "NR_033900.1", "sequenceAccession": "NR_033900", "sequenceVersion": 1, "change": "n.976G>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA121761"}, {"db": "UniProtKB", "id": "P03951#VAR_012096"}, {"db": "OMIM", "id": "264900.0011", "type": "Allelic variant"}, {"db": "dbSNP", "id": "28934609", "type": "rs"}], "alleleId": "26939", "variationId": "11900"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary factor XI deficiency disease", "db": "MedGen", "id": "C0015523"}], "traitSetId": "3228"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": {"value": "Pathogenic/Likely pathogenic", "dateLastEvaluated": "2021-03-03T00:00:00Z", "submissionCount": 3}}}, "title": "NM_000128.4(F11):c.1782C>A (p.Ser594Arg) AND Hereditary factor XI deficiency disease", "accession": "RCV000012675", "version": 20}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": "Pathogenic/Likely pathogenic", "citations": [{"ids": [{"value": "10606881", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary factor XI deficiency disease", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Hereditary+factor+XI+deficiency+disease/8518"}, {"db": "SNOMED CT", "id": "49762007"}]}, {"value": "Congenital factor XI deficiency", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0012897"}]}, {"value": "PTA deficiency", "type": "Alternate"}, {"value": "Rosenthal syndrome", "type": "Alternate"}, {"value": "Plasma thromboplastin antecedent deficiency", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"integerValue": "9670"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9670"}]}], "xrefs": [{"db": "Orphanet", "id": "329"}, {"db": "MedGen", "id": "C0015523"}, {"db": "MeSH", "id": "D005173"}, {"db": "MONDO", "id": "MONDO:0012897"}, {"db": "OMIM", "id": "612416", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "3228", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2021-03-03T00:00:00Z", "dateCreated": "2015-10-11T00:00:00Z", "mostRecentSubmission": "2023-12-17T00:00:00Z", "numberOfSubmitters": 3, "numberOfSubmissions": 3}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "264900.0011_FACTOR XI DEFICIENCY", "title": "F11, SER576ARG_FACTOR XI DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000032910", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-10-11T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1999-12-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Mitchell et al. (1999) did molecular analysis of the F11 gene in a patient who suffered a hemorrhage following cervical erosion and had miscarried during her second trimester after experiencing pregnancy-associated bleeding (612416). They found a heterozygous C-to-A transversion in exon 15, resulting in a ser576-to-arg (S576R) substitution."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "10606881", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612416", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "F11"}], "name": {"value": "F11, SER576ARG"}, "variantType": "Variation", "otherNames": [{"value": "SER576ARG", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "264900.0011", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "FACTOR XI DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "32910"}, {"clinvarSubmissionId": {"localKey": "c.1782C>A_612416", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000899559", "version": 1, "submitterIdentifiers": {"submitterName": "NIHR Bioresource Rare Diseases, University of Cambridge", "orgId": "505998", "orgCategory": "consortium", "orgAbbreviation": "NIHR BR RD"}, "dateUpdated": "2019-09-29T00:00:00Z", "dateCreated": "2019-09-29T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "citations": [{"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2019-02-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "ethnicity": "European", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_SINGLE_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "TGP0217"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}]}], "simpleAllele": {"genes": [{"symbol": "F11"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_000128.3:c.1782C>A"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "612416", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyName": "ThromboGenomics", "submissionNames": ["ThromboGenomics"], "id": "1769249"}, {"clinvarSubmissionId": {"localKey": "sa_pathology/molecular_genetics_frome_rd/vc15292", "localKeyIsSubmitted": false}, "clinvarAccession": {"accession": "SCV004175445", "version": 1, "submitterIdentifiers": {"submitterName": "Genetics and Molecular Pathology, SA Pathology", "orgId": "506043", "orgCategory": "laboratory"}, "dateUpdated": "2023-12-17T00:00:00Z", "dateCreated": "2023-12-17T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "Shariant Australia, Australian Genomics", "orgId": "508197", "orgCategory": "consortium"}, "type": "TYPE_BEHALF"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "dateLastEvaluated": "2021-03-03T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "F11"}], "variantType": "Variation", "otherNames": [{"value": "ALLELE_5692", "type": "SubmitterVariantId"}], "attributes": [{"attribute": {"base": {"value": "NM_000128.3:c.1782C>A"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "612416", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["submission_40"], "id": "7813512"}], "traitMappings": [{"medgens": [{"name": "Hereditary factor XI deficiency disease", "cui": "C0015523"}], "clinicalAssertionId": "7813512", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "612416", "mappingRef": "OMIM"}, {"medgens": [{"name": "Hereditary factor XI deficiency disease", "cui": "C0015523"}], "clinicalAssertionId": "1769249", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "612416", "mappingRef": "OMIM"}, {"medgens": [{"name": "Factor XI deficiency", "cui": "C4321502"}], "clinicalAssertionId": "32910", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FACTOR XI DEFICIENCY", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_custom_score.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_custom_score.xml/out.jsonl
index e4dfa74..dedfe94 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_custom_score.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_custom_score.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "1810274", "variationName": "NM_016023.5(OTUD6B):c.401A>G (p.Glu134Gly)", "variationType": "single nucleotide variant", "dateCreated": "2023-01-07T00:00:00Z", "dateLastUpdated": "2024-01-26T00:00:00Z", "mostRecentSubmission": "2024-01-26T00:00:00Z", "accession": "VCV001810274", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["8q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_8", "accession": "NC_000008.11", "start": 91070344, "stop": 91087093, "displayStart": 91070344, "displayStop": 91087093, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_8", "accession": "NC_000008.10", "start": 92082423, "stop": 92099322, "displayStart": 92082423, "displayStop": 92099322, "strand": "+"}]}], "omims": ["612021"], "fullName": "OTU deubiquitinase 6B", "geneId": "51633", "hgncId": "HGNC:24281", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_016023.5(OTUD6B):c.401A>G (p.Glu134Gly)", "canonicalSpdi": "NC_000008.11:91078440:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["8q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_8", "accession": "NC_000008.11", "start": 91078441, "stop": 91078441, "displayStart": 91078441, "displayStop": 91078441, "variantLength": 1, "positionVcf": 91078441, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_8", "accession": "NC_000008.10", "start": 92090669, "stop": 92090669, "displayStart": 92090669, "displayStop": 92090669, "variantLength": 1, "positionVcf": 92090669, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["E134G", "E33G"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000008.10:g.92090669A>G", "sequenceAccessionVersion": "NC_000008.10", "sequenceAccession": "NC_000008", "sequenceVersion": 10, "change": "g.92090669A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000008.11:g.91078441A>G", "sequenceAccessionVersion": "NC_000008.11", "sequenceAccession": "NC_000008", "sequenceVersion": 11, "change": "g.91078441A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_001286745.3:c.98A>G", "sequenceAccessionVersion": "NM_001286745.3", "sequenceAccession": "NM_001286745", "sequenceVersion": 3, "change": "c.98A>G"}, "proteinExpression": {"expression": "NP_001273674.1:p.Glu33Gly", "sequenceAccessionVersion": "NP_001273674.1", "sequenceAccession": "NP_001273674", "sequenceVersion": 1, "change": "p.Glu33Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_016023.5:c.401A>G", "sequenceAccessionVersion": "NM_016023.5", "sequenceAccession": "NM_016023", "sequenceVersion": 5, "change": "c.401A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_057107.4:p.Glu134Gly", "sequenceAccessionVersion": "NP_057107.4", "sequenceAccession": "NP_057107", "sequenceVersion": 4, "change": "p.Glu134Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "alleleId": "1867277", "variationId": "1810274"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies", "db": "MedGen", "id": "C4479520"}], "traitSetId": "36087"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2022-07-04T00:00:00Z", "submissionCount": 1}}}, "title": "NM_016023.5(OTUD6B):c.401A>G (p.Glu134Gly) AND Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies", "accession": "RCV002508983", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "28343629", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0044319"}]}], "symbols": [{"value": "IDDFSDA", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "617452", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "17942"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "17942"}]}], "xrefs": [{"db": "Orphanet", "id": "505237"}, {"db": "MedGen", "id": "C4479520"}, {"db": "MONDO", "id": "MONDO:0044319"}, {"db": "OMIM", "id": "617452", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "36087", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2022-07-04T00:00:00Z", "dateCreated": "2023-01-07T00:00:00Z", "mostRecentSubmission": "2024-01-26T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "NM_016023.5:c.401A>G|OMIM:617452"}, "clinvarAccession": {"accession": "SCV002818301", "version": 2, "submitterIdentifiers": {"submitterName": "Cytogenetique et Genetique Moleculaire, CHU Besancon", "orgId": "508575", "orgCategory": "laboratory"}, "dateUpdated": "2024-01-26T00:00:00Z", "dateCreated": "2023-01-07T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "citations": [{"ids": [{"value": "28343629", "source": "PubMed"}], "type": "general"}], "comments": [{"value": "In a autosomal recessive syndrom, this homozygous inherited variant from both heterozygous parents (confirmed by parental segregation thanks to Sanger sequencing), is associated with a matching described phenotype (seizures, larges ears..)."}], "dateLastEvaluated": "2022-07-04T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}, {"attribute": {"value": "Autosomal recessive inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}], "observedIns": [{"sample": {"origin": "ORIGIN_INHERITED", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_016023.5:c.401A>G"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "617452"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB12515886"], "id": "5502945"}], "traitMappings": [{"medgens": [{"name": "Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies", "cui": "C4479520"}], "clinicalAssertionId": "5502945", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "617452", "mappingRef": "OMIM"}]}}
+{"variationId": "1810274", "variationName": "NM_016023.5(OTUD6B):c.401A>G (p.Glu134Gly)", "variationType": "single nucleotide variant", "dateCreated": "2023-01-07T00:00:00Z", "dateLastUpdated": "2024-01-26T00:00:00Z", "mostRecentSubmission": "2024-01-26T00:00:00Z", "accession": "VCV001810274", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["8q21.3"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_8", "accession": "NC_000008.11", "start": 91070344, "stop": 91087093, "displayStart": 91070344, "displayStop": 91087093, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_8", "accession": "NC_000008.10", "start": 92082423, "stop": 92099322, "displayStart": 92082423, "displayStop": 92099322, "strand": "+"}]}], "omims": ["612021"], "fullName": "OTU deubiquitinase 6B", "geneId": "51633", "hgncId": "HGNC:24281", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_016023.5(OTUD6B):c.401A>G (p.Glu134Gly)", "canonicalSpdi": "NC_000008.11:91078440:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["8q21.3"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_8", "accession": "NC_000008.11", "start": 91078441, "stop": 91078441, "displayStart": 91078441, "displayStop": 91078441, "variantLength": 1, "positionVcf": 91078441, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_8", "accession": "NC_000008.10", "start": 92090669, "stop": 92090669, "displayStart": 92090669, "displayStop": 92090669, "variantLength": 1, "positionVcf": 92090669, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["E134G", "E33G"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000008.10:g.92090669A>G", "sequenceAccessionVersion": "NC_000008.10", "sequenceAccession": "NC_000008", "sequenceVersion": 10, "change": "g.92090669A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000008.11:g.91078441A>G", "sequenceAccessionVersion": "NC_000008.11", "sequenceAccession": "NC_000008", "sequenceVersion": 11, "change": "g.91078441A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_001286745.3:c.98A>G", "sequenceAccessionVersion": "NM_001286745.3", "sequenceAccession": "NM_001286745", "sequenceVersion": 3, "change": "c.98A>G"}, "proteinExpression": {"expression": "NP_001273674.1:p.Glu33Gly", "sequenceAccessionVersion": "NP_001273674.1", "sequenceAccession": "NP_001273674", "sequenceVersion": 1, "change": "p.Glu33Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_016023.5:c.401A>G", "sequenceAccessionVersion": "NM_016023.5", "sequenceAccession": "NM_016023", "sequenceVersion": 5, "change": "c.401A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_057107.4:p.Glu134Gly", "sequenceAccessionVersion": "NP_057107.4", "sequenceAccession": "NP_057107", "sequenceVersion": 4, "change": "p.Glu134Gly"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "alleleId": "1867277", "variationId": "1810274"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies", "db": "MedGen", "id": "C4479520"}], "traitSetId": "36087"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2022-07-04T00:00:00Z", "submissionCount": 1}}}, "title": "NM_016023.5(OTUD6B):c.401A>G (p.Glu134Gly) AND Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies", "accession": "RCV002508983", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "28343629", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0044319"}]}], "symbols": [{"value": "IDDFSDA", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "617452", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "17942"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "17942"}]}], "xrefs": [{"db": "Orphanet", "id": "505237"}, {"db": "MedGen", "id": "C4479520"}, {"db": "MONDO", "id": "MONDO:0044319"}, {"db": "OMIM", "id": "617452", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "36087", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2022-07-04T00:00:00Z", "dateCreated": "2023-01-07T00:00:00Z", "mostRecentSubmission": "2024-01-26T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "NM_016023.5:c.401A>G|OMIM:617452"}, "clinvarAccession": {"accession": "SCV002818301", "version": 2, "submitterIdentifiers": {"submitterName": "Cytogenetique et Genetique Moleculaire, CHU Besancon", "orgId": "508575", "orgCategory": "laboratory"}, "dateUpdated": "2024-01-26T00:00:00Z", "dateCreated": "2023-01-07T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "citations": [{"ids": [{"value": "28343629", "source": "PubMed"}], "type": "general"}], "comments": [{"value": "In a autosomal recessive syndrom, this homozygous inherited variant from both heterozygous parents (confirmed by parental segregation thanks to Sanger sequencing), is associated with a matching described phenotype (seizures, larges ears..)."}], "dateLastEvaluated": "2022-07-04T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}, {"attribute": {"value": "Autosomal recessive inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}], "observedIns": [{"sample": {"origin": "ORIGIN_INHERITED", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_016023.5:c.401A>G"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "617452"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB12515886"], "id": "5502945"}], "traitMappings": [{"medgens": [{"name": "Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies", "cui": "C4479520"}], "clinicalAssertionId": "5502945", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "617452", "mappingRef": "OMIM"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_flagged_submission.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_flagged_submission.xml/out.jsonl
index ed8dafc..90d3c0f 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_flagged_submission.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_flagged_submission.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "9474", "variationName": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp)", "variationType": "single nucleotide variant", "dateCreated": "2017-01-13T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2024-04-15T00:00:00Z", "accession": "VCV000009474", "version": 32, "numberOfSubmitters": 9, "numberOfSubmissions": 11, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2q11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 98346456, "stop": 98398601, "displayStart": 98346456, "displayStop": 98398601, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 98962617, "stop": 99015063, "displayStart": 98962617, "displayStop": 99015063, "strand": "+"}]}], "omims": ["600053"], "fullName": "cyclic nucleotide gated channel subunit alpha 3", "geneId": "1261", "hgncId": "HGNC:2150", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp)", "canonicalSpdi": "NC_000002.12:98396016:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2q11.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 98396017, "stop": 98396017, "displayStart": 98396017, "displayStop": 98396017, "variantLength": 1, "positionVcf": 98396017, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 99012480, "stop": 99012480, "displayStart": 99012480, "displayStop": 99012480, "variantLength": 1, "positionVcf": 99012480, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R283W", "R265W"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q16281:p.Arg283Trp", "sequenceAccessionVersion": "Q16281", "sequenceAccession": "Q16281", "change": "p.Arg283Trp"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000002.11:g.99012480C>T", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.99012480C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.98396017C>T", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.98396017C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009097.1:g.54863C>T", "sequenceAccessionVersion": "NG_009097.1", "sequenceAccession": "NG_009097", "sequenceVersion": 1, "change": "g.54863C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001079878.2:c.793C>T", "sequenceAccessionVersion": "NM_001079878.2", "sequenceAccession": "NM_001079878", "sequenceVersion": 2, "change": "c.793C>T"}, "proteinExpression": {"expression": "NP_001073347.1:p.Arg265Trp", "sequenceAccessionVersion": "NP_001073347.1", "sequenceAccession": "NP_001073347", "sequenceVersion": 1, "change": "p.Arg265Trp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001298.3:c.847C>T", "sequenceAccessionVersion": "NM_001298.3", "sequenceAccession": "NM_001298", "sequenceVersion": 3, "change": "c.847C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_001289.1:p.Arg283Trp", "sequenceAccessionVersion": "NP_001289.1", "sequenceAccession": "NP_001289", "sequenceVersion": 1, "change": "p.Arg283Trp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA254820"}, {"db": "UniProtKB", "id": "Q16281#VAR_010905"}, {"db": "OMIM", "id": "600053.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "104893613", "type": "rs"}], "alleleId": "24513", "variationId": "9474"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Achromatopsia 2", "db": "MedGen", "id": "C1857618"}], "traitSetId": "6436"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": {"value": "Pathogenic/Likely pathogenic", "dateLastEvaluated": "2023-07-08T00:00:00Z", "submissionCount": 4}}}, "title": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp) AND Achromatopsia 2", "accession": "RCV000010082", "version": 13}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Monochromacy", "db": "MedGen", "id": "C5201048"}], "traitSetId": "34298"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2014-07-21T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp) AND Monochromacy", "accession": "RCV000415133", "version": 3}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "C3661900"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": {"value": "Pathogenic", "dateLastEvaluated": "2024-01-23T00:00:00Z", "submissionCount": 6}}}, "title": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp) AND not provided", "accession": "RCV001222182", "version": 26}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": "Pathogenic/Likely pathogenic", "citations": [{"ids": [{"value": "11536077", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "17693388", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "20238023", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "24504161", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "25637600", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "26992781", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9662398", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "none provided", "type": "Alternate"}, {"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "C3661900"}]}], "type": "TYPE_DISEASE", "id": "9460", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Colorblindness, total", "type": "Alternate"}, {"value": "Rod monochromatism 2", "type": "Alternate"}, {"value": "Rod monochromacy 2", "type": "Alternate"}, {"value": "Achromatopsia 2", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Achromatopsia+2/116"}, {"db": "MONDO", "id": "MONDO:0009003"}]}], "symbols": [{"value": "ACHM2", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}, {"value": "RMCH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}, {"value": "CNGA3", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "Achromatopsia is characterized by reduced visual acuity, pendular nystagmus, increased sensitivity to light (photophobia), a small central scotoma, eccentric fixation, and reduced or complete loss of color discrimination. All individuals with achromatopsia (achromats) have impaired color discrimination along all three axes of color vision corresponding to the three cone classes: the protan or long-wavelength-sensitive cone axis (red), the deutan or middle-wavelength-sensitive cone axis (green), and the tritan or short-wavelength-sensitive cone axis (blue). Most individuals have complete achromatopsia, with total lack of function of all three types of cones. Rarely, individuals have incomplete achromatopsia, in which one or more cone types may be partially functioning. The manifestations are similar to those of individuals with complete achromatopsia, but generally less severe. Hyperopia is common in achromatopsia. Nystagmus develops during the first few weeks after birth followed by increased sensitivity to bright light. Best visual acuity varies with severity of the disease; it is 20/200 or less in complete achromatopsia and may be as high as 20/80 in incomplete achromatopsia. Visual acuity is usually stable over time; both nystagmus and sensitivity to bright light may improve slightly. Although the fundus is usually normal, macular changes (which may show early signs of progression) and vessel narrowing may be present in some affected individuals. Defects in the macula are visible on optical coherence tomography."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1418"}]}, {"attribute": {"base": {"integerValue": "9649"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9649"}]}], "citations": [{"ids": [{"value": "20301591", "source": "PubMed"}, {"value": "NBK1418", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "3110037", "source": "pmc"}], "type": "Translational/Evidence-based", "abbrev": "EuroGentest, 2011"}], "xrefs": [{"db": "Orphanet", "id": "49382"}, {"db": "MedGen", "id": "C1857618"}, {"db": "MONDO", "id": "MONDO:0009003"}, {"db": "OMIM", "id": "216900", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "6436", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Monochromacy", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007803"}]}], "xrefs": [{"db": "MedGen", "id": "C5201048"}, {"db": "Human Phenotype Ontology", "id": "HP:0007803", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0007954", "type": "secondary"}]}], "type": "TYPE_FINDING", "id": "34298", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2024-01-23T00:00:00Z", "dateCreated": "2017-01-13T00:00:00Z", "mostRecentSubmission": "2024-04-15T00:00:00Z", "numberOfSubmitters": 9, "numberOfSubmissions": 11}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "600053.0002_ACHROMATOPSIA 2", "title": "CNGA3, ARG283TRP_ACHROMATOPSIA 2"}, "clinvarAccession": {"accession": "SCV000030303", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-04-21T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-10-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a family with rod monochromacy (ACHM2; 216900), Kohl et al. (1998) found homozygosity for a C-to-T transition at nucleotide 887 of the CNGA3 gene, resulting in an arg283-to-trp (R283W) substitution."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9662398", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}, {"attributes": [{"base": {"value": "Wissinger et al. (2001) found the R283W mutation in 19 of 110 mutant alleles, including 14 alleles in 7 homozygous patients. Haplotype analysis suggested that these alleles, which were particularly frequent among patients from Scandinavia and northern Italy, have a common origin. Some of the patients homozygous for this mutation had complete achromatopsia with no detectable cone function, whereas others had incomplete achromatopsia with residual cone ERG responses and/or color vision."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "11536077", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "names": [{"value": "CNGA3, ARG283TRP"}], "variantType": "Variation", "otherNames": [{"value": "ARG283TRP", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "600053.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ACHROMATOPSIA 2", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "30303"}, {"clinvarSubmissionId": {"localKey": "GDXSV:216529", "localKeyIsSubmitted": false}, "clinvarAccession": {"accession": "SCV001773382", "version": 3, "submitterIdentifiers": {"submitterName": "GeneDx", "orgId": "26957", "orgCategory": "laboratory"}, "dateUpdated": "2023-03-04T00:00:00Z", "dateCreated": "2021-08-07T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "comments": [{"value": "Published functional studies demonstrate a damaging effect consistent with loss-of-function (Muraki-Oda et al., 2007; Ding et al., 2010); In silico analysis supports that this missense variant has a deleterious effect on protein structure/function; This variant is associated with the following publications: (PMID: 26992781, 31237654, 32141364, 20238023, 24504161, 9662398, 16319819, 17693388, 11536077, 30682209, 31877759, 32869108, 33562422, 32037395)"}], "dateLastEvaluated": "2021-11-26T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "GeneDx Variant Classification Process June 2021"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/ft/byid/fc81e176/genedx_variant_classification_process_june_2021.pdf"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "otherNames": [{"value": "GDX:724380", "type": "SubmitterVariantId"}], "attributes": [{"attribute": {"base": {"value": "NM_001298.2:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Not Provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["GeneDX_Clinvar_Submission_20_20210805063641", "GeneDX_Clinvar_Submission_74_20211208054205"], "id": "3482937"}, {"clinvarSubmissionId": {"localKey": "50189|OMIM:216900", "submittedAssembly": "GRCh38"}, "clinvarAccession": {"accession": "SCV004041266", "version": 1, "submitterIdentifiers": {"submitterName": "Baylor Genetics", "orgId": "1006", "orgCategory": "laboratory"}, "dateUpdated": "2023-10-07T00:00:00Z", "dateCreated": "2023-10-07T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2023-07-08T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001298.3:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB13858663"], "id": "7562760"}, {"clinvarSubmissionId": {"localKey": "112028|MedGen:CN517202", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV002063881", "version": 14, "submitterIdentifiers": {"submitterName": "CeGaT Center for Human Genetics Tuebingen", "orgId": "505870", "orgCategory": "laboratory", "orgAbbreviation": "CHGT"}, "dateUpdated": "2024-04-15T00:00:00Z", "dateCreated": "2022-01-26T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2022-10-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "CeGaT Center For Human Genetics Tuebingen Variant Classification Criteria Version 2"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/api/2.0/files/0ynenhfo/cegat_center_for_human_genetics_tuebingen_-_variant_classification_criteria_-_version_2.pdf/?format=attachment"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "4"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 99012480, "stop": 99012480, "variantLength": 1, "referenceAllele": "C", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"xrefs": [{"db": "MedGen", "id": "CN517202", "type": "CUI"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["2022-01", "2022-01-corrected", "2022-04", "2022-07", "2022-08", "2022-10.3", "2023-01", "2023-04", "2023-09-add-ACMG-details", "2023-10", "2024-04", "SUB13641132", "SUB13985080", "SUB14102099", "SUB14290090"], "id": "4044408"}, {"clinvarSubmissionId": {"localKey": "CMGVARID00576|HPO:HP:0007803", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000492977", "version": 1, "submitterIdentifiers": {"submitterName": "Centre for Mendelian Genomics, University Medical Centre Ljubljana", "orgId": "505952", "orgCategory": "clinic", "orgAbbreviation": "CMG-UMCL"}, "dateUpdated": "2017-01-13T00:00:00Z", "dateCreated": "2017-01-13T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "dateLastEvaluated": "2014-07-21T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001298.2:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0007803"}]}], "type": "TYPE_FINDING"}, "studyDescription": "Diagnostic exome sequencing variant classification from diagnostic exome sequencing programme", "submissionNames": ["CMG_Slovenia_Submission_1"], "id": "962633"}, {"clinvarSubmissionId": {"localKey": "NM_001298.2:c.847C>T|OMIM:216900", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000804621", "version": 2, "submitterIdentifiers": {"submitterName": "Joint Genome Diagnostic Labs from Nijmegen and Maastricht, Radboudumc and MUMC+", "orgId": "505925", "orgCategory": "laboratory", "orgAbbreviation": "Radboudumc_MUMC+"}, "dateUpdated": "2018-09-10T00:00:00Z", "dateCreated": "2018-09-10T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2016-09-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}, {"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_CHROMOSOMES"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001298.2:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyDescription": "Variants as described in Haer-Wigman et al. 2016", "submissionNames": ["haerwigman2016"], "id": "1569297"}, {"clinvarSubmissionId": {"localKey": "NM_001298.2:c.847C>T|OMIM:216900", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001367338", "version": 2, "submitterIdentifiers": {"submitterName": "Centre for Mendelian Genomics, University Medical Centre Ljubljana", "orgId": "505952", "orgCategory": "clinic", "orgAbbreviation": "CMG-UMCL"}, "dateUpdated": "2020-12-12T00:00:00Z", "dateCreated": "2020-07-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "comments": [{"value": "This variant was classified as: Likely pathogenic. The following ACMG criteria were applied in classifying this variant: PM1,PM2,PM5,PP3,PP5."}], "dateLastEvaluated": "2019-09-12T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001298.2:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB8622351"], "id": "2695419"}, {"clinvarSubmissionId": {"localKey": "report_configuration_variant_id:3272964"}, "clinvarAccession": {"accession": "SCV001905566", "version": 1, "submitterIdentifiers": {"submitterName": "Institute of Medical Genetics and Applied Genomics, University Hospital T\u00fcbingen", "orgId": "506385", "orgCategory": "laboratory", "orgAbbreviation": "IMGAG"}, "dateUpdated": "2021-09-25T00:00:00Z", "dateCreated": "2021-09-25T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2021-09-15T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "Autosomal recessive inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}, {"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"value": "DX2106067"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0011516"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 99012480, "referenceAllele": "C", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "3745783"}, {"clinvarSubmissionId": {"localKey": ":Chr.2_99012480_99012480_C_T|not provided", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001956988", "version": 1, "submitterIdentifiers": {"submitterName": "Joint Genome Diagnostic Labs from Nijmegen and Maastricht, Radboudumc and MUMC+", "orgId": "505925", "orgCategory": "laboratory", "orgAbbreviation": "Radboudumc_MUMC+"}, "dateUpdated": "2021-10-02T00:00:00Z", "dateCreated": "2021-10-02T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "Diagnostic Laboratory, Department of Genetics, University Medical Center Groningen", "orgId": "506382", "orgCategory": "laboratory"}, "type": "TYPE_BEHALF"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 99012480, "stop": 99012480, "variantLength": 1, "referenceAllele": "C", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "studyName": "VKGL Data-share Consensus", "submissionNames": ["SUB10449206"], "id": "3838167"}, {"clinvarSubmissionId": {"localKey": ":Chr.2_99012480_99012480_C_T|not provided", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001966736", "version": 1, "submitterIdentifiers": {"submitterName": "Clinical Genetics DNA and cytogenetics Diagnostics Lab, Erasmus MC, Erasmus Medical Center", "orgId": "506497", "orgCategory": "laboratory", "orgAbbreviation": "CGDx-EMC"}, "dateUpdated": "2021-10-07T00:00:00Z", "dateCreated": "2021-10-07T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "Diagnostic Laboratory, Department of Genetics, University Medical Center Groningen", "orgId": "506382", "orgCategory": "laboratory"}, "type": "TYPE_BEHALF"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 99012480, "stop": 99012480, "variantLength": 1, "referenceAllele": "C", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "studyName": "VKGL Data-share Consensus", "submissionNames": ["SUB10405229"], "id": "3859083"}, {"clinvarSubmissionId": {"localKey": "2474236|MedGen:CN517202", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001394271", "version": 5, "submitterIdentifiers": {"submitterName": "Invitae", "orgId": "500031", "orgCategory": "laboratory", "orgAbbreviation": "Invitae"}, "dateUpdated": "2024-02-14T00:00:00Z", "dateCreated": "2020-07-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "citations": [{"ids": [{"value": "9662398", "source": "PubMed"}]}, {"ids": [{"value": "11536077", "source": "PubMed"}]}, {"ids": [{"value": "24504161", "source": "PubMed"}]}, {"ids": [{"value": "25637600", "source": "PubMed"}]}, {"ids": [{"value": "26992781", "source": "PubMed"}]}, {"ids": [{"value": "17693388", "source": "PubMed"}]}, {"ids": [{"value": "20238023", "source": "PubMed"}]}], "comments": [{"value": "This sequence change replaces arginine, which is basic and polar, with tryptophan, which is neutral and slightly polar, at codon 283 of the CNGA3 protein (p.Arg283Trp). This variant is present in population databases (rs104893613, gnomAD 0.02%). This missense change has been observed in individual(s) with achromatopsia (PMID: 9662398, 11536077, 24504161, 25637600, 26992781). In at least one individual the data is consistent with being in trans (on the opposite chromosome) from a pathogenic variant. It has also been observed to segregate with disease in related individuals. ClinVar contains an entry for this variant (Variation ID: 9474). Advanced modeling of protein sequence and biophysical properties (such as structural, functional, and spatial information, amino acid conservation, physicochemical variation, residue mobility, and thermodynamic stability) performed at Invitae indicates that this missense variant is expected to disrupt CNGA3 protein function with a positive predictive value of 95%. Experimental studies have shown that this missense change affects CNGA3 function (PMID: 17693388, 20238023). For these reasons, this variant has been classified as Pathogenic."}], "dateLastEvaluated": "2024-01-23T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "Invitae Variant Classification Sherloc (09022015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "28492532", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NC_000002.11:g.99012480C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MedGen", "id": "CN517202", "type": "CUI"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB11431369", "SUB12507860", "SUB14200283", "SUB8755776"], "id": "2729182"}], "traitMappings": [{"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "3745783", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "4044408", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "CN517202", "mappingRef": "MedGen"}, {"medgens": [{"name": "Monochromacy", "cui": "C5201048"}], "clinicalAssertionId": "962633", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0007803", "mappingRef": "HP"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "2729182", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "CN517202", "mappingRef": "MedGen"}, {"medgens": [{"name": "Achromatopsia 2", "cui": "C1857618"}], "clinicalAssertionId": "1569297", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "216900", "mappingRef": "OMIM"}, {"medgens": [{"name": "Achromatopsia", "cui": "C0152200"}], "clinicalAssertionId": "3745783", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0011516", "mappingRef": "HP"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "3482937", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Not Provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "3859083", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "3838167", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "Achromatopsia 2", "cui": "C1857618"}], "clinicalAssertionId": "2695419", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "216900", "mappingRef": "OMIM"}, {"medgens": [{"name": "Achromatopsia 2", "cui": "C1857618"}], "clinicalAssertionId": "7562760", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "216900", "mappingRef": "OMIM"}, {"medgens": [{"name": "Achromatopsia 2", "cui": "C1857618"}], "clinicalAssertionId": "30303", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ACHROMATOPSIA 2", "mappingRef": "Preferred"}]}}
+{"variationId": "9474", "variationName": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp)", "variationType": "single nucleotide variant", "dateCreated": "2017-01-13T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2024-04-15T00:00:00Z", "accession": "VCV000009474", "version": 32, "numberOfSubmitters": 9, "numberOfSubmissions": 11, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2q11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 98346456, "stop": 98398601, "displayStart": 98346456, "displayStop": 98398601, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 98962617, "stop": 99015063, "displayStart": 98962617, "displayStop": 99015063, "strand": "+"}]}], "omims": ["600053"], "fullName": "cyclic nucleotide gated channel subunit alpha 3", "geneId": "1261", "hgncId": "HGNC:2150", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp)", "canonicalSpdi": "NC_000002.12:98396016:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["2q11.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 98396017, "stop": 98396017, "displayStart": 98396017, "displayStop": 98396017, "variantLength": 1, "positionVcf": 98396017, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 99012480, "stop": 99012480, "displayStart": 99012480, "displayStop": 99012480, "variantLength": 1, "positionVcf": 99012480, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R283W", "R265W"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q16281:p.Arg283Trp", "sequenceAccessionVersion": "Q16281", "sequenceAccession": "Q16281", "change": "p.Arg283Trp"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000002.11:g.99012480C>T", "sequenceAccessionVersion": "NC_000002.11", "sequenceAccession": "NC_000002", "sequenceVersion": 11, "change": "g.99012480C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000002.12:g.98396017C>T", "sequenceAccessionVersion": "NC_000002.12", "sequenceAccession": "NC_000002", "sequenceVersion": 12, "change": "g.98396017C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009097.1:g.54863C>T", "sequenceAccessionVersion": "NG_009097.1", "sequenceAccession": "NG_009097", "sequenceVersion": 1, "change": "g.54863C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001079878.2:c.793C>T", "sequenceAccessionVersion": "NM_001079878.2", "sequenceAccession": "NM_001079878", "sequenceVersion": 2, "change": "c.793C>T"}, "proteinExpression": {"expression": "NP_001073347.1:p.Arg265Trp", "sequenceAccessionVersion": "NP_001073347.1", "sequenceAccession": "NP_001073347", "sequenceVersion": 1, "change": "p.Arg265Trp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001298.3:c.847C>T", "sequenceAccessionVersion": "NM_001298.3", "sequenceAccession": "NM_001298", "sequenceVersion": 3, "change": "c.847C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_001289.1:p.Arg283Trp", "sequenceAccessionVersion": "NP_001289.1", "sequenceAccession": "NP_001289", "sequenceVersion": 1, "change": "p.Arg283Trp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA254820"}, {"db": "UniProtKB", "id": "Q16281#VAR_010905"}, {"db": "OMIM", "id": "600053.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "104893613", "type": "rs"}], "alleleId": "24513", "variationId": "9474"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Achromatopsia 2", "db": "MedGen", "id": "C1857618"}], "traitSetId": "6436"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": {"value": "Pathogenic/Likely pathogenic", "dateLastEvaluated": "2023-07-08T00:00:00Z", "submissionCount": 4}}}, "title": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp) AND Achromatopsia 2", "accession": "RCV000010082", "version": 13}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Monochromacy", "db": "MedGen", "id": "C5201048"}], "traitSetId": "34298"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2014-07-21T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp) AND Monochromacy", "accession": "RCV000415133", "version": 3}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "C3661900"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": {"value": "Pathogenic", "dateLastEvaluated": "2024-01-23T00:00:00Z", "submissionCount": 6}}}, "title": "NM_001298.3(CNGA3):c.847C>T (p.Arg283Trp) AND not provided", "accession": "RCV001222182", "version": 26}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_MULTIPLE_SUBMITTERS_NO_CONFLICTS", "description": "Pathogenic/Likely pathogenic", "citations": [{"ids": [{"value": "11536077", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "17693388", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "20238023", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "24504161", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "25637600", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "26992781", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9662398", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "none provided", "type": "Alternate"}, {"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "C3661900"}]}], "type": "TYPE_DISEASE", "id": "9460", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Colorblindness, total", "type": "Alternate"}, {"value": "Rod monochromatism 2", "type": "Alternate"}, {"value": "Rod monochromacy 2", "type": "Alternate"}, {"value": "Achromatopsia 2", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Achromatopsia+2/116"}, {"db": "MONDO", "id": "MONDO:0009003"}]}], "symbols": [{"value": "ACHM2", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}, {"value": "RMCH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}, {"value": "CNGA3", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "Achromatopsia is characterized by reduced visual acuity, pendular nystagmus, increased sensitivity to light (photophobia), a small central scotoma, eccentric fixation, and reduced or complete loss of color discrimination. All individuals with achromatopsia (achromats) have impaired color discrimination along all three axes of color vision corresponding to the three cone classes: the protan or long-wavelength-sensitive cone axis (red), the deutan or middle-wavelength-sensitive cone axis (green), and the tritan or short-wavelength-sensitive cone axis (blue). Most individuals have complete achromatopsia, with total lack of function of all three types of cones. Rarely, individuals have incomplete achromatopsia, in which one or more cone types may be partially functioning. The manifestations are similar to those of individuals with complete achromatopsia, but generally less severe. Hyperopia is common in achromatopsia. Nystagmus develops during the first few weeks after birth followed by increased sensitivity to bright light. Best visual acuity varies with severity of the disease; it is 20/200 or less in complete achromatopsia and may be as high as 20/80 in incomplete achromatopsia. Visual acuity is usually stable over time; both nystagmus and sensitivity to bright light may improve slightly. Although the fundus is usually normal, macular changes (which may show early signs of progression) and vessel narrowing may be present in some affected individuals. Defects in the macula are visible on optical coherence tomography."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1418"}]}, {"attribute": {"base": {"integerValue": "9649"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "9649"}]}], "citations": [{"ids": [{"value": "20301591", "source": "PubMed"}, {"value": "NBK1418", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "3110037", "source": "pmc"}], "type": "Translational/Evidence-based", "abbrev": "EuroGentest, 2011"}], "xrefs": [{"db": "Orphanet", "id": "49382"}, {"db": "MedGen", "id": "C1857618"}, {"db": "MONDO", "id": "MONDO:0009003"}, {"db": "OMIM", "id": "216900", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "6436", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Monochromacy", "type": "Preferred", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0007803"}]}], "xrefs": [{"db": "MedGen", "id": "C5201048"}, {"db": "Human Phenotype Ontology", "id": "HP:0007803", "type": "primary"}, {"db": "Human Phenotype Ontology", "id": "HP:0007954", "type": "secondary"}]}], "type": "TYPE_FINDING", "id": "34298", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2024-01-23T00:00:00Z", "dateCreated": "2017-01-13T00:00:00Z", "mostRecentSubmission": "2024-04-15T00:00:00Z", "numberOfSubmitters": 9, "numberOfSubmissions": 11}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "600053.0002_ACHROMATOPSIA 2", "title": "CNGA3, ARG283TRP_ACHROMATOPSIA 2"}, "clinvarAccession": {"accession": "SCV000030303", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-04-21T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-10-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In affected members of a family with rod monochromacy (ACHM2; 216900), Kohl et al. (1998) found homozygosity for a C-to-T transition at nucleotide 887 of the CNGA3 gene, resulting in an arg283-to-trp (R283W) substitution."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9662398", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}, {"attributes": [{"base": {"value": "Wissinger et al. (2001) found the R283W mutation in 19 of 110 mutant alleles, including 14 alleles in 7 homozygous patients. Haplotype analysis suggested that these alleles, which were particularly frequent among patients from Scandinavia and northern Italy, have a common origin. Some of the patients homozygous for this mutation had complete achromatopsia with no detectable cone function, whereas others had incomplete achromatopsia with residual cone ERG responses and/or color vision."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "11536077", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "name": {"value": "CNGA3, ARG283TRP"}, "variantType": "Variation", "otherNames": [{"value": "ARG283TRP", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "600053.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "ACHROMATOPSIA 2", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "30303"}, {"clinvarSubmissionId": {"localKey": "GDXSV:216529", "localKeyIsSubmitted": false}, "clinvarAccession": {"accession": "SCV001773382", "version": 3, "submitterIdentifiers": {"submitterName": "GeneDx", "orgId": "26957", "orgCategory": "laboratory"}, "dateUpdated": "2023-03-04T00:00:00Z", "dateCreated": "2021-08-07T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "comments": [{"value": "Published functional studies demonstrate a damaging effect consistent with loss-of-function (Muraki-Oda et al., 2007; Ding et al., 2010); In silico analysis supports that this missense variant has a deleterious effect on protein structure/function; This variant is associated with the following publications: (PMID: 26992781, 31237654, 32141364, 20238023, 24504161, 9662398, 16319819, 17693388, 11536077, 30682209, 31877759, 32869108, 33562422, 32037395)"}], "dateLastEvaluated": "2021-11-26T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "GeneDx Variant Classification Process June 2021"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/ft/byid/fc81e176/genedx_variant_classification_process_june_2021.pdf"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "otherNames": [{"value": "GDX:724380", "type": "SubmitterVariantId"}], "attributes": [{"attribute": {"base": {"value": "NM_001298.2:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Not Provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["GeneDX_Clinvar_Submission_20_20210805063641", "GeneDX_Clinvar_Submission_74_20211208054205"], "id": "3482937"}, {"clinvarSubmissionId": {"localKey": "50189|OMIM:216900", "submittedAssembly": "GRCh38"}, "clinvarAccession": {"accession": "SCV004041266", "version": 1, "submitterIdentifiers": {"submitterName": "Baylor Genetics", "orgId": "1006", "orgCategory": "laboratory"}, "dateUpdated": "2023-10-07T00:00:00Z", "dateCreated": "2023-10-07T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2023-07-08T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001298.3:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB13858663"], "id": "7562760"}, {"clinvarSubmissionId": {"localKey": "112028|MedGen:CN517202", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV002063881", "version": 14, "submitterIdentifiers": {"submitterName": "CeGaT Center for Human Genetics Tuebingen", "orgId": "505870", "orgCategory": "laboratory", "orgAbbreviation": "CHGT"}, "dateUpdated": "2024-04-15T00:00:00Z", "dateCreated": "2022-01-26T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2022-10-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "CeGaT Center For Human Genetics Tuebingen Variant Classification Criteria Version 2"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/api/2.0/files/0ynenhfo/cegat_center_for_human_genetics_tuebingen_-_variant_classification_criteria_-_version_2.pdf/?format=attachment"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "4"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 99012480, "stop": 99012480, "variantLength": 1, "referenceAllele": "C", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"xrefs": [{"db": "MedGen", "id": "CN517202", "type": "CUI"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["2022-01", "2022-01-corrected", "2022-04", "2022-07", "2022-08", "2022-10.3", "2023-01", "2023-04", "2023-09-add-ACMG-details", "2023-10", "2024-04", "SUB13641132", "SUB13985080", "SUB14102099", "SUB14290090"], "id": "4044408"}, {"clinvarSubmissionId": {"localKey": "CMGVARID00576|HPO:HP:0007803", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000492977", "version": 1, "submitterIdentifiers": {"submitterName": "Centre for Mendelian Genomics, University Medical Centre Ljubljana", "orgId": "505952", "orgCategory": "clinic", "orgAbbreviation": "CMG-UMCL"}, "dateUpdated": "2017-01-13T00:00:00Z", "dateCreated": "2017-01-13T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "dateLastEvaluated": "2014-07-21T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001298.2:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0007803"}]}], "type": "TYPE_FINDING"}, "studyDescription": "Diagnostic exome sequencing variant classification from diagnostic exome sequencing programme", "submissionNames": ["CMG_Slovenia_Submission_1"], "id": "962633"}, {"clinvarSubmissionId": {"localKey": "NM_001298.2:c.847C>T|OMIM:216900", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000804621", "version": 2, "submitterIdentifiers": {"submitterName": "Joint Genome Diagnostic Labs from Nijmegen and Maastricht, Radboudumc and MUMC+", "orgId": "505925", "orgCategory": "laboratory", "orgAbbreviation": "Radboudumc_MUMC+"}, "dateUpdated": "2018-09-10T00:00:00Z", "dateCreated": "2018-09-10T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2016-09-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}, {"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_CHROMOSOMES"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001298.2:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyDescription": "Variants as described in Haer-Wigman et al. 2016", "submissionNames": ["haerwigman2016"], "id": "1569297"}, {"clinvarSubmissionId": {"localKey": "NM_001298.2:c.847C>T|OMIM:216900", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001367338", "version": 2, "submitterIdentifiers": {"submitterName": "Centre for Mendelian Genomics, University Medical Centre Ljubljana", "orgId": "505952", "orgCategory": "clinic", "orgAbbreviation": "CMG-UMCL"}, "dateUpdated": "2020-12-12T00:00:00Z", "dateCreated": "2020-07-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "comments": [{"value": "This variant was classified as: Likely pathogenic. The following ACMG criteria were applied in classifying this variant: PM1,PM2,PM5,PP3,PP5."}], "dateLastEvaluated": "2019-09-12T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_001298.2:c.847C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "216900", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB8622351"], "id": "2695419"}, {"clinvarSubmissionId": {"localKey": "report_configuration_variant_id:3272964"}, "clinvarAccession": {"accession": "SCV001905566", "version": 1, "submitterIdentifiers": {"submitterName": "Institute of Medical Genetics and Applied Genomics, University Hospital T\u00fcbingen", "orgId": "506385", "orgCategory": "laboratory", "orgAbbreviation": "IMGAG"}, "dateUpdated": "2021-09-25T00:00:00Z", "dateCreated": "2021-09-25T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2021-09-15T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "Autosomal recessive inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}, {"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"value": "DX2106067"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0011516"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 99012480, "referenceAllele": "C", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "3745783"}, {"clinvarSubmissionId": {"localKey": ":Chr.2_99012480_99012480_C_T|not provided", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001956988", "version": 1, "submitterIdentifiers": {"submitterName": "Joint Genome Diagnostic Labs from Nijmegen and Maastricht, Radboudumc and MUMC+", "orgId": "505925", "orgCategory": "laboratory", "orgAbbreviation": "Radboudumc_MUMC+"}, "dateUpdated": "2021-10-02T00:00:00Z", "dateCreated": "2021-10-02T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "Diagnostic Laboratory, Department of Genetics, University Medical Center Groningen", "orgId": "506382", "orgCategory": "laboratory"}, "type": "TYPE_BEHALF"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 99012480, "stop": 99012480, "variantLength": 1, "referenceAllele": "C", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "studyName": "VKGL Data-share Consensus", "submissionNames": ["SUB10449206"], "id": "3838167"}, {"clinvarSubmissionId": {"localKey": ":Chr.2_99012480_99012480_C_T|not provided", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001966736", "version": 1, "submitterIdentifiers": {"submitterName": "Clinical Genetics DNA and cytogenetics Diagnostics Lab, Erasmus MC, Erasmus Medical Center", "orgId": "506497", "orgCategory": "laboratory", "orgAbbreviation": "CGDx-EMC"}, "dateUpdated": "2021-10-07T00:00:00Z", "dateCreated": "2021-10-07T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "Diagnostic Laboratory, Department of Genetics, University Medical Center Groningen", "orgId": "506382", "orgCategory": "laboratory"}, "type": "TYPE_BEHALF"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "start": 99012480, "stop": 99012480, "variantLength": 1, "referenceAllele": "C", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "studyName": "VKGL Data-share Consensus", "submissionNames": ["SUB10405229"], "id": "3859083"}, {"clinvarSubmissionId": {"localKey": "2474236|MedGen:CN517202", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001394271", "version": 5, "submitterIdentifiers": {"submitterName": "Invitae", "orgId": "500031", "orgCategory": "laboratory", "orgAbbreviation": "Invitae"}, "dateUpdated": "2024-02-14T00:00:00Z", "dateCreated": "2020-07-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "citations": [{"ids": [{"value": "9662398", "source": "PubMed"}]}, {"ids": [{"value": "11536077", "source": "PubMed"}]}, {"ids": [{"value": "24504161", "source": "PubMed"}]}, {"ids": [{"value": "25637600", "source": "PubMed"}]}, {"ids": [{"value": "26992781", "source": "PubMed"}]}, {"ids": [{"value": "17693388", "source": "PubMed"}]}, {"ids": [{"value": "20238023", "source": "PubMed"}]}], "comments": [{"value": "This sequence change replaces arginine, which is basic and polar, with tryptophan, which is neutral and slightly polar, at codon 283 of the CNGA3 protein (p.Arg283Trp). This variant is present in population databases (rs104893613, gnomAD 0.02%). This missense change has been observed in individual(s) with achromatopsia (PMID: 9662398, 11536077, 24504161, 25637600, 26992781). In at least one individual the data is consistent with being in trans (on the opposite chromosome) from a pathogenic variant. It has also been observed to segregate with disease in related individuals. ClinVar contains an entry for this variant (Variation ID: 9474). Advanced modeling of protein sequence and biophysical properties (such as structural, functional, and spatial information, amino acid conservation, physicochemical variation, residue mobility, and thermodynamic stability) performed at Invitae indicates that this missense variant is expected to disrupt CNGA3 protein function with a positive predictive value of 95%. Experimental studies have shown that this missense change affects CNGA3 function (PMID: 17693388, 20238023). For these reasons, this variant has been classified as Pathogenic."}], "dateLastEvaluated": "2024-01-23T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "Invitae Variant Classification Sherloc (09022015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "28492532", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CNGA3"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NC_000002.11:g.99012480C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MedGen", "id": "CN517202", "type": "CUI"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB11431369", "SUB12507860", "SUB14200283", "SUB8755776"], "id": "2729182"}], "traitMappings": [{"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "3745783", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "4044408", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "CN517202", "mappingRef": "MedGen"}, {"medgens": [{"name": "Monochromacy", "cui": "C5201048"}], "clinicalAssertionId": "962633", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0007803", "mappingRef": "HP"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "2729182", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "CN517202", "mappingRef": "MedGen"}, {"medgens": [{"name": "Achromatopsia 2", "cui": "C1857618"}], "clinicalAssertionId": "1569297", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "216900", "mappingRef": "OMIM"}, {"medgens": [{"name": "Achromatopsia", "cui": "C0152200"}], "clinicalAssertionId": "3745783", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0011516", "mappingRef": "HP"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "3482937", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Not Provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "3859083", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "3838167", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "Achromatopsia 2", "cui": "C1857618"}], "clinicalAssertionId": "2695419", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "216900", "mappingRef": "OMIM"}, {"medgens": [{"name": "Achromatopsia 2", "cui": "C1857618"}], "clinicalAssertionId": "7562760", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "216900", "mappingRef": "OMIM"}, {"medgens": [{"name": "Achromatopsia 2", "cui": "C1857618"}], "clinicalAssertionId": "30303", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "ACHROMATOPSIA 2", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_indication.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_indication.xml/out.jsonl
index 4c6f8fb..367a842 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_indication.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_indication.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "226036", "variationName": "NM_003783.3(B3GALT2):c.367T>G (p.Tyr123Asp)", "variationType": "single nucleotide variant", "dateCreated": "2016-05-21T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2016-05-21T00:00:00Z", "accession": "VCV000226036", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q31.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 193178730, "stop": 193186613, "displayStart": 193178730, "displayStop": 193186613, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 193147859, "stop": 193155742, "displayStart": 193147859, "displayStop": 193155742, "strand": "-"}]}], "omims": ["603018"], "fullName": "beta-1,3-galactosyltransferase 2", "geneId": "8707", "hgncId": "HGNC:917", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["1q31.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 193122031, "stop": 193254815, "displayStart": 193122031, "displayStop": 193254815, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 193091087, "stop": 193223944, "displayStart": 193091087, "displayStop": 193223944, "strand": "+"}]}], "omims": ["607393"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2022-04-13T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=CDC73"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2022-04-13T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=CDC73"}, "fullName": "cell division cycle 73", "geneId": "79577", "hgncId": "HGNC:16783", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_003783.3(B3GALT2):c.367T>G (p.Tyr123Asp)", "canonicalSpdi": "NC_000001.11:193181195:A:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q31.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 193181196, "stop": 193181196, "displayStart": 193181196, "displayStop": 193181196, "variantLength": 1, "positionVcf": 193181196, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 193150326, "stop": 193150326, "displayStart": 193150326, "displayStop": 193150326, "variantLength": 1, "positionVcf": 193150326, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["Y123D"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.193150326A>C", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.193150326A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.193181196A>C", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.193181196A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_012691.1:g.64239A>C", "sequenceAccessionVersion": "NG_012691.1", "sequenceAccession": "NG_012691", "sequenceVersion": 1, "change": "g.64239A>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NG_052990.1:g.10418T>G", "sequenceAccessionVersion": "NG_052990.1", "sequenceAccession": "NG_052990", "sequenceVersion": 1, "change": "g.10418T>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_003783.3:c.367T>G", "sequenceAccessionVersion": "NM_003783.3", "sequenceAccession": "NM_003783", "sequenceVersion": 3, "change": "c.367T>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_003774.1:p.Tyr123Asp", "sequenceAccessionVersion": "NP_003774.1", "sequenceAccession": "NP_003774", "sequenceVersion": 1, "change": "p.Tyr123Asp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_024529.5:c.973-22599A>C", "sequenceAccessionVersion": "NM_024529.5", "sequenceAccession": "NM_024529", "sequenceVersion": 5, "change": "c.973-22599A>C", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_507:g.64239A>C", "sequenceAccessionVersion": "LRG_507", "sequenceAccession": "LRG_507"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA1303641"}, {"db": "dbSNP", "id": "41265203", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.0006, "source": "1000 Genomes Project", "minorAllele": "C"}, "alleleId": "227841", "variationId": "226036"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hyperparathyroidism 2 with jaw tumors", "db": "MedGen", "id": "C1704981"}], "traitSetId": "833"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely benign", "dateLastEvaluated": "2015-03-11T00:00:00Z", "submissionCount": 1}}}, "title": "NM_003783.3(B3GALT2):c.367T>G (p.Tyr123Asp) AND Hyperparathyroidism 2 with jaw tumors", "accession": "RCV000211442", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely benign", "conditions": [{"traits": [{"names": [{"value": "Hyperparathyroidism 2 with jaw tumors", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0007768"}]}, {"value": "HYPERPARATHYROIDISM, FAMILIAL PRIMARY, WITH MULTIPLE OSSIFYING JAW FIBROMAS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "145001", "type": "MIM"}]}, {"value": "HYPERPARATHYROIDISM-JAW TUMOR SYNDROME, HEREDITARY", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "145001", "type": "MIM"}]}, {"value": "Hyperparathyroidism 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Hyperparathyroidism+2/8598"}]}], "symbols": [{"value": "HPT-JT", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "145001", "type": "MIM"}]}, {"value": "HRPT2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "145001", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "CDC73-Related Disorders"}, "type": "keyword"}, "xrefs": [{"db": "GeneReviews", "id": "226120"}]}, {"attribute": {"base": {"value": "The spectrum of CDC73-related disorders includes the following phenotypes: Hyperparathyroidism-jaw tumor (HPT-JT) syndrome. Primary hyperparathyroidism, the main finding of HPT-JT syndrome, occurs in up to 95% of affected individuals; onset is typically in late adolescence or early adulthood. HPT-JT-associated primary hyperparathyroidism is usually caused by a single parathyroid adenoma. In approximately 10%-15% of individuals, primary hyperparathyroidism is caused by parathyroid carcinoma. Ossifying fibromas of the mandible or maxilla, also known as cementifying fibromas and cemento-ossifying fibromas, occur in 30%-40% of individuals with HPT-JT syndrome. Although benign, these tumors can be locally aggressive and may continue to enlarge if not treated. Approximately 20% of individuals with HPT-JT syndrome have kidney lesions, most commonly cysts; renal hamartomas and (more rarely) Wilms tumor have also been reported. Benign and malignant uterine tumors appear to be common in women with HPT-JT syndrome. Parathyroid carcinoma. Most parathyroid carcinomas are functional, resulting in hyperparathyroidism and a high serum calcium level; however, nonfunctioning parathyroid carcinomas are also rarely described in individuals with a CDC73-related disorder. A germline CDC73 pathogenic variant has been identified in 20%-29% of individuals with apparently sporadic parathyroid carcinoma. Familial isolated hyperparathyroidism (FIHP). FIHP is characterized by primary hyperparathyroidism without other associated syndromic features. Individuals with CDC73-related FIHP tend to have a more severe clinical presentation and younger age of onset than individuals with FIHP in whom a CDC73 pathogenic variant has not been identified."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK3789"}]}, {"attribute": {"base": {"integerValue": "10829"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10829"}]}], "citations": [{"ids": [{"value": "20301471", "source": "PubMed"}, {"value": "NBK1294", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "20301744", "source": "PubMed"}, {"value": "NBK3789", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "99880"}, {"db": "MedGen", "id": "C1704981"}, {"db": "MONDO", "id": "MONDO:0007768"}, {"db": "OMIM", "id": "145001", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "833", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2015-03-11T00:00:00Z", "dateCreated": "2016-05-21T00:00:00Z", "mostRecentSubmission": "2016-05-21T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "UWMG_6788739|MedGen:C1704981", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000212171", "version": 1, "submitterIdentifiers": {"submitterName": "CSER _CC_NCGL, University of Washington", "orgId": "505295", "orgCategory": "laboratory", "orgAbbreviation": "CSER _CC_NCGL"}, "dateUpdated": "2016-05-21T00:00:00Z", "dateCreated": "2016-05-21T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely benign", "dateLastEvaluated": "2015-03-11T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "Autosomal dominant inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}, {"attribute": {"value": "Amendola et al. (Genome Res. 2015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25637381", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN", "indication": {"traits": [{"names": [{"value": "adults with personal and/or family history of colorectal cancer and/or polyps", "type": "Preferred"}]}], "type": "TYPE_INDICATION"}}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "B3GALT2"}, {"symbol": "CDC73"}], "variantType": "Variation", "otherNames": [{"value": "NM_003783.3:c.367T>G"}], "xrefs": [{"db": "dbSNP", "id": "41265203", "type": "rsNumber"}], "attributes": [{"attribute": {"base": {"value": "NC_000001.10:g.193150326A>C"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Hyperparathyroidism-jaw tumor syndrome", "type": "Preferred"}], "xrefs": [{"db": "MedGen", "id": "C1704981", "type": "CUI"}]}], "type": "TYPE_DISEASE"}, "studyName": "CSER - NEXT Medicine variant annotation", "studyDescription": "Diagnostic and incidental finding variants identified by exome sequencing in participants having clinical genetic testing for hereditary colorectal cancer and/or polyps", "submissionNames": ["NEXT_V01_2"], "id": "504204"}], "traitMappings": [{"medgens": [{"name": "Hyperparathyroidism 2 with jaw tumors", "cui": "C1704981"}], "clinicalAssertionId": "504204", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Hyperparathyroidism-jaw tumor syndrome", "mappingRef": "Preferred"}]}}
+{"variationId": "226036", "variationName": "NM_003783.3(B3GALT2):c.367T>G (p.Tyr123Asp)", "variationType": "single nucleotide variant", "dateCreated": "2016-05-21T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2016-05-21T00:00:00Z", "accession": "VCV000226036", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q31.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 193178730, "stop": 193186613, "displayStart": 193178730, "displayStop": 193186613, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 193147859, "stop": 193155742, "displayStart": 193147859, "displayStop": 193155742, "strand": "-"}]}], "omims": ["603018"], "fullName": "beta-1,3-galactosyltransferase 2", "geneId": "8707", "hgncId": "HGNC:917", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["1q31.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 193122031, "stop": 193254815, "displayStart": 193122031, "displayStop": 193254815, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 193091087, "stop": 193223944, "displayStart": 193091087, "displayStop": 193223944, "strand": "+"}]}], "omims": ["607393"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2022-04-13T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=CDC73"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2022-04-13T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=CDC73"}, "fullName": "cell division cycle 73", "geneId": "79577", "hgncId": "HGNC:16783", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_003783.3(B3GALT2):c.367T>G (p.Tyr123Asp)", "canonicalSpdi": "NC_000001.11:193181195:A:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q31.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 193181196, "stop": 193181196, "displayStart": 193181196, "displayStop": 193181196, "variantLength": 1, "positionVcf": 193181196, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 193150326, "stop": 193150326, "displayStart": 193150326, "displayStop": 193150326, "variantLength": 1, "positionVcf": 193150326, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["Y123D"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.193150326A>C", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.193150326A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.193181196A>C", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.193181196A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_012691.1:g.64239A>C", "sequenceAccessionVersion": "NG_012691.1", "sequenceAccession": "NG_012691", "sequenceVersion": 1, "change": "g.64239A>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NG_052990.1:g.10418T>G", "sequenceAccessionVersion": "NG_052990.1", "sequenceAccession": "NG_052990", "sequenceVersion": 1, "change": "g.10418T>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_003783.3:c.367T>G", "sequenceAccessionVersion": "NM_003783.3", "sequenceAccession": "NM_003783", "sequenceVersion": 3, "change": "c.367T>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_003774.1:p.Tyr123Asp", "sequenceAccessionVersion": "NP_003774.1", "sequenceAccession": "NP_003774", "sequenceVersion": 1, "change": "p.Tyr123Asp"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_024529.5:c.973-22599A>C", "sequenceAccessionVersion": "NM_024529.5", "sequenceAccession": "NM_024529", "sequenceVersion": 5, "change": "c.973-22599A>C", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_507:g.64239A>C", "sequenceAccessionVersion": "LRG_507", "sequenceAccession": "LRG_507"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA1303641"}, {"db": "dbSNP", "id": "41265203", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.0006, "source": "1000 Genomes Project", "minorAllele": "C"}, "alleleId": "227841", "variationId": "226036"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hyperparathyroidism 2 with jaw tumors", "db": "MedGen", "id": "C1704981"}], "traitSetId": "833"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely benign", "dateLastEvaluated": "2015-03-11T00:00:00Z", "submissionCount": 1}}}, "title": "NM_003783.3(B3GALT2):c.367T>G (p.Tyr123Asp) AND Hyperparathyroidism 2 with jaw tumors", "accession": "RCV000211442", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely benign", "conditions": [{"traits": [{"names": [{"value": "Hyperparathyroidism 2 with jaw tumors", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0007768"}]}, {"value": "HYPERPARATHYROIDISM, FAMILIAL PRIMARY, WITH MULTIPLE OSSIFYING JAW FIBROMAS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "145001", "type": "MIM"}]}, {"value": "HYPERPARATHYROIDISM-JAW TUMOR SYNDROME, HEREDITARY", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "145001", "type": "MIM"}]}, {"value": "Hyperparathyroidism 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Hyperparathyroidism+2/8598"}]}], "symbols": [{"value": "HPT-JT", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "145001", "type": "MIM"}]}, {"value": "HRPT2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "145001", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "CDC73-Related Disorders"}, "type": "keyword"}, "xrefs": [{"db": "GeneReviews", "id": "226120"}]}, {"attribute": {"base": {"value": "The spectrum of CDC73-related disorders includes the following phenotypes: Hyperparathyroidism-jaw tumor (HPT-JT) syndrome. Primary hyperparathyroidism, the main finding of HPT-JT syndrome, occurs in up to 95% of affected individuals; onset is typically in late adolescence or early adulthood. HPT-JT-associated primary hyperparathyroidism is usually caused by a single parathyroid adenoma. In approximately 10%-15% of individuals, primary hyperparathyroidism is caused by parathyroid carcinoma. Ossifying fibromas of the mandible or maxilla, also known as cementifying fibromas and cemento-ossifying fibromas, occur in 30%-40% of individuals with HPT-JT syndrome. Although benign, these tumors can be locally aggressive and may continue to enlarge if not treated. Approximately 20% of individuals with HPT-JT syndrome have kidney lesions, most commonly cysts; renal hamartomas and (more rarely) Wilms tumor have also been reported. Benign and malignant uterine tumors appear to be common in women with HPT-JT syndrome. Parathyroid carcinoma. Most parathyroid carcinomas are functional, resulting in hyperparathyroidism and a high serum calcium level; however, nonfunctioning parathyroid carcinomas are also rarely described in individuals with a CDC73-related disorder. A germline CDC73 pathogenic variant has been identified in 20%-29% of individuals with apparently sporadic parathyroid carcinoma. Familial isolated hyperparathyroidism (FIHP). FIHP is characterized by primary hyperparathyroidism without other associated syndromic features. Individuals with CDC73-related FIHP tend to have a more severe clinical presentation and younger age of onset than individuals with FIHP in whom a CDC73 pathogenic variant has not been identified."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK3789"}]}, {"attribute": {"base": {"integerValue": "10829"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10829"}]}], "citations": [{"ids": [{"value": "20301471", "source": "PubMed"}, {"value": "NBK1294", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "20301744", "source": "PubMed"}, {"value": "NBK3789", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "99880"}, {"db": "MedGen", "id": "C1704981"}, {"db": "MONDO", "id": "MONDO:0007768"}, {"db": "OMIM", "id": "145001", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "833", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2015-03-11T00:00:00Z", "dateCreated": "2016-05-21T00:00:00Z", "mostRecentSubmission": "2016-05-21T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "UWMG_6788739|MedGen:C1704981", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000212171", "version": 1, "submitterIdentifiers": {"submitterName": "CSER _CC_NCGL, University of Washington", "orgId": "505295", "orgCategory": "laboratory", "orgAbbreviation": "CSER _CC_NCGL"}, "dateUpdated": "2016-05-21T00:00:00Z", "dateCreated": "2016-05-21T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely benign", "dateLastEvaluated": "2015-03-11T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "Autosomal dominant inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}, {"attribute": {"value": "Amendola et al. (Genome Res. 2015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25637381", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN", "indication": {"traits": [{"names": [{"value": "adults with personal and/or family history of colorectal cancer and/or polyps", "type": "Preferred"}]}], "type": "TYPE_INDICATION"}}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "B3GALT2"}, {"symbol": "CDC73"}], "variantType": "Variation", "otherNames": [{"value": "NM_003783.3:c.367T>G"}], "xrefs": [{"db": "dbSNP", "id": "41265203", "type": "rsNumber"}], "attributes": [{"attribute": {"base": {"value": "NC_000001.10:g.193150326A>C"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Hyperparathyroidism-jaw tumor syndrome", "type": "Preferred"}], "xrefs": [{"db": "MedGen", "id": "C1704981", "type": "CUI"}]}], "type": "TYPE_DISEASE"}, "studyName": "CSER - NEXT Medicine variant annotation", "studyDescription": "Diagnostic and incidental finding variants identified by exome sequencing in participants having clinical genetic testing for hereditary colorectal cancer and/or polyps", "submissionNames": ["NEXT_V01_2"], "id": "504204"}], "traitMappings": [{"medgens": [{"name": "Hyperparathyroidism 2 with jaw tumors", "cui": "C1704981"}], "clinicalAssertionId": "504204", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Hyperparathyroidism-jaw tumor syndrome", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_missense.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_missense.xml/out.jsonl
index 24ce662..268cc67 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_missense.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_missense.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "12205", "variationName": "NM_000490.5(AVP):c.143G>T (p.Gly48Val)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000012205", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 3082556, "stop": 3084724, "displayStart": 3082556, "displayStop": 3084724, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 3063201, "stop": 3065369, "displayStart": 3063201, "displayStop": 3065369, "strand": "-"}]}], "omims": ["192340"], "fullName": "arginine vasopressin", "geneId": "551", "hgncId": "HGNC:894", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000490.5(AVP):c.143G>T (p.Gly48Val)", "canonicalSpdi": "NC_000020.11:3083155:C:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 3083156, "stop": 3083156, "displayStart": 3083156, "displayStop": 3083156, "variantLength": 1, "positionVcf": 3083156, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 3063802, "stop": 3063802, "displayStart": 3063802, "displayStop": 3063802, "variantLength": 1, "positionVcf": 3063802, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "G17V"}], "proteinChanges": ["G48V"], "hgvsExpressions": [{"proteinExpression": {"expression": "P01185:p.Gly48Val", "sequenceAccessionVersion": "P01185", "sequenceAccession": "P01185", "change": "p.Gly48Val"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_715t1:c.143G>T", "sequenceAccessionVersion": "LRG_715t1", "sequenceAccession": "LRG_715t1", "change": "c.143G>T"}, "proteinExpression": {"expression": "LRG_715p1:p.Gly48Val", "sequenceAccessionVersion": "LRG_715p1", "sequenceAccession": "LRG_715p1", "change": "p.Gly48Val"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_715:g.6569G>T", "sequenceAccessionVersion": "LRG_715", "sequenceAccession": "LRG_715", "change": "g.6569G>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NC_000020.10:g.3063802C>A", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.3063802C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_000490.5:c.143G>T", "sequenceAccessionVersion": "NM_000490.5", "sequenceAccession": "NM_000490", "sequenceVersion": 5, "change": "c.143G>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000481.2:p.Gly48Val", "sequenceAccessionVersion": "NP_000481.2", "sequenceAccession": "NP_000481", "sequenceVersion": 2, "change": "p.Gly48Val"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.3083156C>A", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.3083156C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008663.1:g.6569G>T", "sequenceAccessionVersion": "NG_008663.1", "sequenceAccession": "NG_008663", "sequenceVersion": 1, "change": "g.6569G>T"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA121948"}, {"db": "UniProtKB", "id": "P01185#VAR_004984"}, {"db": "OMIM", "id": "192340.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121964883", "type": "rs"}], "alleleId": "27244", "variationId": "12205"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Neurohypophyseal diabetes insipidus", "db": "MedGen", "id": "C0342394"}], "traitSetId": "8098"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1996-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000490.5(AVP):c.143G>T (p.Gly48Val) AND Neurohypophyseal diabetes insipidus", "accession": "RCV000012989", "version": 24}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "1740104", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8945633", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Neurohypophyseal diabetes insipidus", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Neurogenic+diabetes+insipidus/5185"}, {"db": "Human Phenotype Ontology", "id": "HP:0000863"}, {"db": "MONDO", "id": "MONDO:0007450"}, {"db": "SNOMED CT", "id": "45369008"}]}, {"value": "Pituitary diabetes insipidus", "type": "Alternate"}, {"value": "Diabetes insipidus cranial type", "type": "Alternate"}, {"value": "DIABETES INSIPIDUS, PRIMARY CENTRAL", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "125700", "type": "MIM"}]}, {"value": "Diabetes Insipidus, Neurogenic", "type": "Alternate"}, {"value": "Hereditary central diabetes insipidus", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "30925"}]}], "symbols": [{"value": "CDI", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "125700", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "6015"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "6015"}]}], "xrefs": [{"db": "Orphanet", "id": "178029"}, {"db": "Orphanet", "id": "30925"}, {"db": "MedGen", "id": "C0342394"}, {"db": "MONDO", "id": "MONDO:0007450"}, {"db": "OMIM", "id": "125700", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "8098", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1996-11-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "192340.0002_DIABETES INSIPIDUS, NEUROHYPOPHYSEAL", "title": "AVP, GLY17VAL_DIABETES INSIPIDUS, NEUROHYPOPHYSEAL"}, "clinvarAccession": {"accession": "SCV000033234", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1996-11-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a Dutch family in which autosomal dominant diabetes insipidus (125700) could be traced back for 5 generations, Bahnsen et al. (1992) identified a G-to-T transversion within the neurophysin-encoding exon B, which converted a highly conserved glycine (gly17 of neurophysin) to a valine residue."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1740104", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "125700", "type": "MIM"}]}, {"attributes": [{"base": {"value": "Olias et al. (1996) examined whether this point mutation affects the processing and transport of the vasopressin-neurophysin precursor. They stably expressed the normal and mutant vasopressin cDNAs under the control of the cytomegalovirus promoter in the mouse pituitary cell line AtT20. The mutant precursor was synthesized, but processing and secretion were dramatically reduced compared to the normal. The mutant neurophysin staining was restricted to the endoplasmic reticulum and never reached the trans-Golgi network, whereas the normal neurophysin concentrated in the tips of the cell processes where secretory granules accumulate. These results suggested that the mutation alters the conformation of the precursor, impairs its intracellular transport, and triggers its retention."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8945633", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "AVP"}], "names": [{"value": "AVP, GLY17VAL"}], "variantType": "Variation", "otherNames": [{"value": "GLY17VAL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "192340.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DIABETES INSIPIDUS, NEUROHYPOPHYSEAL", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "33234"}], "traitMappings": [{"medgens": [{"name": "Neurohypophyseal diabetes insipidus", "cui": "C0342394"}], "clinicalAssertionId": "33234", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DIABETES INSIPIDUS, NEUROHYPOPHYSEAL", "mappingRef": "Preferred"}]}}
+{"variationId": "12205", "variationName": "NM_000490.5(AVP):c.143G>T (p.Gly48Val)", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000012205", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 3082556, "stop": 3084724, "displayStart": 3082556, "displayStop": 3084724, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 3063201, "stop": 3065369, "displayStart": 3063201, "displayStop": 3065369, "strand": "-"}]}], "omims": ["192340"], "fullName": "arginine vasopressin", "geneId": "551", "hgncId": "HGNC:894", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000490.5(AVP):c.143G>T (p.Gly48Val)", "canonicalSpdi": "NC_000020.11:3083155:C:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["20p13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 3083156, "stop": 3083156, "displayStart": 3083156, "displayStop": 3083156, "variantLength": 1, "positionVcf": 3083156, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 3063802, "stop": 3063802, "displayStart": 3063802, "displayStop": 3063802, "variantLength": 1, "positionVcf": 3063802, "referenceAlleleVcf": "C", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "G17V"}], "proteinChanges": ["G48V"], "hgvsExpressions": [{"proteinExpression": {"expression": "P01185:p.Gly48Val", "sequenceAccessionVersion": "P01185", "sequenceAccession": "P01185", "change": "p.Gly48Val"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_715t1:c.143G>T", "sequenceAccessionVersion": "LRG_715t1", "sequenceAccession": "LRG_715t1", "change": "c.143G>T"}, "proteinExpression": {"expression": "LRG_715p1:p.Gly48Val", "sequenceAccessionVersion": "LRG_715p1", "sequenceAccession": "LRG_715p1", "change": "p.Gly48Val"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_715:g.6569G>T", "sequenceAccessionVersion": "LRG_715", "sequenceAccession": "LRG_715", "change": "g.6569G>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NC_000020.10:g.3063802C>A", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.3063802C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_000490.5:c.143G>T", "sequenceAccessionVersion": "NM_000490.5", "sequenceAccession": "NM_000490", "sequenceVersion": 5, "change": "c.143G>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000481.2:p.Gly48Val", "sequenceAccessionVersion": "NP_000481.2", "sequenceAccession": "NP_000481", "sequenceVersion": 2, "change": "p.Gly48Val"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.3083156C>A", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.3083156C>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008663.1:g.6569G>T", "sequenceAccessionVersion": "NG_008663.1", "sequenceAccession": "NG_008663", "sequenceVersion": 1, "change": "g.6569G>T"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "ClinGen", "id": "CA121948"}, {"db": "UniProtKB", "id": "P01185#VAR_004984"}, {"db": "OMIM", "id": "192340.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121964883", "type": "rs"}], "alleleId": "27244", "variationId": "12205"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Neurohypophyseal diabetes insipidus", "db": "MedGen", "id": "C0342394"}], "traitSetId": "8098"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1996-11-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_000490.5(AVP):c.143G>T (p.Gly48Val) AND Neurohypophyseal diabetes insipidus", "accession": "RCV000012989", "version": 24}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "1740104", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8945633", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Neurohypophyseal diabetes insipidus", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Neurogenic+diabetes+insipidus/5185"}, {"db": "Human Phenotype Ontology", "id": "HP:0000863"}, {"db": "MONDO", "id": "MONDO:0007450"}, {"db": "SNOMED CT", "id": "45369008"}]}, {"value": "Pituitary diabetes insipidus", "type": "Alternate"}, {"value": "Diabetes insipidus cranial type", "type": "Alternate"}, {"value": "DIABETES INSIPIDUS, PRIMARY CENTRAL", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "125700", "type": "MIM"}]}, {"value": "Diabetes Insipidus, Neurogenic", "type": "Alternate"}, {"value": "Hereditary central diabetes insipidus", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "30925"}]}], "symbols": [{"value": "CDI", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "125700", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "6015"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "6015"}]}], "xrefs": [{"db": "Orphanet", "id": "178029"}, {"db": "Orphanet", "id": "30925"}, {"db": "MedGen", "id": "C0342394"}, {"db": "MONDO", "id": "MONDO:0007450"}, {"db": "OMIM", "id": "125700", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "8098", "contributesToAggregateClassification": true}], "dateLastEvaluated": "1996-11-01T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "192340.0002_DIABETES INSIPIDUS, NEUROHYPOPHYSEAL", "title": "AVP, GLY17VAL_DIABETES INSIPIDUS, NEUROHYPOPHYSEAL"}, "clinvarAccession": {"accession": "SCV000033234", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1996-11-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a Dutch family in which autosomal dominant diabetes insipidus (125700) could be traced back for 5 generations, Bahnsen et al. (1992) identified a G-to-T transversion within the neurophysin-encoding exon B, which converted a highly conserved glycine (gly17 of neurophysin) to a valine residue."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "1740104", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "125700", "type": "MIM"}]}, {"attributes": [{"base": {"value": "Olias et al. (1996) examined whether this point mutation affects the processing and transport of the vasopressin-neurophysin precursor. They stably expressed the normal and mutant vasopressin cDNAs under the control of the cytomegalovirus promoter in the mouse pituitary cell line AtT20. The mutant precursor was synthesized, but processing and secretion were dramatically reduced compared to the normal. The mutant neurophysin staining was restricted to the endoplasmic reticulum and never reached the trans-Golgi network, whereas the normal neurophysin concentrated in the tips of the cell processes where secretory granules accumulate. These results suggested that the mutation alters the conformation of the precursor, impairs its intracellular transport, and triggers its retention."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8945633", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "AVP"}], "name": {"value": "AVP, GLY17VAL"}, "variantType": "Variation", "otherNames": [{"value": "GLY17VAL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "192340.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DIABETES INSIPIDUS, NEUROHYPOPHYSEAL", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "33234"}], "traitMappings": [{"medgens": [{"name": "Neurohypophyseal diabetes insipidus", "cui": "C0342394"}], "clinicalAssertionId": "33234", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DIABETES INSIPIDUS, NEUROHYPOPHYSEAL", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_no_unflagged.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_no_unflagged.xml/out.jsonl
index fcd9ea7..51d6d13 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_no_unflagged.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_no_unflagged.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "127244", "variationName": "NM_014780.5(CUL7):c.2592T>G (p.Tyr864Ter)", "variationType": "single nucleotide variant", "dateCreated": "2014-05-09T00:00:00Z", "dateLastUpdated": "2024-04-06T00:00:00Z", "mostRecentSubmission": "2015-05-31T00:00:00Z", "accession": "VCV000127244", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["6p21.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 43037617, "stop": 43053851, "displayStart": 43037617, "displayStop": 43053851, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_6", "accession": "NC_000006.11", "start": 43005354, "stop": 43021682, "displayStart": 43005354, "displayStop": 43021682, "strand": "-"}]}], "omims": ["609577"], "fullName": "cullin 7", "geneId": "9820", "hgncId": "HGNC:21024", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014780.5(CUL7):c.2592T>G (p.Tyr864Ter)", "canonicalSpdi": "NC_000006.12:43046303:A:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["6p21.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 43046304, "stop": 43046304, "displayStart": 43046304, "displayStop": 43046304, "variantLength": 1, "positionVcf": 43046304, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_6", "accession": "NC_000006.11", "start": 43014042, "stop": 43014042, "displayStart": 43014042, "displayStop": 43014042, "variantLength": 1, "positionVcf": 43014042, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["Y864*", "Y948*", "Y896*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000006.11:g.43014042A>C", "sequenceAccessionVersion": "NC_000006.11", "sequenceAccession": "NC_000006", "sequenceVersion": 11, "change": "g.43014042A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000006.12:g.43046304A>C", "sequenceAccessionVersion": "NC_000006.12", "sequenceAccession": "NC_000006", "sequenceVersion": 12, "change": "g.43046304A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016205.1:g.12642T>G", "sequenceAccessionVersion": "NG_016205.1", "sequenceAccession": "NG_016205", "sequenceVersion": 1, "change": "g.12642T>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001168370.2:c.2688T>G", "sequenceAccessionVersion": "NM_001168370.2", "sequenceAccession": "NM_001168370", "sequenceVersion": 2, "change": "c.2688T>G"}, "proteinExpression": {"expression": "NP_001161842.2:p.Tyr896Ter", "sequenceAccessionVersion": "NP_001161842.2", "sequenceAccession": "NP_001161842", "sequenceVersion": 2, "change": "p.Tyr896Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001374872.1:c.2688T>G", "sequenceAccessionVersion": "NM_001374872.1", "sequenceAccession": "NM_001374872", "sequenceVersion": 1, "change": "c.2688T>G"}, "proteinExpression": {"expression": "NP_001361801.1:p.Tyr896Ter", "sequenceAccessionVersion": "NP_001361801.1", "sequenceAccession": "NP_001361801", "sequenceVersion": 1, "change": "p.Tyr896Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001374873.1:c.2592T>G", "sequenceAccessionVersion": "NM_001374873.1", "sequenceAccession": "NM_001374873", "sequenceVersion": 1, "change": "c.2592T>G"}, "proteinExpression": {"expression": "NP_001361802.1:p.Tyr864Ter", "sequenceAccessionVersion": "NP_001361802.1", "sequenceAccession": "NP_001361802", "sequenceVersion": 1, "change": "p.Tyr864Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001374874.1:c.2592T>G", "sequenceAccessionVersion": "NM_001374874.1", "sequenceAccession": "NM_001374874", "sequenceVersion": 1, "change": "c.2592T>G"}, "proteinExpression": {"expression": "NP_001361803.1:p.Tyr864Ter", "sequenceAccessionVersion": "NP_001361803.1", "sequenceAccession": "NP_001361803", "sequenceVersion": 1, "change": "p.Tyr864Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_014780.5:c.2592T>G", "sequenceAccessionVersion": "NM_014780.5", "sequenceAccession": "NM_014780", "sequenceVersion": 5, "change": "c.2592T>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_055595.2:p.Tyr864Ter", "sequenceAccessionVersion": "NP_055595.2", "sequenceAccession": "NP_055595", "sequenceVersion": 2, "change": "p.Tyr864Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA236446"}, {"db": "dbSNP", "id": "201406974", "type": "rs"}], "functionalConsequences": [{"xrefs": [{"db": "Variation Ontology", "id": "0043"}], "value": "protein loss of function"}], "globalMinorAlleleFrequency": {"value": 0.0002, "source": "1000 Genomes Project", "minorAllele": "G"}, "alleleId": "132701", "variationId": "127244"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "3M syndrome 1", "db": "MedGen", "id": "C2678312"}], "traitSetId": "415"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATIONS_FROM_UNFLAGGED_RECORDS", "description": {"value": "no classifications from unflagged records", "submissionCount": 1}}}, "title": "NM_014780.5(CUL7):c.2592T>G (p.Tyr864Ter) AND 3M syndrome 1", "accession": "RCV000115042", "version": 4}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "C3661900"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "submissionCount": 1}}}, "title": "NM_014780.5(CUL7):c.2592T>G (p.Tyr864Ter) AND not provided", "accession": "RCV000171523", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "24389050", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}, {"value": "none provided", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "C3661900"}]}], "type": "TYPE_DISEASE", "id": "9460", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Three M syndrome 1", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Three+M+syndrome/7072"}]}, {"value": "3M syndrome 1", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0010117"}]}], "symbols": [{"value": "3M1", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "273750", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "15239"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "15239"}]}, {"attribute": {"base": {"value": "Three M syndrome is characterized by severe pre- and postnatal growth deficiency (final height 5-6 SD below the mean; i.e., 120-130 cm), characteristic facies, and normal intelligence. Additional features of three M syndrome include short broad neck, prominent trapezii, deformed sternum, short thorax, square shoulders, winged scapulae, hyperlordosis, short fifth fingers, prominent heels, and loose joints. Males with three M syndrome have hypogonadism and occasionally hypospadias."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1481"}]}], "citations": [{"ids": [{"value": "20301654", "source": "PubMed"}, {"value": "NBK1481", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "21364696", "source": "PubMed"}], "type": "Translational/Evidence-based", "abbrev": "EuroGentest, 2011"}], "xrefs": [{"db": "Orphanet", "id": "2616"}, {"db": "MedGen", "id": "C2678312"}, {"db": "MONDO", "id": "MONDO:0010117"}, {"db": "OMIM", "id": "273750", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "415", "contributesToAggregateClassification": false}], "dateCreated": "2014-05-09T00:00:00Z", "mostRecentSubmission": "2015-05-31T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "NM_001168370.1:c.2844T>G|OMIM:273750"}, "clinvarAccession": {"accession": "SCV000108552", "version": 1, "submitterIdentifiers": {"submitterName": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "orgId": "500184", "orgCategory": "laboratory", "orgAbbreviation": "DGU-KFSHRC"}, "dateUpdated": "2014-05-09T00:00:00Z", "dateCreated": "2014-05-09T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_FLAGGED_SUBMISSION", "germlineClassification": "Pathogenic"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "ethnicity": "Arab", "geographicOrigin": "Saudi Arabia", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"names": [{"value": "Small and mal-aligned teeth, skin and joint laxity, and normal motor and cognitive development", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}}], "simpleAllele": {"genes": [{"symbol": "CUL7"}], "variantType": "Variation", "otherNames": [{"value": "p.Y948*"}], "functionalConsequences": [{"xrefs": [{"db": "Variation Ontology", "id": "0043", "url": "http://www.variationontology.org/cgi-bin/amivario/term-details.cgi?term=VariO:0043"}], "value": "protein loss of function"}], "attributes": [{"attribute": {"base": {"value": "NM_001168370.1:c.2844T>G"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Three M syndrome 1", "type": "Preferred"}], "xrefs": [{"db": "OMIM", "id": "273750", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyName": "Genomic Analysis of Primordial Dwarfism Reveals Novel Disease Genes", "comments": [{"value": "Reason: This record appears to be redundant with a more recent record from the same submitter.", "dataSource": "NCBI", "type": "COMMENT_TYPE_FLAGGED_COMMENT"}, {"value": "Notes: SCV000108552 appears to be redundant with SCV000221722.", "dataSource": "NCBI", "type": "COMMENT_TYPE_FLAGGED_COMMENT"}], "submissionNames": ["2045"], "id": "269551"}, {"clinvarSubmissionId": {"localKey": "SGP2014-4671-1|Not provided"}, "clinvarAccession": {"accession": "SCV000221722", "version": 1, "submitterIdentifiers": {"submitterName": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "orgId": "500184", "orgCategory": "laboratory", "orgAbbreviation": "DGU-KFSHRC"}, "dateUpdated": "2015-05-31T00:00:00Z", "dateCreated": "2015-05-31T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "indication": {"traits": [{"names": [{"value": "Dysmorphic/Dysplastic phenotype", "type": "Preferred"}]}], "type": "TYPE_INDICATION"}}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CUL7"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_6", "start": 43014042, "stop": 43014042, "variantLength": 1, "referenceAllele": "A", "alternateAllele": "C"}]}}, "traitSet": {"traits": [{"names": [{"value": "Not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "407989"}], "traitMappings": [{"medgens": [{"name": "Small and mal-aligned teeth, skin and joint laxity, and normal motor and cognitive development", "cui": "CN186928"}], "clinicalAssertionId": "269551", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Small and mal-aligned teeth, skin and joint laxity, and normal motor and cognitive development", "mappingRef": "Preferred"}, {"medgens": [{"name": "3M syndrome 1", "cui": "C2678312"}], "clinicalAssertionId": "269551", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Three M syndrome 1", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "407989", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Not provided", "mappingRef": "Preferred"}]}}
+{"variationId": "127244", "variationName": "NM_014780.5(CUL7):c.2592T>G (p.Tyr864Ter)", "variationType": "single nucleotide variant", "dateCreated": "2014-05-09T00:00:00Z", "dateLastUpdated": "2024-04-06T00:00:00Z", "mostRecentSubmission": "2015-05-31T00:00:00Z", "accession": "VCV000127244", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["6p21.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 43037617, "stop": 43053851, "displayStart": 43037617, "displayStop": 43053851, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_6", "accession": "NC_000006.11", "start": 43005354, "stop": 43021682, "displayStart": 43005354, "displayStop": 43021682, "strand": "-"}]}], "omims": ["609577"], "fullName": "cullin 7", "geneId": "9820", "hgncId": "HGNC:21024", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014780.5(CUL7):c.2592T>G (p.Tyr864Ter)", "canonicalSpdi": "NC_000006.12:43046303:A:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["6p21.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_6", "accession": "NC_000006.12", "start": 43046304, "stop": 43046304, "displayStart": 43046304, "displayStop": 43046304, "variantLength": 1, "positionVcf": 43046304, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_6", "accession": "NC_000006.11", "start": 43014042, "stop": 43014042, "displayStart": 43014042, "displayStop": 43014042, "variantLength": 1, "positionVcf": 43014042, "referenceAlleleVcf": "A", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["Y864*", "Y948*", "Y896*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000006.11:g.43014042A>C", "sequenceAccessionVersion": "NC_000006.11", "sequenceAccession": "NC_000006", "sequenceVersion": 11, "change": "g.43014042A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000006.12:g.43046304A>C", "sequenceAccessionVersion": "NC_000006.12", "sequenceAccession": "NC_000006", "sequenceVersion": 12, "change": "g.43046304A>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_016205.1:g.12642T>G", "sequenceAccessionVersion": "NG_016205.1", "sequenceAccession": "NG_016205", "sequenceVersion": 1, "change": "g.12642T>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001168370.2:c.2688T>G", "sequenceAccessionVersion": "NM_001168370.2", "sequenceAccession": "NM_001168370", "sequenceVersion": 2, "change": "c.2688T>G"}, "proteinExpression": {"expression": "NP_001161842.2:p.Tyr896Ter", "sequenceAccessionVersion": "NP_001161842.2", "sequenceAccession": "NP_001161842", "sequenceVersion": 2, "change": "p.Tyr896Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001374872.1:c.2688T>G", "sequenceAccessionVersion": "NM_001374872.1", "sequenceAccession": "NM_001374872", "sequenceVersion": 1, "change": "c.2688T>G"}, "proteinExpression": {"expression": "NP_001361801.1:p.Tyr896Ter", "sequenceAccessionVersion": "NP_001361801.1", "sequenceAccession": "NP_001361801", "sequenceVersion": 1, "change": "p.Tyr896Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001374873.1:c.2592T>G", "sequenceAccessionVersion": "NM_001374873.1", "sequenceAccession": "NM_001374873", "sequenceVersion": 1, "change": "c.2592T>G"}, "proteinExpression": {"expression": "NP_001361802.1:p.Tyr864Ter", "sequenceAccessionVersion": "NP_001361802.1", "sequenceAccession": "NP_001361802", "sequenceVersion": 1, "change": "p.Tyr864Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001374874.1:c.2592T>G", "sequenceAccessionVersion": "NM_001374874.1", "sequenceAccession": "NM_001374874", "sequenceVersion": 1, "change": "c.2592T>G"}, "proteinExpression": {"expression": "NP_001361803.1:p.Tyr864Ter", "sequenceAccessionVersion": "NP_001361803.1", "sequenceAccession": "NP_001361803", "sequenceVersion": 1, "change": "p.Tyr864Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_014780.5:c.2592T>G", "sequenceAccessionVersion": "NM_014780.5", "sequenceAccession": "NM_014780", "sequenceVersion": 5, "change": "c.2592T>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_055595.2:p.Tyr864Ter", "sequenceAccessionVersion": "NP_055595.2", "sequenceAccession": "NP_055595", "sequenceVersion": 2, "change": "p.Tyr864Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA236446"}, {"db": "dbSNP", "id": "201406974", "type": "rs"}], "functionalConsequences": [{"xrefs": [{"db": "Variation Ontology", "id": "0043"}], "value": "protein loss of function"}], "globalMinorAlleleFrequency": {"value": 0.0002, "source": "1000 Genomes Project", "minorAllele": "G"}, "alleleId": "132701", "variationId": "127244"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "3M syndrome 1", "db": "MedGen", "id": "C2678312"}], "traitSetId": "415"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATIONS_FROM_UNFLAGGED_RECORDS", "description": {"value": "no classifications from unflagged records", "submissionCount": 1}}}, "title": "NM_014780.5(CUL7):c.2592T>G (p.Tyr864Ter) AND 3M syndrome 1", "accession": "RCV000115042", "version": 4}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "C3661900"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "submissionCount": 1}}}, "title": "NM_014780.5(CUL7):c.2592T>G (p.Tyr864Ter) AND not provided", "accession": "RCV000171523", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "24389050", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}, {"value": "none provided", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "C3661900"}]}], "type": "TYPE_DISEASE", "id": "9460", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "Three M syndrome 1", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Three+M+syndrome/7072"}]}, {"value": "3M syndrome 1", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0010117"}]}], "symbols": [{"value": "3M1", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "273750", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "15239"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "15239"}]}, {"attribute": {"base": {"value": "Three M syndrome is characterized by severe pre- and postnatal growth deficiency (final height 5-6 SD below the mean; i.e., 120-130 cm), characteristic facies, and normal intelligence. Additional features of three M syndrome include short broad neck, prominent trapezii, deformed sternum, short thorax, square shoulders, winged scapulae, hyperlordosis, short fifth fingers, prominent heels, and loose joints. Males with three M syndrome have hypogonadism and occasionally hypospadias."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1481"}]}], "citations": [{"ids": [{"value": "20301654", "source": "PubMed"}, {"value": "NBK1481", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "21364696", "source": "PubMed"}], "type": "Translational/Evidence-based", "abbrev": "EuroGentest, 2011"}], "xrefs": [{"db": "Orphanet", "id": "2616"}, {"db": "MedGen", "id": "C2678312"}, {"db": "MONDO", "id": "MONDO:0010117"}, {"db": "OMIM", "id": "273750", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "415", "contributesToAggregateClassification": false}], "dateCreated": "2014-05-09T00:00:00Z", "mostRecentSubmission": "2015-05-31T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "NM_001168370.1:c.2844T>G|OMIM:273750"}, "clinvarAccession": {"accession": "SCV000108552", "version": 1, "submitterIdentifiers": {"submitterName": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "orgId": "500184", "orgCategory": "laboratory", "orgAbbreviation": "DGU-KFSHRC"}, "dateUpdated": "2014-05-09T00:00:00Z", "dateCreated": "2014-05-09T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_FLAGGED_SUBMISSION", "germlineClassification": "Pathogenic"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "ethnicity": "Arab", "geographicOrigin": "Saudi Arabia", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"names": [{"value": "Small and mal-aligned teeth, skin and joint laxity, and normal motor and cognitive development", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}}], "simpleAllele": {"genes": [{"symbol": "CUL7"}], "variantType": "Variation", "otherNames": [{"value": "p.Y948*"}], "functionalConsequences": [{"xrefs": [{"db": "Variation Ontology", "id": "0043", "url": "http://www.variationontology.org/cgi-bin/amivario/term-details.cgi?term=VariO:0043"}], "value": "protein loss of function"}], "attributes": [{"attribute": {"base": {"value": "NM_001168370.1:c.2844T>G"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "Three M syndrome 1", "type": "Preferred"}], "xrefs": [{"db": "OMIM", "id": "273750", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyName": "Genomic Analysis of Primordial Dwarfism Reveals Novel Disease Genes", "comments": [{"value": "Reason: This record appears to be redundant with a more recent record from the same submitter.", "dataSource": "NCBI", "type": "COMMENT_TYPE_FLAGGED_COMMENT"}, {"value": "Notes: SCV000108552 appears to be redundant with SCV000221722.", "dataSource": "NCBI", "type": "COMMENT_TYPE_FLAGGED_COMMENT"}], "submissionNames": ["2045"], "id": "269551"}, {"clinvarSubmissionId": {"localKey": "SGP2014-4671-1|Not provided"}, "clinvarAccession": {"accession": "SCV000221722", "version": 1, "submitterIdentifiers": {"submitterName": "Department Of Translational Genomics (developmental Genetics Section), King Faisal Specialist Hospital & Research Centre", "orgId": "500184", "orgCategory": "laboratory", "orgAbbreviation": "DGU-KFSHRC"}, "dateUpdated": "2015-05-31T00:00:00Z", "dateCreated": "2015-05-31T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "indication": {"traits": [{"names": [{"value": "Dysmorphic/Dysplastic phenotype", "type": "Preferred"}]}], "type": "TYPE_INDICATION"}}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"genes": [{"symbol": "CUL7"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_6", "start": 43014042, "stop": 43014042, "variantLength": 1, "referenceAllele": "A", "alternateAllele": "C"}]}}, "traitSet": {"traits": [{"names": [{"value": "Not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "407989"}], "traitMappings": [{"medgens": [{"name": "Small and mal-aligned teeth, skin and joint laxity, and normal motor and cognitive development", "cui": "CN186928"}], "clinicalAssertionId": "269551", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Small and mal-aligned teeth, skin and joint laxity, and normal motor and cognitive development", "mappingRef": "Preferred"}, {"medgens": [{"name": "3M syndrome 1", "cui": "C2678312"}], "clinicalAssertionId": "269551", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Three M syndrome 1", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "C3661900"}], "clinicalAssertionId": "407989", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Not provided", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_replaces.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_replaces.xml/out.jsonl
index 945c5b8..941fa22 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_replaces.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_replaces.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "29674", "variationName": "NM_000791.4(DHFR):c.458A>T (p.Asp153Val)", "variationType": "single nucleotide variant", "dateCreated": "2014-04-24T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-08-22T00:00:00Z", "accession": "VCV000029674", "version": 1, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5q14.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 80626226, "stop": 80654983, "displayStart": 80626226, "displayStop": 80654983, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 79922044, "stop": 79950799, "displayStart": 79922044, "displayStop": 79950799, "strand": "-"}]}], "omims": ["126060"], "fullName": "dihydrofolate reductase", "geneId": "1719", "hgncId": "HGNC:2861", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000791.4(DHFR):c.458A>T (p.Asp153Val)", "canonicalSpdi": "NC_000005.10:80633903:T:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["5q14.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 80633904, "stop": 80633904, "displayStart": 80633904, "displayStop": 80633904, "variantLength": 1, "positionVcf": 80633904, "referenceAlleleVcf": "T", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 79929723, "stop": 79929723, "displayStart": 79929723, "displayStop": 79929723, "variantLength": 1, "positionVcf": 79929723, "referenceAlleleVcf": "T", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "DHFRc.458A>T"}, {"value": "DHFRp.D153V"}, {"value": "DHFRp.Asp153Val"}], "proteinChanges": ["D153V", "D101V"], "hgvsExpressions": [{"proteinExpression": {"expression": "P00374:p.Asp153Val", "sequenceAccessionVersion": "P00374", "sequenceAccession": "P00374", "change": "p.Asp153Val"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000005.10:g.80633904T>A", "sequenceAccessionVersion": "NC_000005.10", "sequenceAccession": "NC_000005", "sequenceVersion": 10, "change": "g.80633904T>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000005.9:g.79929723T>A", "sequenceAccessionVersion": "NC_000005.9", "sequenceAccession": "NC_000005", "sequenceVersion": 9, "change": "g.79929723T>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_023304.1:g.26078A>T", "sequenceAccessionVersion": "NG_023304.1", "sequenceAccession": "NG_023304", "sequenceVersion": 1, "change": "g.26078A>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000791.4:c.458A>T", "sequenceAccessionVersion": "NM_000791.4", "sequenceAccession": "NM_000791", "sequenceVersion": 4, "change": "c.458A>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000782.1:p.Asp153Val", "sequenceAccessionVersion": "NP_000782.1", "sequenceAccession": "NP_000782", "sequenceVersion": 1, "change": "p.Asp153Val"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001290354.2:c.302A>T", "sequenceAccessionVersion": "NM_001290354.2", "sequenceAccession": "NM_001290354", "sequenceVersion": 2, "change": "c.302A>T"}, "proteinExpression": {"expression": "NP_001277283.1:p.Asp101Val", "sequenceAccessionVersion": "NP_001277283.1", "sequenceAccession": "NP_001277283", "sequenceVersion": 1, "change": "p.Asp101Val"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_110936.2:n.775A>T", "sequenceAccessionVersion": "NR_110936.2", "sequenceAccession": "NR_110936", "sequenceVersion": 2, "change": "n.775A>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NM_001290357.2:c.369+3979A>T", "sequenceAccessionVersion": "NM_001290357.2", "sequenceAccession": "NM_001290357", "sequenceVersion": 2, "change": "c.369+3979A>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA128553"}, {"db": "UniProtKB", "id": "P00374#VAR_065819"}, {"db": "OMIM", "id": "126060.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121913223", "type": "rs"}], "alleleId": "38629", "variationId": "29674"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Constitutional megaloblastic anemia with severe neurologic disease", "db": "MedGen", "id": "C3151205"}], "traitSetId": "7481"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2011-02-11T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000791.4(DHFR):c.458A>T (p.Asp153Val) AND Constitutional megaloblastic anemia with severe neurologic disease", "accession": "RCV000022525", "version": 25}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "1060915", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "1099447", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "21310277", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "6700662", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DHFR DEFICIENCY", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613839", "type": "MIM"}]}, {"value": "Megaloblastic anemia due to dihydrofolate reductase deficiency", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Megaloblastic+anemia+due+to+dihydrofolate+reductase+deficiency/8802"}]}, {"value": "Constitutional megaloblastic anemia with severe neurologic disease", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013456"}]}], "attributes": [{"attribute": {"base": {"integerValue": "11000"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "11000"}]}, {"attribute": {"base": {"value": "Dihydrofolate reductase deficiency is an autosomal recessive metabolic disorder characterized by the hematologic findings of megaloblastic anemia and variable neurologic symptoms, ranging from severe developmental delay and generalized seizures in infancy (Banka et al., 2011) to childhood absence epilepsy with learning difficulties to lack of symptoms (Cario et al., 2011). Treatment with folinic acid can ameliorate some of the symptoms."}, "type": "public definition"}, "xrefs": [{"db": "OMIM", "id": "613839", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "319651"}, {"db": "MedGen", "id": "C3151205"}, {"db": "MONDO", "id": "MONDO:0013456"}, {"db": "OMIM", "id": "613839", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7481", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2011-02-11T00:00:00Z", "dateCreated": "2014-04-24T00:00:00Z", "mostRecentSubmission": "2016-08-22T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "126060.0002_MEGALOBLASTIC ANEMIA DUE TO DIHYDROFOLATE REDUCTASE DEFICIENCY", "title": "DHFR, ASP153VAL_MEGALOBLASTIC ANEMIA DUE TO DIHYDROFOLATE REDUCTASE DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000043814", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-08-22T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2011-02-11T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 3 affected sibs, born of distantly related parents of European descent, with megaloblastic anemia due to dihydrofolate reductase deficiency (613839), Cario et al. (2011) identified a homozygous 458A-T transversion in exon 5 of the DHFR gene, resulting in an asp153-to-val (D153V) substitution. Both parents were heterozygous for the D153V mutation, which was not found in 120 control samples. The mutation was predicted to interrupt hydrogen bonding, affecting fold and conformational stability, resulting in decreased enzyme activity. Studies of patient lymphoblastoid cells showed that DHFR activity was reduced to about 10% of control levels. DHFR expression was similar to controls, but protein levels were severely decreased. Although 1 sib was essentially unaffected except for macrocytosis, the other 2 sibs developed childhood absence epilepsy with eyelid myoclonia in childhood. One had learning disabilities. Levels of 5-methyltetrahydrofolate (5-MTHF) in the CSF were low, but improved with folinic acid treatment."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "21310277", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613839", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "DHFR"}], "names": [{"value": "DHFR, ASP153VAL"}], "variantType": "Variation", "otherNames": [{"value": "ASP153VAL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "126060.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MEGALOBLASTIC ANEMIA DUE TO DIHYDROFOLATE REDUCTASE DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "49070"}, {"clinvarSubmissionId": {"localKey": "DHFR_001"}, "clinvarAccession": {"accession": "SCV000148827", "version": 1, "submitterIdentifiers": {"submitterName": "Clinic of Pediatric and Adolescent Medicine, University Hospital Ulm", "orgId": "504838", "orgCategory": "laboratory"}, "dateUpdated": "2014-04-24T00:00:00Z", "dateCreated": "2014-04-24T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "pathogenic", "comments": [{"value": "Converted during submission to Pathogenic.", "type": "COMMENT_TYPE_CONVERTED_BY_NCB"}]}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "numerTested": 1}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "otherNames": [{"value": "DHFR c.458A>T"}, {"value": "DHFR p.D153V"}, {"value": "DHFR p.Asp153Val"}], "citations": [{"ids": [{"value": "1060915", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "1099447", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "6700662", "source": "PubMed"}], "type": "general"}], "attributes": [{"attribute": {"base": {"value": "NM_000791.3:c.458A>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}], "xrefs": [{"db": "OMIM", "id": "126060", "type": "MIM", "status": "STATUS_UNDER_REVIEW"}]}], "type": "TYPE_DISEASE"}, "comments": [{"value": "dihydrofolate reductase (DHFR) deficiency. Causes macrocytic anemia and neurologic disease (atypical childhood absence epilepsy);variable phenotypic expression;treatment with follinic acid leads to normal blood counts and improvement of neurologic symptoms. Manuscript submitted for publication, therefore public release of this dbSNP submission only from the time of publication.", "type": "COMMENT_TYPE_PUBLIC"}, {"value": "Causes macrocytic anemia and neurologic disease (atypical childhood absence epilepsy);variable phenotypic expression; treatment with follinic acid leads to normal blood counts and improvement of neurologic symptoms.", "dataSource": "CuratedByNCBI", "type": "COMMENT_TYPE_PUBLIC"}], "submissionNames": ["DHFR_variant_HC01"], "id": "269026"}], "traitMappings": [{"medgens": [{"name": "Constitutional megaloblastic anemia with severe neurologic disease", "cui": "C3151205"}], "clinicalAssertionId": "49070", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MEGALOBLASTIC ANEMIA DUE TO DIHYDROFOLATE REDUCTASE DEFICIENCY", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "CN517202"}], "clinicalAssertionId": "269026", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}]}}
+{"variationId": "29674", "variationName": "NM_000791.4(DHFR):c.458A>T (p.Asp153Val)", "variationType": "single nucleotide variant", "dateCreated": "2014-04-24T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-08-22T00:00:00Z", "accession": "VCV000029674", "version": 1, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5q14.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 80626226, "stop": 80654983, "displayStart": 80626226, "displayStop": 80654983, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 79922044, "stop": 79950799, "displayStart": 79922044, "displayStop": 79950799, "strand": "-"}]}], "omims": ["126060"], "fullName": "dihydrofolate reductase", "geneId": "1719", "hgncId": "HGNC:2861", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000791.4(DHFR):c.458A>T (p.Asp153Val)", "canonicalSpdi": "NC_000005.10:80633903:T:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["5q14.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 80633904, "stop": 80633904, "displayStart": 80633904, "displayStop": 80633904, "variantLength": 1, "positionVcf": 80633904, "referenceAlleleVcf": "T", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 79929723, "stop": 79929723, "displayStart": 79929723, "displayStop": 79929723, "variantLength": 1, "positionVcf": 79929723, "referenceAlleleVcf": "T", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "DHFRc.458A>T"}, {"value": "DHFRp.D153V"}, {"value": "DHFRp.Asp153Val"}], "proteinChanges": ["D153V", "D101V"], "hgvsExpressions": [{"proteinExpression": {"expression": "P00374:p.Asp153Val", "sequenceAccessionVersion": "P00374", "sequenceAccession": "P00374", "change": "p.Asp153Val"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000005.10:g.80633904T>A", "sequenceAccessionVersion": "NC_000005.10", "sequenceAccession": "NC_000005", "sequenceVersion": 10, "change": "g.80633904T>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000005.9:g.79929723T>A", "sequenceAccessionVersion": "NC_000005.9", "sequenceAccession": "NC_000005", "sequenceVersion": 9, "change": "g.79929723T>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_023304.1:g.26078A>T", "sequenceAccessionVersion": "NG_023304.1", "sequenceAccession": "NG_023304", "sequenceVersion": 1, "change": "g.26078A>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000791.4:c.458A>T", "sequenceAccessionVersion": "NM_000791.4", "sequenceAccession": "NM_000791", "sequenceVersion": 4, "change": "c.458A>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000782.1:p.Asp153Val", "sequenceAccessionVersion": "NP_000782.1", "sequenceAccession": "NP_000782", "sequenceVersion": 1, "change": "p.Asp153Val"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001290354.2:c.302A>T", "sequenceAccessionVersion": "NM_001290354.2", "sequenceAccession": "NM_001290354", "sequenceVersion": 2, "change": "c.302A>T"}, "proteinExpression": {"expression": "NP_001277283.1:p.Asp101Val", "sequenceAccessionVersion": "NP_001277283.1", "sequenceAccession": "NP_001277283", "sequenceVersion": 1, "change": "p.Asp101Val"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_110936.2:n.775A>T", "sequenceAccessionVersion": "NR_110936.2", "sequenceAccession": "NR_110936", "sequenceVersion": 2, "change": "n.775A>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NM_001290357.2:c.369+3979A>T", "sequenceAccessionVersion": "NM_001290357.2", "sequenceAccession": "NM_001290357", "sequenceVersion": 2, "change": "c.369+3979A>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA128553"}, {"db": "UniProtKB", "id": "P00374#VAR_065819"}, {"db": "OMIM", "id": "126060.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "121913223", "type": "rs"}], "alleleId": "38629", "variationId": "29674"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Constitutional megaloblastic anemia with severe neurologic disease", "db": "MedGen", "id": "C3151205"}], "traitSetId": "7481"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2011-02-11T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000791.4(DHFR):c.458A>T (p.Asp153Val) AND Constitutional megaloblastic anemia with severe neurologic disease", "accession": "RCV000022525", "version": 25}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "1060915", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "1099447", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "21310277", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "6700662", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DHFR DEFICIENCY", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613839", "type": "MIM"}]}, {"value": "Megaloblastic anemia due to dihydrofolate reductase deficiency", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Megaloblastic+anemia+due+to+dihydrofolate+reductase+deficiency/8802"}]}, {"value": "Constitutional megaloblastic anemia with severe neurologic disease", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013456"}]}], "attributes": [{"attribute": {"base": {"integerValue": "11000"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "11000"}]}, {"attribute": {"base": {"value": "Dihydrofolate reductase deficiency is an autosomal recessive metabolic disorder characterized by the hematologic findings of megaloblastic anemia and variable neurologic symptoms, ranging from severe developmental delay and generalized seizures in infancy (Banka et al., 2011) to childhood absence epilepsy with learning difficulties to lack of symptoms (Cario et al., 2011). Treatment with folinic acid can ameliorate some of the symptoms."}, "type": "public definition"}, "xrefs": [{"db": "OMIM", "id": "613839", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "319651"}, {"db": "MedGen", "id": "C3151205"}, {"db": "MONDO", "id": "MONDO:0013456"}, {"db": "OMIM", "id": "613839", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7481", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2011-02-11T00:00:00Z", "dateCreated": "2014-04-24T00:00:00Z", "mostRecentSubmission": "2016-08-22T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "126060.0002_MEGALOBLASTIC ANEMIA DUE TO DIHYDROFOLATE REDUCTASE DEFICIENCY", "title": "DHFR, ASP153VAL_MEGALOBLASTIC ANEMIA DUE TO DIHYDROFOLATE REDUCTASE DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000043814", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2016-08-22T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2011-02-11T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 3 affected sibs, born of distantly related parents of European descent, with megaloblastic anemia due to dihydrofolate reductase deficiency (613839), Cario et al. (2011) identified a homozygous 458A-T transversion in exon 5 of the DHFR gene, resulting in an asp153-to-val (D153V) substitution. Both parents were heterozygous for the D153V mutation, which was not found in 120 control samples. The mutation was predicted to interrupt hydrogen bonding, affecting fold and conformational stability, resulting in decreased enzyme activity. Studies of patient lymphoblastoid cells showed that DHFR activity was reduced to about 10% of control levels. DHFR expression was similar to controls, but protein levels were severely decreased. Although 1 sib was essentially unaffected except for macrocytosis, the other 2 sibs developed childhood absence epilepsy with eyelid myoclonia in childhood. One had learning disabilities. Levels of 5-methyltetrahydrofolate (5-MTHF) in the CSF were low, but improved with folinic acid treatment."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "21310277", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613839", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "DHFR"}], "name": {"value": "DHFR, ASP153VAL"}, "variantType": "Variation", "otherNames": [{"value": "ASP153VAL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "126060.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MEGALOBLASTIC ANEMIA DUE TO DIHYDROFOLATE REDUCTASE DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "49070"}, {"clinvarSubmissionId": {"localKey": "DHFR_001"}, "clinvarAccession": {"accession": "SCV000148827", "version": 1, "submitterIdentifiers": {"submitterName": "Clinic of Pediatric and Adolescent Medicine, University Hospital Ulm", "orgId": "504838", "orgCategory": "laboratory"}, "dateUpdated": "2014-04-24T00:00:00Z", "dateCreated": "2014-04-24T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "pathogenic", "comments": [{"value": "Converted during submission to Pathogenic.", "type": "COMMENT_TYPE_CONVERTED_BY_NCB"}]}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "numerTested": 1}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "otherNames": [{"value": "DHFR c.458A>T"}, {"value": "DHFR p.D153V"}, {"value": "DHFR p.Asp153Val"}], "citations": [{"ids": [{"value": "1060915", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "1099447", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "6700662", "source": "PubMed"}], "type": "general"}], "attributes": [{"attribute": {"base": {"value": "NM_000791.3:c.458A>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}], "xrefs": [{"db": "OMIM", "id": "126060", "type": "MIM", "status": "STATUS_UNDER_REVIEW"}]}], "type": "TYPE_DISEASE"}, "comments": [{"value": "dihydrofolate reductase (DHFR) deficiency. Causes macrocytic anemia and neurologic disease (atypical childhood absence epilepsy);variable phenotypic expression;treatment with follinic acid leads to normal blood counts and improvement of neurologic symptoms. Manuscript submitted for publication, therefore public release of this dbSNP submission only from the time of publication.", "type": "COMMENT_TYPE_PUBLIC"}, {"value": "Causes macrocytic anemia and neurologic disease (atypical childhood absence epilepsy);variable phenotypic expression; treatment with follinic acid leads to normal blood counts and improvement of neurologic symptoms.", "dataSource": "CuratedByNCBI", "type": "COMMENT_TYPE_PUBLIC"}], "submissionNames": ["DHFR_variant_HC01"], "id": "269026"}], "traitMappings": [{"medgens": [{"name": "Constitutional megaloblastic anemia with severe neurologic disease", "cui": "C3151205"}], "clinicalAssertionId": "49070", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MEGALOBLASTIC ANEMIA DUE TO DIHYDROFOLATE REDUCTASE DEFICIENCY", "mappingRef": "Preferred"}, {"medgens": [{"name": "not provided", "cui": "CN517202"}], "clinicalAssertionId": "269026", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_review_status_ns.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_review_status_ns.xml/out.jsonl
index 007b90f..5c05ee5 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_review_status_ns.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_review_status_ns.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "1708487", "variationName": "NM_001347721.2(DYRK1A):c.367G>T (p.Glu123Ter)", "variationType": "single nucleotide variant", "dateCreated": "2022-10-08T00:00:00Z", "dateLastUpdated": "2023-08-06T00:00:00Z", "mostRecentSubmission": "2022-10-08T00:00:00Z", "accession": "VCV001708487", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["21q22.13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_21", "accession": "NC_000021.9", "start": 37365573, "stop": 37526358, "displayStart": 37365573, "displayStop": 37526358, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_21", "accession": "NC_000021.8", "start": 38739858, "stop": 38887678, "displayStart": 38739858, "displayStop": 38887678, "strand": "+"}]}], "omims": ["600855"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2020-12-16T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=DYRK1A"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2020-12-16T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=DYRK1A"}, "fullName": "dual specificity tyrosine phosphorylation regulated kinase 1A", "geneId": "1859", "hgncId": "HGNC:3091", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001347721.2(DYRK1A):c.367G>T (p.Glu123Ter)", "canonicalSpdi": "NC_000021.9:37480703:G:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["21q22.13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_21", "accession": "NC_000021.9", "start": 37480704, "stop": 37480704, "displayStart": 37480704, "displayStop": 37480704, "variantLength": 1, "positionVcf": 37480704, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_21", "accession": "NC_000021.8", "start": 38853006, "stop": 38853006, "displayStart": 38853006, "displayStop": 38853006, "variantLength": 1, "positionVcf": 38853006, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["E123*", "E132*", "E94*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000021.8:g.38853006G>T", "sequenceAccessionVersion": "NC_000021.8", "sequenceAccession": "NC_000021", "sequenceVersion": 8, "change": "g.38853006G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000021.9:g.37480704G>T", "sequenceAccessionVersion": "NC_000021.9", "sequenceAccession": "NC_000021", "sequenceVersion": 9, "change": "g.37480704G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009366.2:g.120133G>T", "sequenceAccessionVersion": "NG_009366.2", "sequenceAccession": "NG_009366", "sequenceVersion": 2, "change": "g.120133G>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001347721.2:c.367G>T", "sequenceAccessionVersion": "NM_001347721.2", "sequenceAccession": "NM_001347721", "sequenceVersion": 2, "change": "c.367G>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_001334650.1:p.Glu123Ter", "sequenceAccessionVersion": "NP_001334650.1", "sequenceAccession": "NP_001334650", "sequenceVersion": 1, "change": "p.Glu123Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001347722.2:c.367G>T", "sequenceAccessionVersion": "NM_001347722.2", "sequenceAccession": "NM_001347722", "sequenceVersion": 2, "change": "c.367G>T"}, "proteinExpression": {"expression": "NP_001334651.1:p.Glu123Ter", "sequenceAccessionVersion": "NP_001334651.1", "sequenceAccession": "NP_001334651", "sequenceVersion": 1, "change": "p.Glu123Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001347723.2:c.280G>T", "sequenceAccessionVersion": "NM_001347723.2", "sequenceAccession": "NM_001347723", "sequenceVersion": 2, "change": "c.280G>T"}, "proteinExpression": {"expression": "NP_001334652.1:p.Glu94Ter", "sequenceAccessionVersion": "NP_001334652.1", "sequenceAccession": "NP_001334652", "sequenceVersion": 1, "change": "p.Glu94Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001396.5:c.394G>T", "sequenceAccessionVersion": "NM_001396.5", "sequenceAccession": "NM_001396", "sequenceVersion": 5, "change": "c.394G>T"}, "proteinExpression": {"expression": "NP_001387.2:p.Glu132Ter", "sequenceAccessionVersion": "NP_001387.2", "sequenceAccession": "NP_001387", "sequenceVersion": 2, "change": "p.Glu132Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_101395.2:c.394G>T", "sequenceAccessionVersion": "NM_101395.2", "sequenceAccession": "NM_101395", "sequenceVersion": 2, "change": "c.394G>T"}, "proteinExpression": {"expression": "NP_567824.1:p.Glu132Ter", "sequenceAccessionVersion": "NP_567824.1", "sequenceAccession": "NP_567824", "sequenceVersion": 1, "change": "p.Glu132Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_130436.2:c.367G>T", "sequenceAccessionVersion": "NM_130436.2", "sequenceAccession": "NM_130436", "sequenceVersion": 2, "change": "c.367G>T"}, "proteinExpression": {"expression": "NP_569120.1:p.Glu123Ter", "sequenceAccessionVersion": "NP_569120.1", "sequenceAccession": "NP_569120", "sequenceVersion": 1, "change": "p.Glu123Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_130438.2:c.394G>T", "sequenceAccessionVersion": "NM_130438.2", "sequenceAccession": "NM_130438", "sequenceVersion": 2, "change": "c.394G>T"}, "proteinExpression": {"expression": "NP_569122.1:p.Glu132Ter", "sequenceAccessionVersion": "NP_569122.1", "sequenceAccession": "NP_569122", "sequenceVersion": 1, "change": "p.Glu132Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "alleleId": "1706785", "variationId": "1708487"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DYRK1A-related intellectual disability syndrome", "db": "MedGen", "id": "C5568143"}], "traitSetId": "7564"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "dateLastEvaluated": "2022-09-27T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001347721.2(DYRK1A):c.367G>T (p.Glu123Ter) AND DYRK1A-related intellectual disability syndrome", "accession": "RCV002287858", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "conditions": [{"traits": [{"names": [{"value": "DYRK1A-related intellectual disability syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013578"}]}, {"value": "INTELLECTUAL DEVELOPMENTAL DISORDER, AUTOSOMAL DOMINANT 7", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "614104", "type": "MIM"}, {"db": "OMIM", "id": "600855.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "600855.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "600855.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "600855.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "600855.0003", "type": "Allelic variant"}]}], "symbols": [{"value": "MRD7", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "614104", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "DYRK1A syndrome is characterized by intellectual disability including impaired speech development, autism spectrum disorder including anxious and/or stereotypic behavior problems, and microcephaly. Affected individuals often have a clinically recognizable phenotype including a typical facial gestalt, feeding problems, seizures, hypertonia, gait disturbances, and foot anomalies. The majority of affected individuals function in the moderate-to-severe range of intellectual disability; however, individuals with mild intellectual disability have also been reported. Other medical concerns relate to febrile seizures in infancy; the development of epilepsy with seizures of the atonic, absence, and generalized myoclonic types; short stature; and gastrointestinal problems. Ophthalmologic, urogenital, cardiac, and/or dental anomalies have been reported."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK333438"}]}], "citations": [{"ids": [{"value": "26677511", "source": "PubMed"}, {"value": "NBK333438", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "464306"}, {"db": "MedGen", "id": "C5568143"}, {"db": "MONDO", "id": "MONDO:0013578"}, {"db": "OMIM", "id": "614104", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7564", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2022-09-27T00:00:00Z", "dateCreated": "2022-10-08T00:00:00Z", "mostRecentSubmission": "2022-10-08T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "1385490b-900e-4713-9a48-d901bca5d5cd", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV002578125", "version": 1, "submitterIdentifiers": {"submitterName": "Institute for Medical Genetics and Human Genetics, Charit\u00e9 - Universit\u00e4tsmedizin Berlin", "orgId": "505735", "orgCategory": "clinic", "orgAbbreviation": "Charit\u00e9 - Universit\u00e4tsmedizin"}, "dateUpdated": "2022-10-08T00:00:00Z", "dateCreated": "2022-10-08T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "CUBI - Core Unit Bioinformatics, Berlin Institute of Health", "orgId": "507461", "orgCategory": "laboratory"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2022-09-27T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}, {"attribute": {"value": "Autosomal dominant inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "tissue": "Blood", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE", "familyData": {"pedigreeId": "f75f0449-c4ca-4d3e-bce2-b9bbcf6b606e"}}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_SINGLE_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "98837e1d-3e57-4dfc-ac83-3e3f547446a9"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0000252"}]}, {"xrefs": [{"db": "HP", "id": "HP:0000750"}]}, {"xrefs": [{"db": "HP", "id": "HP:0001263"}]}, {"xrefs": [{"db": "HP", "id": "HP:0003502"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"genes": [{"symbol": "DYRK1A"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_21", "start": 38853006, "stop": 38853006, "referenceAllele": "G", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "614104"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB7643814"], "id": "5039730"}], "traitMappings": [{"medgens": [{"name": "Microcephaly", "cui": "C4551563"}], "clinicalAssertionId": "5039730", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0000252", "mappingRef": "HP"}, {"medgens": [{"name": "Mild short stature", "cui": "C3150077"}], "clinicalAssertionId": "5039730", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0003502", "mappingRef": "HP"}, {"medgens": [{"name": "Delayed speech and language development", "cui": "C0454644"}], "clinicalAssertionId": "5039730", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0000750", "mappingRef": "HP"}, {"medgens": [{"name": "DYRK1A-related intellectual disability syndrome", "cui": "C5568143"}], "clinicalAssertionId": "5039730", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "614104", "mappingRef": "OMIM"}, {"medgens": [{"name": "Global developmental delay", "cui": "C0557874"}], "clinicalAssertionId": "5039730", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0001263", "mappingRef": "HP"}]}}
+{"variationId": "1708487", "variationName": "NM_001347721.2(DYRK1A):c.367G>T (p.Glu123Ter)", "variationType": "single nucleotide variant", "dateCreated": "2022-10-08T00:00:00Z", "dateLastUpdated": "2023-08-06T00:00:00Z", "mostRecentSubmission": "2022-10-08T00:00:00Z", "accession": "VCV001708487", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["21q22.13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_21", "accession": "NC_000021.9", "start": 37365573, "stop": 37526358, "displayStart": 37365573, "displayStop": 37526358, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_21", "accession": "NC_000021.8", "start": 38739858, "stop": 38887678, "displayStart": 38739858, "displayStop": 38887678, "strand": "+"}]}], "omims": ["600855"], "haploinsufficiency": {"value": "Sufficient evidence for dosage pathogenicity", "lastEvaluated": "2020-12-16T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=DYRK1A"}, "triplosensitivity": {"value": "No evidence available", "lastEvaluated": "2020-12-16T00:00:00Z", "clingen": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=DYRK1A"}, "fullName": "dual specificity tyrosine phosphorylation regulated kinase 1A", "geneId": "1859", "hgncId": "HGNC:3091", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001347721.2(DYRK1A):c.367G>T (p.Glu123Ter)", "canonicalSpdi": "NC_000021.9:37480703:G:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["21q22.13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_21", "accession": "NC_000021.9", "start": 37480704, "stop": 37480704, "displayStart": 37480704, "displayStop": 37480704, "variantLength": 1, "positionVcf": 37480704, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_21", "accession": "NC_000021.8", "start": 38853006, "stop": 38853006, "displayStart": 38853006, "displayStop": 38853006, "variantLength": 1, "positionVcf": 38853006, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["E123*", "E132*", "E94*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000021.8:g.38853006G>T", "sequenceAccessionVersion": "NC_000021.8", "sequenceAccession": "NC_000021", "sequenceVersion": 8, "change": "g.38853006G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000021.9:g.37480704G>T", "sequenceAccessionVersion": "NC_000021.9", "sequenceAccession": "NC_000021", "sequenceVersion": 9, "change": "g.37480704G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_009366.2:g.120133G>T", "sequenceAccessionVersion": "NG_009366.2", "sequenceAccession": "NG_009366", "sequenceVersion": 2, "change": "g.120133G>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001347721.2:c.367G>T", "sequenceAccessionVersion": "NM_001347721.2", "sequenceAccession": "NM_001347721", "sequenceVersion": 2, "change": "c.367G>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_001334650.1:p.Glu123Ter", "sequenceAccessionVersion": "NP_001334650.1", "sequenceAccession": "NP_001334650", "sequenceVersion": 1, "change": "p.Glu123Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001347722.2:c.367G>T", "sequenceAccessionVersion": "NM_001347722.2", "sequenceAccession": "NM_001347722", "sequenceVersion": 2, "change": "c.367G>T"}, "proteinExpression": {"expression": "NP_001334651.1:p.Glu123Ter", "sequenceAccessionVersion": "NP_001334651.1", "sequenceAccession": "NP_001334651", "sequenceVersion": 1, "change": "p.Glu123Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001347723.2:c.280G>T", "sequenceAccessionVersion": "NM_001347723.2", "sequenceAccession": "NM_001347723", "sequenceVersion": 2, "change": "c.280G>T"}, "proteinExpression": {"expression": "NP_001334652.1:p.Glu94Ter", "sequenceAccessionVersion": "NP_001334652.1", "sequenceAccession": "NP_001334652", "sequenceVersion": 1, "change": "p.Glu94Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001396.5:c.394G>T", "sequenceAccessionVersion": "NM_001396.5", "sequenceAccession": "NM_001396", "sequenceVersion": 5, "change": "c.394G>T"}, "proteinExpression": {"expression": "NP_001387.2:p.Glu132Ter", "sequenceAccessionVersion": "NP_001387.2", "sequenceAccession": "NP_001387", "sequenceVersion": 2, "change": "p.Glu132Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_101395.2:c.394G>T", "sequenceAccessionVersion": "NM_101395.2", "sequenceAccession": "NM_101395", "sequenceVersion": 2, "change": "c.394G>T"}, "proteinExpression": {"expression": "NP_567824.1:p.Glu132Ter", "sequenceAccessionVersion": "NP_567824.1", "sequenceAccession": "NP_567824", "sequenceVersion": 1, "change": "p.Glu132Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_130436.2:c.367G>T", "sequenceAccessionVersion": "NM_130436.2", "sequenceAccession": "NM_130436", "sequenceVersion": 2, "change": "c.367G>T"}, "proteinExpression": {"expression": "NP_569120.1:p.Glu123Ter", "sequenceAccessionVersion": "NP_569120.1", "sequenceAccession": "NP_569120", "sequenceVersion": 1, "change": "p.Glu123Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_130438.2:c.394G>T", "sequenceAccessionVersion": "NM_130438.2", "sequenceAccession": "NM_130438", "sequenceVersion": 2, "change": "c.394G>T"}, "proteinExpression": {"expression": "NP_569122.1:p.Glu132Ter", "sequenceAccessionVersion": "NP_569122.1", "sequenceAccession": "NP_569122", "sequenceVersion": 1, "change": "p.Glu132Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "alleleId": "1706785", "variationId": "1708487"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DYRK1A-related intellectual disability syndrome", "db": "MedGen", "id": "C5568143"}], "traitSetId": "7564"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "dateLastEvaluated": "2022-09-27T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001347721.2(DYRK1A):c.367G>T (p.Glu123Ter) AND DYRK1A-related intellectual disability syndrome", "accession": "RCV002287858", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "conditions": [{"traits": [{"names": [{"value": "DYRK1A-related intellectual disability syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013578"}]}, {"value": "INTELLECTUAL DEVELOPMENTAL DISORDER, AUTOSOMAL DOMINANT 7", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "614104", "type": "MIM"}, {"db": "OMIM", "id": "600855.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "600855.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "600855.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "600855.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "600855.0003", "type": "Allelic variant"}]}], "symbols": [{"value": "MRD7", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "614104", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "DYRK1A syndrome is characterized by intellectual disability including impaired speech development, autism spectrum disorder including anxious and/or stereotypic behavior problems, and microcephaly. Affected individuals often have a clinically recognizable phenotype including a typical facial gestalt, feeding problems, seizures, hypertonia, gait disturbances, and foot anomalies. The majority of affected individuals function in the moderate-to-severe range of intellectual disability; however, individuals with mild intellectual disability have also been reported. Other medical concerns relate to febrile seizures in infancy; the development of epilepsy with seizures of the atonic, absence, and generalized myoclonic types; short stature; and gastrointestinal problems. Ophthalmologic, urogenital, cardiac, and/or dental anomalies have been reported."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK333438"}]}], "citations": [{"ids": [{"value": "26677511", "source": "PubMed"}, {"value": "NBK333438", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "464306"}, {"db": "MedGen", "id": "C5568143"}, {"db": "MONDO", "id": "MONDO:0013578"}, {"db": "OMIM", "id": "614104", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7564", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2022-09-27T00:00:00Z", "dateCreated": "2022-10-08T00:00:00Z", "mostRecentSubmission": "2022-10-08T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "1385490b-900e-4713-9a48-d901bca5d5cd", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV002578125", "version": 1, "submitterIdentifiers": {"submitterName": "Institute for Medical Genetics and Human Genetics, Charit\u00e9 - Universit\u00e4tsmedizin Berlin", "orgId": "505735", "orgCategory": "clinic", "orgAbbreviation": "Charit\u00e9 - Universit\u00e4tsmedizin"}, "dateUpdated": "2022-10-08T00:00:00Z", "dateCreated": "2022-10-08T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "CUBI - Core Unit Bioinformatics, Berlin Institute of Health", "orgId": "507461", "orgCategory": "laboratory"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2022-09-27T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}, {"attribute": {"value": "Autosomal dominant inheritance"}, "type": "TYPE_MODE_OF_INHERITANCE"}], "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "tissue": "Blood", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE", "familyData": {"pedigreeId": "f75f0449-c4ca-4d3e-bce2-b9bbcf6b606e"}}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_SINGLE_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "98837e1d-3e57-4dfc-ac83-3e3f547446a9"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0000252"}]}, {"xrefs": [{"db": "HP", "id": "HP:0000750"}]}, {"xrefs": [{"db": "HP", "id": "HP:0001263"}]}, {"xrefs": [{"db": "HP", "id": "HP:0003502"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"genes": [{"symbol": "DYRK1A"}], "variantType": "Variation", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_21", "start": 38853006, "stop": 38853006, "referenceAllele": "G", "alternateAllele": "T"}]}}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "614104"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB7643814"], "id": "5039730"}], "traitMappings": [{"medgens": [{"name": "Microcephaly", "cui": "C4551563"}], "clinicalAssertionId": "5039730", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0000252", "mappingRef": "HP"}, {"medgens": [{"name": "Mild short stature", "cui": "C3150077"}], "clinicalAssertionId": "5039730", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0003502", "mappingRef": "HP"}, {"medgens": [{"name": "Delayed speech and language development", "cui": "C0454644"}], "clinicalAssertionId": "5039730", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0000750", "mappingRef": "HP"}, {"medgens": [{"name": "DYRK1A-related intellectual disability syndrome", "cui": "C5568143"}], "clinicalAssertionId": "5039730", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "614104", "mappingRef": "OMIM"}, {"medgens": [{"name": "Global developmental delay", "cui": "C0557874"}], "clinicalAssertionId": "5039730", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0001263", "mappingRef": "HP"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_somatic.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_somatic.xml/out.jsonl
index a8cefd1..9b15f71 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_somatic.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_somatic.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "97006", "variationName": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs)", "variationType": "Deletion", "dateCreated": "2014-05-05T00:00:00Z", "dateLastUpdated": "2024-05-01T00:00:00Z", "mostRecentSubmission": "2024-03-05T00:00:00Z", "accession": "VCV000097006", "version": 3, "numberOfSubmitters": 3, "numberOfSubmissions": 7, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19p13.13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 12938609, "stop": 12944489, "displayStart": 12938609, "displayStop": 12944489, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 13049413, "stop": 13055303, "displayStart": 13049413, "displayStop": 13055303, "strand": "+"}]}], "omims": ["109091"], "fullName": "calreticulin", "geneId": "811", "hgncId": "HGNC:1455", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs)", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["19p13.13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 12943751, "stop": 12943802, "displayStart": 12943751, "displayStop": 12943802, "variantLength": 52, "positionVcf": 12943750, "referenceAlleleVcf": "AGCAGAGGCTTAAGGAGGAGGAAGAAGACAAGAAACGCAAAGAGGAGGAGGAG", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 13054565, "stop": 13054616, "displayStart": 13054565, "displayStop": 13054616, "variantLength": 52, "positionVcf": 13054564, "referenceAlleleVcf": "AGCAGAGGCTTAAGGAGGAGGAAGAAGACAAGAAACGCAAAGAGGAGGAGGAG", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["L367fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000019.10:g.12943758_12943809del", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.12943758_12943809del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.13054572_13054623del", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.13054572_13054623del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_029662.1:g.10159_10210del", "sequenceAccessionVersion": "NG_029662.1", "sequenceAccession": "NG_029662", "sequenceVersion": 1, "change": "g.10159_10210del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_004343.4:c.1099_1150del", "sequenceAccessionVersion": "NM_004343.4", "sequenceAccession": "NM_004343", "sequenceVersion": 4, "change": "c.1099_1150del", "maneSelect": true}, "proteinExpression": {"expression": "NP_004334.1:p.Leu367fs", "sequenceAccessionVersion": "NP_004334.1", "sequenceAccession": "NP_004334", "sequenceVersion": 1, "change": "p.Leu367fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_828:g.10159_10210del", "sequenceAccessionVersion": "LRG_828", "sequenceAccession": "LRG_828"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_004343.3:c.1092_1143del52", "sequenceAccessionVersion": "NM_004343.3", "sequenceAccession": "NM_004343", "sequenceVersion": 3, "change": "c.1092_1143del52"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA149708"}, {"db": "dbVar", "id": "nssv3761626"}, {"db": "dbVar", "id": "nsv1067850"}, {"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "1555760738", "type": "rs"}], "comments": [{"value": "52-nt deletion from exon 9 of CALR.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "102915", "variationId": "97006"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Primary myelofibrosis", "db": "MedGen", "id": "C0001815"}], "traitSetId": "6477"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2013-12-19T00:00:00Z", "submissionCount": 1}}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND Primary myelofibrosis", "accession": "RCV000083256", "version": 5}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Thrombocythemia 1", "db": "MedGen", "id": "C3277671"}], "traitSetId": "2608"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2013-12-19T00:00:00Z", "submissionCount": 1}}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND Thrombocythemia 1", "accession": "RCV000083257", "version": 5}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Primary myelofibrosis", "db": "MedGen", "id": "C0001815"}, {"value": "Thrombocythemia 1", "db": "MedGen", "id": "C3277671"}], "traitSetId": "19309"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "dateLastEvaluated": "2022-02-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND multiple conditions", "accession": "RCV002498437", "version": 1}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Essential thrombocythemia", "db": "MedGen", "id": "C0040028"}], "traitSetId": "22296"}, "rcvClassifications": {"somaticClinicalImpact": {"reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "descriptions": [{"value": "Tier I - Strong", "clinicalImpactAssertionType": "diagnostic", "clinicalImpactClinicalSignificance": "supports diagnosis", "dateLastEvaluated": "2024-01-24T00:00:00Z", "submissionCount": 1}, {"value": "Tier I - Strong", "clinicalImpactAssertionType": "prognostic", "clinicalImpactClinicalSignificance": "better outcome", "dateLastEvaluated": "2024-01-24T00:00:00Z", "submissionCount": 1}]}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND Essential thrombocythemia", "accession": "RCV003883131", "version": 1}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Acute myeloid leukemia", "db": "MedGen", "id": "C0023467"}], "traitSetId": "6288"}, "rcvClassifications": {"somaticClinicalImpact": {"reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "descriptions": [{"value": "Tier III - Unknown", "dateLastEvaluated": "2024-01-24T00:00:00Z", "submissionCount": 1}]}, "oncogenicityClassification": {"reviewStatus": "AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2024-01-24T00:00:00Z", "submissionCount": 1}}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND Acute myeloid leukemia", "accession": "RCV003883130", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "24325359", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "THROMBOCYTHEMIA, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "605093.0002", "type": "Allelic variant"}]}, {"value": "Idiopathic thrombocythemia", "type": "Alternate"}, {"value": "THROMBOCYTOSIS 1", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}, {"value": "Thrombocythemia 1", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0008554"}]}], "symbols": [{"value": "THCYT1", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C3277671"}, {"db": "MONDO", "id": "MONDO:0008554"}, {"db": "OMIM", "id": "187950", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2608", "contributesToAggregateClassification": false}, {"traits": [{"names": [{"value": "Primary myelofibrosis", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0009692"}]}, {"value": "Myelofibrosis, somatic", "type": "Alternate"}, {"value": "Suspected idiopathic myelofibrosis", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"integerValue": "8618"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "8618"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "xrefs": [{"db": "Orphanet", "id": "824"}, {"db": "MedGen", "id": "C0001815"}, {"db": "MeSH", "id": "D055728"}, {"db": "MONDO", "id": "MONDO:0009692"}, {"db": "OMIM", "id": "254450", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "6477", "contributesToAggregateClassification": false}, {"traits": [{"names": [{"value": "THROMBOCYTHEMIA, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "605093.0002", "type": "Allelic variant"}]}, {"value": "Idiopathic thrombocythemia", "type": "Alternate"}, {"value": "THROMBOCYTOSIS 1", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}, {"value": "Thrombocythemia 1", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0008554"}]}], "symbols": [{"value": "THCYT1", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C3277671"}, {"db": "MONDO", "id": "MONDO:0008554"}, {"db": "OMIM", "id": "187950", "type": "MIM"}]}, {"names": [{"value": "Primary myelofibrosis", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0009692"}]}, {"value": "Myelofibrosis, somatic", "type": "Alternate"}, {"value": "Suspected idiopathic myelofibrosis", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"integerValue": "8618"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "8618"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "xrefs": [{"db": "Orphanet", "id": "824"}, {"db": "MedGen", "id": "C0001815"}, {"db": "MeSH", "id": "D055728"}, {"db": "MONDO", "id": "MONDO:0009692"}, {"db": "OMIM", "id": "254450", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "19309", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2022-02-10T00:00:00Z", "dateCreated": "2014-05-05T00:00:00Z", "mostRecentSubmission": "2022-12-31T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 3}, "somaticClinicalImpacts": [{"reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Tier I - Strong", "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "24325359", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2024-01-24T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z", "mostRecentSubmission": "2024-03-05T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 3}], "oncogenicityClassification": {"reviewStatus": "AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Uncertain significance", "citations": [{"ids": [{"value": "31562135", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2024-01-24T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z", "mostRecentSubmission": "2024-03-05T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "109091.0001_THROMBOCYTHEMIA, SOMATIC", "title": "CALR, 52-BP DEL, EX9_THROMBOCYTHEMIA, SOMATIC"}, "clinvarAccession": {"accession": "SCV000115336", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2014-05-05T00:00:00Z", "dateCreated": "2014-02-11T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2013-12-19T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_INCLUDED_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Klampfl et al. (2013) and Nangalia et al. (2013) identified a somatic 52-bp deletion in exon 9 of the CALR gene (1092_1143del) in patients with myeloproliferative neoplasms, including myelofibrosis (254450) and essential thrombocythemia (see 187950). CALR mutations and JAK2 and MPL mutations were mutually exclusive. The 52-bp mutation resulted in frameshift and premature termination (L367fsTer46). Klampfl et al. (2013) identified a total of 36 types of somatic insertion or deletion within exon 9 of CALR, all of which caused a frameshift to the same alternative reading frame and generated a novel C-terminal peptide in the mutant calreticulin. Klampfl et al. (2013) identified insertions or deletions in exon 9 of CALR in 88% of individuals with primary myelofibrosis with nonmutated JAK2 or MPL. The 52-bp deletion accounted for 53% of all cases of mutated CALR among several types of myeloproliferative neoplasm. Overexpression of this mutation resulted in cytokine-independent growth in vitro through the activation of STAT5 (601511). Nangalia et al. (2013) identified 23 patients with myelofibrosis who carried the L367fsTer46 mutation. Overall, Nangalia et al. (2013) identified 19 different somatic CALR mutations, all in exon 9 and all of which generated a +1 frameshift resulting in a mutant protein with a novel C terminal. CALR mutations were present in 18 of 32 patients (56%) with primary myelofibrosis and in 12 of 14 patients (86%) with progression of essential thrombocythemia to myelofibrosis. Neither Klampfl et al. (2013) nor Nangalia et al. (2013) detected CALR mutation in individuals with polycythemia vera."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}]}, {"ids": [{"value": "24325359", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "254450", "type": "MIM"}, {"db": "OMIM", "id": "187950", "type": "MIM"}, {"db": "OMIM", "id": "601511", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "names": [{"value": "CALR, 52-BP DEL, EX9"}], "variantType": "Variation", "otherNames": [{"value": "52-BP DEL, EX9", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "THROMBOCYTHEMIA, SOMATIC", "type": "included"}]}], "type": "TYPE_DISEASE"}, "id": "202976"}, {"clinvarSubmissionId": {"localKey": "109091.0001_MYELOFIBROSIS, SOMATIC", "title": "CALR, 52-BP DEL, EX9_MYELOFIBROSIS, SOMATIC"}, "clinvarAccession": {"accession": "SCV000115335", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2014-05-05T00:00:00Z", "dateCreated": "2014-02-11T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2013-12-19T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Klampfl et al. (2013) and Nangalia et al. (2013) identified a somatic 52-bp deletion in exon 9 of the CALR gene (1092_1143del) in patients with myeloproliferative neoplasms, including myelofibrosis (254450) and essential thrombocythemia (see 187950). CALR mutations and JAK2 and MPL mutations were mutually exclusive. The 52-bp mutation resulted in frameshift and premature termination (L367fsTer46). Klampfl et al. (2013) identified a total of 36 types of somatic insertion or deletion within exon 9 of CALR, all of which caused a frameshift to the same alternative reading frame and generated a novel C-terminal peptide in the mutant calreticulin. Klampfl et al. (2013) identified insertions or deletions in exon 9 of CALR in 88% of individuals with primary myelofibrosis with nonmutated JAK2 or MPL. The 52-bp deletion accounted for 53% of all cases of mutated CALR among several types of myeloproliferative neoplasm. Overexpression of this mutation resulted in cytokine-independent growth in vitro through the activation of STAT5 (601511). Nangalia et al. (2013) identified 23 patients with myelofibrosis who carried the L367fsTer46 mutation. Overall, Nangalia et al. (2013) identified 19 different somatic CALR mutations, all in exon 9 and all of which generated a +1 frameshift resulting in a mutant protein with a novel C terminal. CALR mutations were present in 18 of 32 patients (56%) with primary myelofibrosis and in 12 of 14 patients (86%) with progression of essential thrombocythemia to myelofibrosis. Neither Klampfl et al. (2013) nor Nangalia et al. (2013) detected CALR mutation in individuals with polycythemia vera."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}]}, {"ids": [{"value": "24325359", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "254450", "type": "MIM"}, {"db": "OMIM", "id": "187950", "type": "MIM"}, {"db": "OMIM", "id": "601511", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "names": [{"value": "CALR, 52-BP DEL, EX9"}], "variantType": "Variation", "otherNames": [{"value": "52-BP DEL, EX9", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MYELOFIBROSIS, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "202975"}, {"clinvarSubmissionId": {"localKey": "NM_004343.4:c.1099_1150del|OMIM:187950;254450", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV002812646", "version": 1, "submitterIdentifiers": {"submitterName": "Fulgent Genetics, Fulgent Genetics", "orgId": "500105", "orgCategory": "laboratory"}, "dateUpdated": "2022-12-31T00:00:00Z", "dateCreated": "2022-12-31T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2022-02-10T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.4:c.1099_1150del"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}, {"xrefs": [{"db": "OMIM", "id": "254450", "type": "MIM"}]}], "type": "TYPE_TRAIT_CHOICE"}, "submissionNames": ["SUB12390657"], "id": "5461412"}, {"clinvarSubmissionId": {"localKey": "NM_004343.3:c.1092_1143del52|MeSH:D015470|OncogenicityClassification", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004697530", "version": 1, "submitterIdentifiers": {"submitterName": "Molecular Diagnostics Laboratory, Fox Chase Cancer Center - Temple Health", "orgId": "509422", "orgCategory": "laboratory"}, "dateUpdated": "2024-03-05T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "oncogenicityClassification": "Uncertain significance", "citations": [{"ids": [{"value": "31562135", "source": "PubMed"}]}], "comments": [{"value": "While there are strong associations of this variant to thrombocythemia and myeloproliferative neoplasms, its oncogenicity and clinical impact in this case of acute myeloid leukemia is uncertain because the allele frequency decreased over time from 11% (progressive thrombocythemia) to 3% (AML in remission) to undetectable at AML relapse."}], "dateLastEvaluated": "2024-01-24T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "tissue": "bone marrow with 37% blasts", "somaticVariantInNormalTissue": "SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED", "somaticVariantAlleleFraction": "3%", "species": {"name": "human", "taxonomyId": 9606}, "ages": [{"value": 70, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MINIMUM"}, {"value": 79, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MAXIMUM"}], "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0031020"}]}, {"xrefs": [{"db": "HP", "id": "HP:0012138"}]}], "type": "TYPE_FINDING", "dateLastEvaluated": "2021-10-15T00:00:00Z"}}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.3:c.1092_1143del52"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MeSH", "id": "D015470"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14244255"], "id": "8771190"}, {"clinvarSubmissionId": {"localKey": "NM_004343.3:c.1092_1143del52|MeSH:D013920|ClinicalImpactClassification|diagnostic", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004697527", "version": 1, "submitterIdentifiers": {"submitterName": "Molecular Diagnostics Laboratory, Fox Chase Cancer Center - Temple Health", "orgId": "509422", "orgCategory": "laboratory"}, "dateUpdated": "2024-03-05T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "somaticClinicalImpacts": {"value": "Tier I - Strong", "clinicalImpactAssertionType": "diagnostic", "clinicalImpactClinicalSignificance": "supports diagnosis"}, "citations": [{"ids": [{"value": "24325359", "source": "PubMed"}]}, {"ids": [{"value": "24325356", "source": "PubMed"}]}], "comments": [{"value": "A large majority of myeloproliferative neoplasms with nonmutated JAK2 exhibit somatic CALR mutations. In a subset of such cases with essential thrombocythemia, 67% had CALR mutation."}], "dateLastEvaluated": "2024-01-24T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "tissue": "bone marrow with ET and 5-9% blasts", "somaticVariantInNormalTissue": "SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED", "somaticVariantAlleleFraction": "11%", "species": {"name": "human", "taxonomyId": 9606}, "ages": [{"value": 70, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MINIMUM"}, {"value": 79, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MAXIMUM"}], "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0031020"}]}], "type": "TYPE_FINDING", "dateLastEvaluated": "2021-04-15T00:00:00Z"}, "comments": [{"value": "A patient with a 10-year history of elevated and increasing platelet counts had a bone marrow biopsy in the absence of symptoms. The biopsy revealed thrombocythemia, with normal cytogenetics and without mutation of JAK2. CALR was not tested at that time. Approximately 2 \u00bd years later, a second BM biopsy was performed when the patient began having symptoms and counts were worsening. The biopsy had hypercellular marrow with 5-9% blasts and normal karyotype, but revealed this CALR exon 9 mutation at 11% allele frequency. She was started on 5-azyctadine; however, five months later, a BM biopsy showed 37% blasts positive for CD33, CD34, CD117, and HLA-DR, consistent with acute myeloid leukemia, and the karyotype included a novel translocation, t(4;7)(q12;q21.2), in 17 of 20 metaphase spreads examined. After induction chemotherapy with cytarabine and daunorubicin, a day-14 biopsy showed response to therapy, with a hypercellular marrow (80%) that displayed panmyelosis (trilineage hyperplasia), granulocytic hyperplasia, and megakaryocytic atypia without an increase in blasts, consistent with residual/persistent myeloid disease. A PB specimen revealed normocytic normochromatic anemia, leukocytosis, and thrombocytosis. Chromosome microarray analysis and NGS of DNA from a BM sample revealed no detectable genomic imbalances, the CALR deletion at 3.2% allele frequency, and no other pathogenic variants. After eight months in remission, the AML relapsed with blood DNA showing oncogenic somatic mutations at around 50% allele frequency, but no evidence of the CALR deletion."}]}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.3:c.1092_1143del52"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MeSH", "id": "D013920"}]}], "type": "TYPE_FINDING"}, "submissionNames": ["SUB14244255"], "id": "8771187"}, {"clinvarSubmissionId": {"localKey": "NM_004343.3:c.1092_1143del52|MeSH:D013920|ClinicalImpactClassification|prognostic", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004697528", "version": 1, "submitterIdentifiers": {"submitterName": "Molecular Diagnostics Laboratory, Fox Chase Cancer Center - Temple Health", "orgId": "509422", "orgCategory": "laboratory"}, "dateUpdated": "2024-03-05T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "somaticClinicalImpacts": {"value": "Tier I - Strong", "clinicalImpactAssertionType": "prognostic", "clinicalImpactClinicalSignificance": "better outcome"}, "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}]}], "comments": [{"value": "In a cohort of 1107 myeloproliferative neoplasm patients, those with \"mutated CALR had a lower risk of thromobsis and longer overall survival than patients with mutated JAK2.\""}], "dateLastEvaluated": "2024-01-24T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "tissue": "bone marrow with ET and 5-9% blasts", "somaticVariantInNormalTissue": "SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED", "somaticVariantAlleleFraction": "11%", "species": {"name": "human", "taxonomyId": 9606}, "ages": [{"value": 70, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MINIMUM"}, {"value": 79, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MAXIMUM"}], "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0031020"}]}], "type": "TYPE_FINDING", "dateLastEvaluated": "2021-04-15T00:00:00Z"}}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.3:c.1092_1143del52"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MeSH", "id": "D013920"}]}], "type": "TYPE_FINDING"}, "submissionNames": ["SUB14244255"], "id": "8771188"}, {"clinvarSubmissionId": {"localKey": "NM_004343.3:c.1092_1143del52|MeSH:D015470|ClinicalImpactClassification", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004697529", "version": 1, "submitterIdentifiers": {"submitterName": "Molecular Diagnostics Laboratory, Fox Chase Cancer Center - Temple Health", "orgId": "509422", "orgCategory": "laboratory"}, "dateUpdated": "2024-03-05T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "somaticClinicalImpacts": {"value": "Tier III - Unknown"}, "comments": [{"value": "While there are strong associations of this variant to thrombocythemia and myeloproliferative neoplasms, its oncogenicity and clinical impact in this case of acute myeloid leukemia is uncertain because the allele frequency decreased over time from 11% (progressive thrombocythemia) to 3% (AML in remission) to undetectable at AML relapse."}], "dateLastEvaluated": "2024-01-24T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "tissue": "bone marrow with 37% blasts", "somaticVariantInNormalTissue": "SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED", "somaticVariantAlleleFraction": "3%", "species": {"name": "human", "taxonomyId": 9606}, "ages": [{"value": 70, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MINIMUM"}, {"value": 79, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MAXIMUM"}], "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0031020"}]}, {"xrefs": [{"db": "HP", "id": "HP:0012138"}]}], "type": "TYPE_FINDING", "dateLastEvaluated": "2021-10-15T00:00:00Z"}}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.3:c.1092_1143del52"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MeSH", "id": "D015470"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14244255"], "id": "8771189"}], "traitMappings": [{"medgens": [{"name": "Acute myeloid leukemia", "cui": "C0023467"}], "clinicalAssertionId": "8771189", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "D015470", "mappingRef": "MeSH"}, {"medgens": [{"name": "Granulocytic hyperplasia", "cui": "C4023028"}], "clinicalAssertionId": "8771190", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0012138", "mappingRef": "HP"}, {"medgens": [{"name": "Thrombocythemia 1", "cui": "C3277671"}], "clinicalAssertionId": "5461412", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "187950", "mappingRef": "OMIM"}, {"medgens": [{"name": "Bone marrow hypercellularity", "cui": "C0427703"}], "clinicalAssertionId": "8771188", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0031020", "mappingRef": "HP"}, {"medgens": [{"name": "Primary myelofibrosis", "cui": "C0001815"}], "clinicalAssertionId": "5461412", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "254450", "mappingRef": "OMIM"}, {"medgens": [{"name": "Essential thrombocythemia", "cui": "C0040028"}], "clinicalAssertionId": "8771187", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "D013920", "mappingRef": "MeSH"}, {"medgens": [{"name": "Essential thrombocythemia", "cui": "C0040028"}], "clinicalAssertionId": "8771188", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "D013920", "mappingRef": "MeSH"}, {"medgens": [{"name": "Bone marrow hypercellularity", "cui": "C0427703"}], "clinicalAssertionId": "8771190", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0031020", "mappingRef": "HP"}, {"medgens": [{"name": "Bone marrow hypercellularity", "cui": "C0427703"}], "clinicalAssertionId": "8771187", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0031020", "mappingRef": "HP"}, {"medgens": [{"name": "Bone marrow hypercellularity", "cui": "C0427703"}], "clinicalAssertionId": "8771189", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0031020", "mappingRef": "HP"}, {"medgens": [{"name": "Thrombocythemia 1", "cui": "C3277671"}], "clinicalAssertionId": "202976", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "THROMBOCYTHEMIA, SOMATIC", "mappingRef": "Alternate"}, {"medgens": [{"name": "Acute myeloid leukemia", "cui": "C0023467"}], "clinicalAssertionId": "8771190", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "D015470", "mappingRef": "MeSH"}, {"medgens": [{"name": "Granulocytic hyperplasia", "cui": "C4023028"}], "clinicalAssertionId": "8771189", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0012138", "mappingRef": "HP"}, {"medgens": [{"name": "Primary myelofibrosis", "cui": "C0001815"}], "clinicalAssertionId": "202975", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MYELOFIBROSIS, SOMATIC", "mappingRef": "Preferred"}]}}
+{"variationId": "97006", "variationName": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs)", "variationType": "Deletion", "dateCreated": "2014-05-05T00:00:00Z", "dateLastUpdated": "2024-05-01T00:00:00Z", "mostRecentSubmission": "2024-03-05T00:00:00Z", "accession": "VCV000097006", "version": 3, "numberOfSubmitters": 3, "numberOfSubmissions": 7, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19p13.13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 12938609, "stop": 12944489, "displayStart": 12938609, "displayStop": 12944489, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 13049413, "stop": 13055303, "displayStart": 13049413, "displayStop": 13055303, "strand": "+"}]}], "omims": ["109091"], "fullName": "calreticulin", "geneId": "811", "hgncId": "HGNC:1455", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs)", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["19p13.13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 12943751, "stop": 12943802, "displayStart": 12943751, "displayStop": 12943802, "variantLength": 52, "positionVcf": 12943750, "referenceAlleleVcf": "AGCAGAGGCTTAAGGAGGAGGAAGAAGACAAGAAACGCAAAGAGGAGGAGGAG", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 13054565, "stop": 13054616, "displayStart": 13054565, "displayStop": 13054616, "variantLength": 52, "positionVcf": 13054564, "referenceAlleleVcf": "AGCAGAGGCTTAAGGAGGAGGAAGAAGACAAGAAACGCAAAGAGGAGGAGGAG", "alternateAlleleVcf": "A"}]}], "proteinChanges": ["L367fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000019.10:g.12943758_12943809del", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.12943758_12943809del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.13054572_13054623del", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.13054572_13054623del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_029662.1:g.10159_10210del", "sequenceAccessionVersion": "NG_029662.1", "sequenceAccession": "NG_029662", "sequenceVersion": 1, "change": "g.10159_10210del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_004343.4:c.1099_1150del", "sequenceAccessionVersion": "NM_004343.4", "sequenceAccession": "NM_004343", "sequenceVersion": 4, "change": "c.1099_1150del", "maneSelect": true}, "proteinExpression": {"expression": "NP_004334.1:p.Leu367fs", "sequenceAccessionVersion": "NP_004334.1", "sequenceAccession": "NP_004334", "sequenceVersion": 1, "change": "p.Leu367fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_828:g.10159_10210del", "sequenceAccessionVersion": "LRG_828", "sequenceAccession": "LRG_828"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_004343.3:c.1092_1143del52", "sequenceAccessionVersion": "NM_004343.3", "sequenceAccession": "NM_004343", "sequenceVersion": 3, "change": "c.1092_1143del52"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA149708"}, {"db": "dbVar", "id": "nssv3761626"}, {"db": "dbVar", "id": "nsv1067850"}, {"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "1555760738", "type": "rs"}], "comments": [{"value": "52-nt deletion from exon 9 of CALR.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "102915", "variationId": "97006"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Primary myelofibrosis", "db": "MedGen", "id": "C0001815"}], "traitSetId": "6477"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2013-12-19T00:00:00Z", "submissionCount": 1}}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND Primary myelofibrosis", "accession": "RCV000083256", "version": 5}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Thrombocythemia 1", "db": "MedGen", "id": "C3277671"}], "traitSetId": "2608"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2013-12-19T00:00:00Z", "submissionCount": 1}}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND Thrombocythemia 1", "accession": "RCV000083257", "version": 5}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Primary myelofibrosis", "db": "MedGen", "id": "C0001815"}, {"value": "Thrombocythemia 1", "db": "MedGen", "id": "C3277671"}], "traitSetId": "19309"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "dateLastEvaluated": "2022-02-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND multiple conditions", "accession": "RCV002498437", "version": 1}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Essential thrombocythemia", "db": "MedGen", "id": "C0040028"}], "traitSetId": "22296"}, "rcvClassifications": {"somaticClinicalImpact": {"reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "descriptions": [{"value": "Tier I - Strong", "clinicalImpactAssertionType": "diagnostic", "clinicalImpactClinicalSignificance": "supports diagnosis", "dateLastEvaluated": "2024-01-24T00:00:00Z", "submissionCount": 1}, {"value": "Tier I - Strong", "clinicalImpactAssertionType": "prognostic", "clinicalImpactClinicalSignificance": "better outcome", "dateLastEvaluated": "2024-01-24T00:00:00Z", "submissionCount": 1}]}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND Essential thrombocythemia", "accession": "RCV003883131", "version": 1}, {"classifiedConditionList": {"classifiedConditions": [{"value": "Acute myeloid leukemia", "db": "MedGen", "id": "C0023467"}], "traitSetId": "6288"}, "rcvClassifications": {"somaticClinicalImpact": {"reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "descriptions": [{"value": "Tier III - Unknown", "dateLastEvaluated": "2024-01-24T00:00:00Z", "submissionCount": 1}]}, "oncogenicityClassification": {"reviewStatus": "AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2024-01-24T00:00:00Z", "submissionCount": 1}}}, "title": "NM_004343.3(CALR):c.1092_1143del52 (p.Leu367Thrfs) AND Acute myeloid leukemia", "accession": "RCV003883130", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "24325359", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "THROMBOCYTHEMIA, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "605093.0002", "type": "Allelic variant"}]}, {"value": "Idiopathic thrombocythemia", "type": "Alternate"}, {"value": "THROMBOCYTOSIS 1", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}, {"value": "Thrombocythemia 1", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0008554"}]}], "symbols": [{"value": "THCYT1", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C3277671"}, {"db": "MONDO", "id": "MONDO:0008554"}, {"db": "OMIM", "id": "187950", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2608", "contributesToAggregateClassification": false}, {"traits": [{"names": [{"value": "Primary myelofibrosis", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0009692"}]}, {"value": "Myelofibrosis, somatic", "type": "Alternate"}, {"value": "Suspected idiopathic myelofibrosis", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"integerValue": "8618"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "8618"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "xrefs": [{"db": "Orphanet", "id": "824"}, {"db": "MedGen", "id": "C0001815"}, {"db": "MeSH", "id": "D055728"}, {"db": "MONDO", "id": "MONDO:0009692"}, {"db": "OMIM", "id": "254450", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "6477", "contributesToAggregateClassification": false}, {"traits": [{"names": [{"value": "THROMBOCYTHEMIA, SOMATIC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "605093.0002", "type": "Allelic variant"}]}, {"value": "Idiopathic thrombocythemia", "type": "Alternate"}, {"value": "THROMBOCYTOSIS 1", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}, {"value": "Thrombocythemia 1", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0008554"}]}], "symbols": [{"value": "THCYT1", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C3277671"}, {"db": "MONDO", "id": "MONDO:0008554"}, {"db": "OMIM", "id": "187950", "type": "MIM"}]}, {"names": [{"value": "Primary myelofibrosis", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0009692"}]}, {"value": "Myelofibrosis, somatic", "type": "Alternate"}, {"value": "Suspected idiopathic myelofibrosis", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"integerValue": "8618"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "8618"}]}, {"attribute": {"base": {"value": "Hereditary cancer syndrome"}, "type": "keyword"}}], "xrefs": [{"db": "Orphanet", "id": "824"}, {"db": "MedGen", "id": "C0001815"}, {"db": "MeSH", "id": "D055728"}, {"db": "MONDO", "id": "MONDO:0009692"}, {"db": "OMIM", "id": "254450", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "19309", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2022-02-10T00:00:00Z", "dateCreated": "2014-05-05T00:00:00Z", "mostRecentSubmission": "2022-12-31T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 3}, "somaticClinicalImpact": {"reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Tier I - Strong", "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "24325359", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2024-01-24T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z", "mostRecentSubmission": "2024-03-05T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 3}, "oncogenicityClassification": {"reviewStatus": "AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Uncertain significance", "citations": [{"ids": [{"value": "31562135", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2024-01-24T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z", "mostRecentSubmission": "2024-03-05T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "109091.0001_THROMBOCYTHEMIA, SOMATIC", "title": "CALR, 52-BP DEL, EX9_THROMBOCYTHEMIA, SOMATIC"}, "clinvarAccession": {"accession": "SCV000115336", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2014-05-05T00:00:00Z", "dateCreated": "2014-02-11T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2013-12-19T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_INCLUDED_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Klampfl et al. (2013) and Nangalia et al. (2013) identified a somatic 52-bp deletion in exon 9 of the CALR gene (1092_1143del) in patients with myeloproliferative neoplasms, including myelofibrosis (254450) and essential thrombocythemia (see 187950). CALR mutations and JAK2 and MPL mutations were mutually exclusive. The 52-bp mutation resulted in frameshift and premature termination (L367fsTer46). Klampfl et al. (2013) identified a total of 36 types of somatic insertion or deletion within exon 9 of CALR, all of which caused a frameshift to the same alternative reading frame and generated a novel C-terminal peptide in the mutant calreticulin. Klampfl et al. (2013) identified insertions or deletions in exon 9 of CALR in 88% of individuals with primary myelofibrosis with nonmutated JAK2 or MPL. The 52-bp deletion accounted for 53% of all cases of mutated CALR among several types of myeloproliferative neoplasm. Overexpression of this mutation resulted in cytokine-independent growth in vitro through the activation of STAT5 (601511). Nangalia et al. (2013) identified 23 patients with myelofibrosis who carried the L367fsTer46 mutation. Overall, Nangalia et al. (2013) identified 19 different somatic CALR mutations, all in exon 9 and all of which generated a +1 frameshift resulting in a mutant protein with a novel C terminal. CALR mutations were present in 18 of 32 patients (56%) with primary myelofibrosis and in 12 of 14 patients (86%) with progression of essential thrombocythemia to myelofibrosis. Neither Klampfl et al. (2013) nor Nangalia et al. (2013) detected CALR mutation in individuals with polycythemia vera."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}]}, {"ids": [{"value": "24325359", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "254450", "type": "MIM"}, {"db": "OMIM", "id": "187950", "type": "MIM"}, {"db": "OMIM", "id": "601511", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "name": {"value": "CALR, 52-BP DEL, EX9"}, "variantType": "Variation", "otherNames": [{"value": "52-BP DEL, EX9", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "THROMBOCYTHEMIA, SOMATIC", "type": "included"}]}], "type": "TYPE_DISEASE"}, "id": "202976"}, {"clinvarSubmissionId": {"localKey": "109091.0001_MYELOFIBROSIS, SOMATIC", "title": "CALR, 52-BP DEL, EX9_MYELOFIBROSIS, SOMATIC"}, "clinvarAccession": {"accession": "SCV000115335", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2014-05-05T00:00:00Z", "dateCreated": "2014-02-11T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2013-12-19T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Klampfl et al. (2013) and Nangalia et al. (2013) identified a somatic 52-bp deletion in exon 9 of the CALR gene (1092_1143del) in patients with myeloproliferative neoplasms, including myelofibrosis (254450) and essential thrombocythemia (see 187950). CALR mutations and JAK2 and MPL mutations were mutually exclusive. The 52-bp mutation resulted in frameshift and premature termination (L367fsTer46). Klampfl et al. (2013) identified a total of 36 types of somatic insertion or deletion within exon 9 of CALR, all of which caused a frameshift to the same alternative reading frame and generated a novel C-terminal peptide in the mutant calreticulin. Klampfl et al. (2013) identified insertions or deletions in exon 9 of CALR in 88% of individuals with primary myelofibrosis with nonmutated JAK2 or MPL. The 52-bp deletion accounted for 53% of all cases of mutated CALR among several types of myeloproliferative neoplasm. Overexpression of this mutation resulted in cytokine-independent growth in vitro through the activation of STAT5 (601511). Nangalia et al. (2013) identified 23 patients with myelofibrosis who carried the L367fsTer46 mutation. Overall, Nangalia et al. (2013) identified 19 different somatic CALR mutations, all in exon 9 and all of which generated a +1 frameshift resulting in a mutant protein with a novel C terminal. CALR mutations were present in 18 of 32 patients (56%) with primary myelofibrosis and in 12 of 14 patients (86%) with progression of essential thrombocythemia to myelofibrosis. Neither Klampfl et al. (2013) nor Nangalia et al. (2013) detected CALR mutation in individuals with polycythemia vera."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}]}, {"ids": [{"value": "24325359", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "254450", "type": "MIM"}, {"db": "OMIM", "id": "187950", "type": "MIM"}, {"db": "OMIM", "id": "601511", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "name": {"value": "CALR, 52-BP DEL, EX9"}, "variantType": "Variation", "otherNames": [{"value": "52-BP DEL, EX9", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "109091.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MYELOFIBROSIS, SOMATIC", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "202975"}, {"clinvarSubmissionId": {"localKey": "NM_004343.4:c.1099_1150del|OMIM:187950;254450", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV002812646", "version": 1, "submitterIdentifiers": {"submitterName": "Fulgent Genetics, Fulgent Genetics", "orgId": "500105", "orgCategory": "laboratory"}, "dateUpdated": "2022-12-31T00:00:00Z", "dateCreated": "2022-12-31T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2022-02-10T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_UNKNOWN"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.4:c.1099_1150del"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "187950", "type": "MIM"}]}, {"xrefs": [{"db": "OMIM", "id": "254450", "type": "MIM"}]}], "type": "TYPE_TRAIT_CHOICE"}, "submissionNames": ["SUB12390657"], "id": "5461412"}, {"clinvarSubmissionId": {"localKey": "NM_004343.3:c.1092_1143del52|MeSH:D015470|OncogenicityClassification", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004697530", "version": 1, "submitterIdentifiers": {"submitterName": "Molecular Diagnostics Laboratory, Fox Chase Cancer Center - Temple Health", "orgId": "509422", "orgCategory": "laboratory"}, "dateUpdated": "2024-03-05T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "oncogenicityClassification": "Uncertain significance", "citations": [{"ids": [{"value": "31562135", "source": "PubMed"}]}], "comments": [{"value": "While there are strong associations of this variant to thrombocythemia and myeloproliferative neoplasms, its oncogenicity and clinical impact in this case of acute myeloid leukemia is uncertain because the allele frequency decreased over time from 11% (progressive thrombocythemia) to 3% (AML in remission) to undetectable at AML relapse."}], "dateLastEvaluated": "2024-01-24T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "tissue": "bone marrow with 37% blasts", "somaticVariantInNormalTissue": "SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED", "somaticVariantAlleleFraction": "3%", "species": {"name": "human", "taxonomyId": 9606}, "ages": [{"value": 70, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MINIMUM"}, {"value": 79, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MAXIMUM"}], "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0031020"}]}, {"xrefs": [{"db": "HP", "id": "HP:0012138"}]}], "type": "TYPE_FINDING", "dateLastEvaluated": "2021-10-15T00:00:00Z"}}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.3:c.1092_1143del52"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MeSH", "id": "D015470"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14244255"], "id": "8771190"}, {"clinvarSubmissionId": {"localKey": "NM_004343.3:c.1092_1143del52|MeSH:D013920|ClinicalImpactClassification|diagnostic", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004697527", "version": 1, "submitterIdentifiers": {"submitterName": "Molecular Diagnostics Laboratory, Fox Chase Cancer Center - Temple Health", "orgId": "509422", "orgCategory": "laboratory"}, "dateUpdated": "2024-03-05T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "somaticClinicalImpact": {"value": "Tier I - Strong", "clinicalImpactAssertionType": "diagnostic", "clinicalImpactClinicalSignificance": "supports diagnosis"}, "citations": [{"ids": [{"value": "24325359", "source": "PubMed"}]}, {"ids": [{"value": "24325356", "source": "PubMed"}]}], "comments": [{"value": "A large majority of myeloproliferative neoplasms with nonmutated JAK2 exhibit somatic CALR mutations. In a subset of such cases with essential thrombocythemia, 67% had CALR mutation."}], "dateLastEvaluated": "2024-01-24T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "tissue": "bone marrow with ET and 5-9% blasts", "somaticVariantInNormalTissue": "SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED", "somaticVariantAlleleFraction": "11%", "species": {"name": "human", "taxonomyId": 9606}, "ages": [{"value": 70, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MINIMUM"}, {"value": 79, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MAXIMUM"}], "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0031020"}]}], "type": "TYPE_FINDING", "dateLastEvaluated": "2021-04-15T00:00:00Z"}, "comments": [{"value": "A patient with a 10-year history of elevated and increasing platelet counts had a bone marrow biopsy in the absence of symptoms. The biopsy revealed thrombocythemia, with normal cytogenetics and without mutation of JAK2. CALR was not tested at that time. Approximately 2 \u00bd years later, a second BM biopsy was performed when the patient began having symptoms and counts were worsening. The biopsy had hypercellular marrow with 5-9% blasts and normal karyotype, but revealed this CALR exon 9 mutation at 11% allele frequency. She was started on 5-azyctadine; however, five months later, a BM biopsy showed 37% blasts positive for CD33, CD34, CD117, and HLA-DR, consistent with acute myeloid leukemia, and the karyotype included a novel translocation, t(4;7)(q12;q21.2), in 17 of 20 metaphase spreads examined. After induction chemotherapy with cytarabine and daunorubicin, a day-14 biopsy showed response to therapy, with a hypercellular marrow (80%) that displayed panmyelosis (trilineage hyperplasia), granulocytic hyperplasia, and megakaryocytic atypia without an increase in blasts, consistent with residual/persistent myeloid disease. A PB specimen revealed normocytic normochromatic anemia, leukocytosis, and thrombocytosis. Chromosome microarray analysis and NGS of DNA from a BM sample revealed no detectable genomic imbalances, the CALR deletion at 3.2% allele frequency, and no other pathogenic variants. After eight months in remission, the AML relapsed with blood DNA showing oncogenic somatic mutations at around 50% allele frequency, but no evidence of the CALR deletion."}]}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.3:c.1092_1143del52"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MeSH", "id": "D013920"}]}], "type": "TYPE_FINDING"}, "submissionNames": ["SUB14244255"], "id": "8771187"}, {"clinvarSubmissionId": {"localKey": "NM_004343.3:c.1092_1143del52|MeSH:D013920|ClinicalImpactClassification|prognostic", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004697528", "version": 1, "submitterIdentifiers": {"submitterName": "Molecular Diagnostics Laboratory, Fox Chase Cancer Center - Temple Health", "orgId": "509422", "orgCategory": "laboratory"}, "dateUpdated": "2024-03-05T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "somaticClinicalImpact": {"value": "Tier I - Strong", "clinicalImpactAssertionType": "prognostic", "clinicalImpactClinicalSignificance": "better outcome"}, "citations": [{"ids": [{"value": "24325356", "source": "PubMed"}]}], "comments": [{"value": "In a cohort of 1107 myeloproliferative neoplasm patients, those with \"mutated CALR had a lower risk of thromobsis and longer overall survival than patients with mutated JAK2.\""}], "dateLastEvaluated": "2024-01-24T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "tissue": "bone marrow with ET and 5-9% blasts", "somaticVariantInNormalTissue": "SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED", "somaticVariantAlleleFraction": "11%", "species": {"name": "human", "taxonomyId": 9606}, "ages": [{"value": 70, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MINIMUM"}, {"value": 79, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MAXIMUM"}], "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0031020"}]}], "type": "TYPE_FINDING", "dateLastEvaluated": "2021-04-15T00:00:00Z"}}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.3:c.1092_1143del52"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MeSH", "id": "D013920"}]}], "type": "TYPE_FINDING"}, "submissionNames": ["SUB14244255"], "id": "8771188"}, {"clinvarSubmissionId": {"localKey": "NM_004343.3:c.1092_1143del52|MeSH:D015470|ClinicalImpactClassification", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV004697529", "version": 1, "submitterIdentifiers": {"submitterName": "Molecular Diagnostics Laboratory, Fox Chase Cancer Center - Temple Health", "orgId": "509422", "orgCategory": "laboratory"}, "dateUpdated": "2024-03-05T00:00:00Z", "dateCreated": "2024-03-05T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "somaticClinicalImpact": {"value": "Tier III - Unknown"}, "comments": [{"value": "While there are strong associations of this variant to thrombocythemia and myeloproliferative neoplasms, its oncogenicity and clinical impact in this case of acute myeloid leukemia is uncertain because the allele frequency decreased over time from 11% (progressive thrombocythemia) to 3% (AML in remission) to undetectable at AML relapse."}], "dateLastEvaluated": "2024-01-24T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_SOMATIC", "tissue": "bone marrow with 37% blasts", "somaticVariantInNormalTissue": "SOMATIC_VARIANT_IN_NORMAL_TISSUE_NOT_TESTED", "somaticVariantAlleleFraction": "3%", "species": {"name": "human", "taxonomyId": 9606}, "ages": [{"value": 70, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MINIMUM"}, {"value": 79, "unit": "AGE_UNIT_YEARS", "type": "AGE_TYPE_MAXIMUM"}], "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"xrefs": [{"db": "HP", "id": "HP:0031020"}]}, {"xrefs": [{"db": "HP", "id": "HP:0012138"}]}], "type": "TYPE_FINDING", "dateLastEvaluated": "2021-10-15T00:00:00Z"}}], "simpleAllele": {"genes": [{"symbol": "CALR"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_004343.3:c.1092_1143del52"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "MeSH", "id": "D015470"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB14244255"], "id": "8771189"}], "traitMappings": [{"medgens": [{"name": "Acute myeloid leukemia", "cui": "C0023467"}], "clinicalAssertionId": "8771189", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "D015470", "mappingRef": "MeSH"}, {"medgens": [{"name": "Granulocytic hyperplasia", "cui": "C4023028"}], "clinicalAssertionId": "8771190", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0012138", "mappingRef": "HP"}, {"medgens": [{"name": "Thrombocythemia 1", "cui": "C3277671"}], "clinicalAssertionId": "5461412", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "187950", "mappingRef": "OMIM"}, {"medgens": [{"name": "Bone marrow hypercellularity", "cui": "C0427703"}], "clinicalAssertionId": "8771188", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0031020", "mappingRef": "HP"}, {"medgens": [{"name": "Primary myelofibrosis", "cui": "C0001815"}], "clinicalAssertionId": "5461412", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "254450", "mappingRef": "OMIM"}, {"medgens": [{"name": "Essential thrombocythemia", "cui": "C0040028"}], "clinicalAssertionId": "8771187", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "D013920", "mappingRef": "MeSH"}, {"medgens": [{"name": "Essential thrombocythemia", "cui": "C0040028"}], "clinicalAssertionId": "8771188", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "D013920", "mappingRef": "MeSH"}, {"medgens": [{"name": "Bone marrow hypercellularity", "cui": "C0427703"}], "clinicalAssertionId": "8771190", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0031020", "mappingRef": "HP"}, {"medgens": [{"name": "Bone marrow hypercellularity", "cui": "C0427703"}], "clinicalAssertionId": "8771187", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0031020", "mappingRef": "HP"}, {"medgens": [{"name": "Bone marrow hypercellularity", "cui": "C0427703"}], "clinicalAssertionId": "8771189", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0031020", "mappingRef": "HP"}, {"medgens": [{"name": "Thrombocythemia 1", "cui": "C3277671"}], "clinicalAssertionId": "202976", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "THROMBOCYTHEMIA, SOMATIC", "mappingRef": "Alternate"}, {"medgens": [{"name": "Acute myeloid leukemia", "cui": "C0023467"}], "clinicalAssertionId": "8771190", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "D015470", "mappingRef": "MeSH"}, {"medgens": [{"name": "Granulocytic hyperplasia", "cui": "C4023028"}], "clinicalAssertionId": "8771189", "traitType": "Finding", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "HP:0012138", "mappingRef": "HP"}, {"medgens": [{"name": "Primary myelofibrosis", "cui": "C0001815"}], "clinicalAssertionId": "202975", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MYELOFIBROSIS, SOMATIC", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_study_description.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_study_description.xml/out.jsonl
index 6598b89..e336dc5 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_study_description.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_study_description.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "34753", "variationName": "GRCh38/hg38 5p15.33(chr5:629340-820360)x1", "variationType": "copy number loss", "dateCreated": "2015-07-10T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2015-07-10T00:00:00Z", "accession": "VCV000034753", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 612340, "stop": 676616, "displayStart": 612340, "displayStop": 676616, "strand": "+"}, {"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NT_187550.1", "start": 6636, "stop": 14557, "displayStart": 6636, "displayStop": 14557, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 612404, "stop": 653667, "displayStart": 612404, "displayStop": 653667, "strand": "+"}]}], "omims": ["616475"], "fullName": "centrosomal protein 72", "geneId": "55722", "hgncId": "HGNC:25547", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 693355, "stop": 693604, "displayStart": 693355, "displayStop": 693604, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 15876", "geneId": "129993564", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 754133, "stop": 754212, "displayStart": 754133, "displayStop": 754212, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 22299", "geneId": "129993565", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 754323, "stop": 754402, "displayStart": 754323, "displayStop": 754402, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 22300", "geneId": "129993566", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 754423, "stop": 754472, "displayStart": 754423, "displayStop": 754472, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 22301", "geneId": "129993567", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 637077, "stop": 637246, "displayStart": 637077, "displayStop": 637246, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86736", "geneId": "132089290", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 642828, "stop": 642997, "displayStart": 642828, "displayStop": 642997, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86741", "geneId": "132089291", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 644352, "stop": 644521, "displayStart": 644352, "displayStop": 644521, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86745", "geneId": "132089292", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 646218, "stop": 646387, "displayStart": 646218, "displayStop": 646387, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86753", "geneId": "132089293", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 662413, "stop": 662582, "displayStart": 662413, "displayStop": 662582, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86779", "geneId": "132089294", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 663884, "stop": 664053, "displayStart": 663884, "displayStop": 664053, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86783", "geneId": "132089295", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 665471, "stop": 665640, "displayStart": 665471, "displayStop": 665640, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86799", "geneId": "132089296", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 671094, "stop": 671263, "displayStart": 671094, "displayStop": 671263, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86803", "geneId": "132089297", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 671626, "stop": 671795, "displayStart": 671626, "displayStop": 671795, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86807", "geneId": "132089298", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 672393, "stop": 672562, "displayStart": 672393, "displayStop": 672562, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86811", "geneId": "132089299", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 673941, "stop": 674110, "displayStart": 673941, "displayStop": 674110, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86819", "geneId": "132089300", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 676568, "stop": 676737, "displayStart": 676568, "displayStop": 676737, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86831", "geneId": "132089301", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 681776, "stop": 681945, "displayStart": 681776, "displayStop": 681945, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86835", "geneId": "132089302", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 775580, "stop": 775749, "displayStart": 775580, "displayStop": 775749, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86882", "geneId": "132089303", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 645284, "stop": 645453, "displayStart": 645284, "displayStop": 645453, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86749/86750", "geneId": "132090722", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 684688, "stop": 684857, "displayStart": 684688, "displayStop": 684857, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86841/86842", "geneId": "132090723", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 676223, "stop": 676515, "displayStart": 676223, "displayStop": 676515, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancers experimental_86823 and experimental_86827", "geneId": "132205959", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 659862, "stop": 700727, "displayStart": 659862, "displayStop": 700727, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 659976, "stop": 693509, "displayStart": 659976, "displayStop": 693509, "strand": "-"}]}], "omims": ["608773"], "fullName": "tubulin polymerization promoting protein", "geneId": "11076", "hgncId": "HGNC:24164", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 795605, "stop": 860563, "displayStart": 795605, "displayStop": 860563, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 795719, "stop": 851100, "displayStart": 795719, "displayStop": 851100, "strand": "-"}]}], "fullName": "zinc finger DHHC-type containing 11", "geneId": "79844", "hgncId": "HGNC:19158", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 710355, "stop": 784729, "displayStart": 710355, "displayStop": 784729, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 692723, "stop": 784841, "displayStart": 692723, "displayStop": 784841, "strand": "-"}]}], "fullName": "zinc finger DHHC-type containing 11B", "geneId": "653082", "hgncId": "HGNC:32962", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "GRCh38/hg38 5p15.33(chr5:629340-820360)x1", "variantTypes": ["copy number loss"], "locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "innerStart": 629340, "innerStop": 820360, "displayStart": 629340, "displayStop": 820360, "variantLength": 191021}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "innerStart": 629455, "innerStop": 820475, "displayStart": 629455, "displayStop": 820475, "variantLength": 191021}, {"assembly": "NCBI36", "chr": "CHROMOSOME_5", "accession": "NC_000005.8", "innerStart": 682455, "innerStop": 873475, "displayStart": 682455, "displayStop": 873475, "variantLength": 191021}]}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000005.10:g.(?_629340)_(820360_?)del", "sequenceAccessionVersion": "NC_000005.10", "sequenceAccession": "NC_000005", "sequenceVersion": 10, "change": "g.(?_629340)_(820360_?)del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000005.9:g.(?_629455)_(820475_?)del", "sequenceAccessionVersion": "NC_000005.9", "sequenceAccession": "NC_000005", "sequenceVersion": 9, "change": "g.(?_629455)_(820475_?)del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000005.8:g.(?_682455)_(873475_?)del", "sequenceAccessionVersion": "NC_000005.8", "sequenceAccession": "NC_000005", "sequenceVersion": 8, "change": "g.(?_682455)_(873475_?)del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "NCBI36"}], "xrefs": [{"db": "dbVar", "id": "nssv576789"}, {"db": "dbVar", "id": "nsv491918"}], "alleleId": "43418", "variationId": "34753"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "See cases"}], "traitSetId": "16994"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Benign", "dateLastEvaluated": "2009-12-30T00:00:00Z", "submissionCount": 1}}}, "title": "GRCh38/hg38 5p15.33(chr5:629340-820360)x1 AND See cases", "accession": "RCV000050363", "version": 7}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Benign", "conditions": [{"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION", "id": "16994", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-12-30T00:00:00Z", "dateCreated": "2015-07-10T00:00:00Z", "mostRecentSubmission": "2015-07-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "nsv491918:copy number loss:See cases:1:SCV000173253"}, "clinvarAccession": {"accession": "SCV000173253", "version": 3, "submitterIdentifiers": {"submitterName": "ISCA site 4", "orgId": "505240", "orgCategory": "laboratory"}, "dateUpdated": "2015-07-10T00:00:00Z", "dateCreated": "2014-08-30T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "International Standards For Cytogenomic Arrays Consortium (ISCA)", "orgId": "500029", "orgCategory": "consortium"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Benign", "dateLastEvaluated": "2009-12-30T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}], "traitSet": {"traits": [{"names": [{"value": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "type": "Preferred"}]}], "type": "TYPE_FINDING"}, "xrefs": [{"db": "dbVar", "id": "nssv576789", "type": "dbVarVariantCallId"}]}], "simpleAllele": {"variantType": "copy number loss", "location": {"sequenceLocations": [{"assembly": "NCBI36", "chr": "CHROMOSOME_5", "accession": "NC_000005.8", "innerStart": 682455, "innerStop": 873475}]}, "xrefs": [{"db": "dbVar", "id": "nssv576789", "type": "dbVarVariantCallId"}, {"db": "dbVar", "id": "nsv491918", "type": "dbVarVariantRegionId"}], "attributes": [{"attribute": {"base": {"value": "1"}, "type": "AbsoluteCopyNumber"}}, {"attribute": {"base": {"value": "NC_000005.8:g.(?_682455)_(873475_?)del"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION"}, "studyDescription": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter.", "comments": [{"value": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter."}], "submissionNames": ["nstd37"], "id": "312692"}], "traitMappings": [{"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "312692", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "cui": "CN218420"}], "clinicalAssertionId": "312692", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "mappingRef": "Preferred"}]}}
+{"variationId": "34753", "variationName": "GRCh38/hg38 5p15.33(chr5:629340-820360)x1", "variationType": "copy number loss", "dateCreated": "2015-07-10T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2015-07-10T00:00:00Z", "accession": "VCV000034753", "version": 2, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 612340, "stop": 676616, "displayStart": 612340, "displayStop": 676616, "strand": "+"}, {"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NT_187550.1", "start": 6636, "stop": 14557, "displayStart": 6636, "displayStop": 14557, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 612404, "stop": 653667, "displayStart": 612404, "displayStop": 653667, "strand": "+"}]}], "omims": ["616475"], "fullName": "centrosomal protein 72", "geneId": "55722", "hgncId": "HGNC:25547", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 693355, "stop": 693604, "displayStart": 693355, "displayStop": 693604, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 15876", "geneId": "129993564", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 754133, "stop": 754212, "displayStart": 754133, "displayStop": 754212, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 22299", "geneId": "129993565", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 754323, "stop": 754402, "displayStart": 754323, "displayStop": 754402, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 22300", "geneId": "129993566", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 754423, "stop": 754472, "displayStart": 754423, "displayStop": 754472, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid active region 22301", "geneId": "129993567", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 637077, "stop": 637246, "displayStart": 637077, "displayStop": 637246, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86736", "geneId": "132089290", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 642828, "stop": 642997, "displayStart": 642828, "displayStop": 642997, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86741", "geneId": "132089291", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 644352, "stop": 644521, "displayStart": 644352, "displayStop": 644521, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86745", "geneId": "132089292", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 646218, "stop": 646387, "displayStart": 646218, "displayStop": 646387, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86753", "geneId": "132089293", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 662413, "stop": 662582, "displayStart": 662413, "displayStop": 662582, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86779", "geneId": "132089294", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 663884, "stop": 664053, "displayStart": 663884, "displayStop": 664053, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86783", "geneId": "132089295", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 665471, "stop": 665640, "displayStart": 665471, "displayStop": 665640, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86799", "geneId": "132089296", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 671094, "stop": 671263, "displayStart": 671094, "displayStop": 671263, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86803", "geneId": "132089297", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 671626, "stop": 671795, "displayStart": 671626, "displayStop": 671795, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86807", "geneId": "132089298", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 672393, "stop": 672562, "displayStart": 672393, "displayStop": 672562, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86811", "geneId": "132089299", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 673941, "stop": 674110, "displayStart": 673941, "displayStop": 674110, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86819", "geneId": "132089300", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 676568, "stop": 676737, "displayStart": 676568, "displayStop": 676737, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86831", "geneId": "132089301", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 681776, "stop": 681945, "displayStart": 681776, "displayStop": 681945, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86835", "geneId": "132089302", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 775580, "stop": 775749, "displayStart": 775580, "displayStop": 775749, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86882", "geneId": "132089303", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 645284, "stop": 645453, "displayStart": 645284, "displayStop": 645453, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86749/86750", "geneId": "132090722", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 684688, "stop": 684857, "displayStart": 684688, "displayStop": 684857, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancer experimental_86841/86842", "geneId": "132090723", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 676223, "stop": 676515, "displayStart": 676223, "displayStop": 676515, "strand": "+"}]}], "fullName": "Neanderthal introgressed variant-containing enhancers experimental_86823 and experimental_86827", "geneId": "132205959", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 659862, "stop": 700727, "displayStart": 659862, "displayStop": 700727, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 659976, "stop": 693509, "displayStart": 659976, "displayStop": 693509, "strand": "-"}]}], "omims": ["608773"], "fullName": "tubulin polymerization promoting protein", "geneId": "11076", "hgncId": "HGNC:24164", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 795605, "stop": 860563, "displayStart": 795605, "displayStop": 860563, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 795719, "stop": 851100, "displayStart": 795719, "displayStop": 851100, "strand": "-"}]}], "fullName": "zinc finger DHHC-type containing 11", "geneId": "79844", "hgncId": "HGNC:19158", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "start": 710355, "stop": 784729, "displayStart": 710355, "displayStop": 784729, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "start": 692723, "stop": 784841, "displayStart": 692723, "displayStop": 784841, "strand": "-"}]}], "fullName": "zinc finger DHHC-type containing 11B", "geneId": "653082", "hgncId": "HGNC:32962", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "GRCh38/hg38 5p15.33(chr5:629340-820360)x1", "variantTypes": ["copy number loss"], "locations": [{"cytogeneticLocations": ["5p15.33"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_5", "accession": "NC_000005.10", "innerStart": 629340, "innerStop": 820360, "displayStart": 629340, "displayStop": 820360, "variantLength": 191021}, {"assembly": "GRCh37", "chr": "CHROMOSOME_5", "accession": "NC_000005.9", "innerStart": 629455, "innerStop": 820475, "displayStart": 629455, "displayStop": 820475, "variantLength": 191021}, {"assembly": "NCBI36", "chr": "CHROMOSOME_5", "accession": "NC_000005.8", "innerStart": 682455, "innerStop": 873475, "displayStart": 682455, "displayStop": 873475, "variantLength": 191021}]}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000005.10:g.(?_629340)_(820360_?)del", "sequenceAccessionVersion": "NC_000005.10", "sequenceAccession": "NC_000005", "sequenceVersion": 10, "change": "g.(?_629340)_(820360_?)del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000005.9:g.(?_629455)_(820475_?)del", "sequenceAccessionVersion": "NC_000005.9", "sequenceAccession": "NC_000005", "sequenceVersion": 9, "change": "g.(?_629455)_(820475_?)del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000005.8:g.(?_682455)_(873475_?)del", "sequenceAccessionVersion": "NC_000005.8", "sequenceAccession": "NC_000005", "sequenceVersion": 8, "change": "g.(?_682455)_(873475_?)del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "NCBI36"}], "xrefs": [{"db": "dbVar", "id": "nssv576789"}, {"db": "dbVar", "id": "nsv491918"}], "alleleId": "43418", "variationId": "34753"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "See cases"}], "traitSetId": "16994"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Benign", "dateLastEvaluated": "2009-12-30T00:00:00Z", "submissionCount": 1}}}, "title": "GRCh38/hg38 5p15.33(chr5:629340-820360)x1 AND See cases", "accession": "RCV000050363", "version": 7}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Benign", "conditions": [{"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION", "id": "16994", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2009-12-30T00:00:00Z", "dateCreated": "2015-07-10T00:00:00Z", "mostRecentSubmission": "2015-07-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "nsv491918:copy number loss:See cases:1:SCV000173253"}, "clinvarAccession": {"accession": "SCV000173253", "version": 3, "submitterIdentifiers": {"submitterName": "ISCA site 4", "orgId": "505240", "orgCategory": "laboratory"}, "dateUpdated": "2015-07-10T00:00:00Z", "dateCreated": "2014-08-30T00:00:00Z"}, "additionalSubmitters": [{"submitterIdentifiers": {"submitterName": "International Standards For Cytogenomic Arrays Consortium (ISCA)", "orgId": "500029", "orgCategory": "consortium"}, "type": "TYPE_SECONDARY"}], "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Benign", "dateLastEvaluated": "2009-12-30T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_VARIANT_ALLELES"}]}], "traitSet": {"traits": [{"names": [{"value": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "type": "Preferred"}]}], "type": "TYPE_FINDING"}, "xrefs": [{"db": "dbVar", "id": "nssv576789", "type": "dbVarVariantCallId"}]}], "simpleAllele": {"variantType": "copy number loss", "location": {"sequenceLocations": [{"assembly": "NCBI36", "chr": "CHROMOSOME_5", "accession": "NC_000005.8", "innerStart": 682455, "innerStop": 873475}]}, "xrefs": [{"db": "dbVar", "id": "nssv576789", "type": "dbVarVariantCallId"}, {"db": "dbVar", "id": "nsv491918", "type": "dbVarVariantRegionId"}], "attributes": [{"attribute": {"base": {"value": "1"}, "type": "AbsoluteCopyNumber"}}, {"attribute": {"base": {"value": "NC_000005.8:g.(?_682455)_(873475_?)del"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION"}, "studyDescription": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter.", "comments": [{"value": "Copy number variation identified through the course of routine clinical cytogenomic testing in postnatal populations, with clinical assertions as classified by the original submitter."}], "submissionNames": ["nstd37"], "id": "312692"}], "traitMappings": [{"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "312692", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "cui": "CN218420"}], "clinicalAssertionId": "312692", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Developmental delay AND/OR other significant developmental or morphological phenotypes", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_with_ethnicity.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_with_ethnicity.xml/out.jsonl
index 20329aa..2290a60 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_with_ethnicity.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_with_ethnicity.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "654", "variationName": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-08-20T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2019-09-29T00:00:00Z", "accession": "VCV000000654", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169511951, "stop": 169586481, "displayStart": 169511951, "displayStop": 169586481, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169481191, "stop": 169555768, "displayStart": 169481191, "displayStop": 169555768, "strand": "-"}]}], "omims": ["612309"], "fullName": "coagulation factor V", "geneId": "2153", "hgncId": "HGNC:3542", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys)", "canonicalSpdi": "NC_000001.11:169518452:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169518453, "stop": 169518453, "displayStart": 169518453, "displayStop": 169518453, "variantLength": 1, "positionVcf": 169518453, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169487691, "stop": 169487691, "displayStart": 169487691, "displayStop": 169487691, "variantLength": 1, "positionVcf": 169487691, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "F5, ARG2074CYS"}, {"value": "R2074C"}], "proteinChanges": ["R2102C"], "hgvsExpressions": [{"proteinExpression": {"expression": "P12259:p.Arg2102Cys", "sequenceAccessionVersion": "P12259", "sequenceAccession": "P12259", "change": "p.Arg2102Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.169487691G>A", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.169487691G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.169518453G>A", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.169518453G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011806.1:g.73079C>T", "sequenceAccessionVersion": "NG_011806.1", "sequenceAccession": "NG_011806", "sequenceVersion": 1, "change": "g.73079C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000130.5:c.6304C>T", "sequenceAccessionVersion": "NM_000130.5", "sequenceAccession": "NM_000130", "sequenceVersion": 5, "change": "c.6304C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000121.2:p.Arg2102Cys", "sequenceAccessionVersion": "NP_000121.2", "sequenceAccession": "NP_000121", "sequenceVersion": 2, "change": "p.Arg2102Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_553:g.73079C>T", "sequenceAccessionVersion": "LRG_553", "sequenceAccession": "LRG_553"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_553t1:c.6304C>T", "sequenceAccessionVersion": "LRG_553t1", "sequenceAccession": "LRG_553t1"}, "proteinExpression": {"expression": "LRG_553p1:p.Arg2102Cys", "sequenceAccessionVersion": "LRG_553p1", "sequenceAccession": "LRG_553p1", "change": "p.Arg2102Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA251559"}, {"db": "UniProtKB", "id": "P12259#VAR_032701"}, {"db": "OMIM", "id": "612309.0012", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203910", "type": "rs"}], "alleleId": "15693", "variationId": "654"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Factor V deficiency", "db": "MedGen", "id": "C4317320"}], "traitSetId": "169"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2019-02-01T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys) AND Factor V deficiency", "accession": "RCV000000688", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "12393490", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Reduced coagulation factor V activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0003225"}]}, {"value": "Factor V deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Factor+V+Deficiency/2709"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "SNOMED CT", "id": "4320005"}]}], "attributes": [{"attribute": {"base": {"value": "Factor V Leiden thrombophilia is characterized by a poor anticoagulant response to activated protein C (APC) and an increased risk for venous thromboembolism (VTE). Deep vein thrombosis (DVT) is the most common VTE, with the legs being the most common site. Thrombosis in unusual locations is less common. Evidence suggests that heterozygosity for the Leiden variant has at most a modest effect on risk for recurrent thrombosis after initial treatment of a first VTE. It is unlikely that factor V Leiden thrombophilia (i.e., heterozygosity or homozygosity for the Leiden variant) is a major factor contributing to pregnancy loss and other adverse pregnancy outcomes (preeclampsia, fetal growth restriction, and placental abruption). The clinical expression of factor V Leiden thrombophilia is influenced by the following: The number of Leiden variants (heterozygotes have a slightly increased risk for venous thrombosis; homozygotes have a much greater thrombotic risk). Coexisting genetic thrombophilic disorders, which have a supra-additive effect on overall thrombotic risk. Acquired thrombophilic disorders: antiphospholipid antibody (APLA) syndrome, paroxysmal nocturnal hemoglobinuria, myeloproliferative disorders, and increased levels of clotting factors. Circumstantial risk factors including but not limited to pregnancy, central venous catheters, travel, combined oral contraceptive (COC) use and other combined contraceptives, oral hormone replacement therapy (HRT), selective estrogen receptor modulators (SERMs), obesity, leg injury, and advancing age."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1368"}]}], "citations": [{"ids": [{"value": "20301542", "source": "PubMed"}, {"value": "NBK1368", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "21150787", "source": "PubMed"}], "type": "general", "abbrev": "EGAPP, 2011"}, {"ids": [{"value": "3111091", "source": "pmc"}], "type": "general", "abbrev": "Retired, ACMG, 2001"}, {"ids": [{"value": "33674767", "source": "PubMed"}], "type": "Suggested Reading", "abbrev": "ACMG, 2021"}, {"ids": [{"value": "35645034", "source": "PubMed"}], "type": "general", "abbrev": "BSH, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng158", "citationText": "UK NICE Guideline NG158, Venous thromboembolic diseases: diagnosis, management and thrombophilia testing, 2023", "type": "practice guideline", "abbrev": "NICE, 2023"}], "xrefs": [{"db": "Orphanet", "id": "326"}, {"db": "MedGen", "id": "C4317320"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "169", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2019-02-01T00:00:00Z", "dateCreated": "2017-08-20T00:00:00Z", "mostRecentSubmission": "2019-09-29T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612309.0012_FACTOR V DEFICIENCY", "title": "F5, ARG2074CYS_FACTOR V DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020838", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-08-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2003-01-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 22-year-old Italian woman in whom factor V deficiency (227400) was first diagnosed at the age of 10 years after abnormal coagulation screening tests were found preceding an operation for strabismus, Duga et al. (2003) identified a homozygous 6394C-T transition at in exon 23 of the F5 gene, resulting in an arg2074-to-cys (R2074C) change in the C2 domain of the protein. Functional studies showed that this substitution impaired both factor V secretion and its activity. The patient's menstruation was normal and her only bleeding symptom was easy bruising after minor trauma. Her parents, apparently nonconsanguineous, were asymptomatic and had factor V functional and antigen levels typical of heterozygotes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12393490", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "names": [{"value": "F5, ARG2074CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG2074CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612309.0012", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "FACTOR V DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20838"}, {"clinvarSubmissionId": {"localKey": "c.6304C>T_227400", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000899835", "version": 1, "submitterIdentifiers": {"submitterName": "NIHR Bioresource Rare Diseases, University of Cambridge", "orgId": "505998", "orgCategory": "consortium", "orgAbbreviation": "NIHR BR RD"}, "dateUpdated": "2019-09-29T00:00:00Z", "dateCreated": "2019-09-29T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "citations": [{"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2019-02-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "ethnicity": "European", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_COMPOUND_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "TGP0330"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_000130.4:c.6304C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyName": "ThromboGenomics", "submissionNames": ["ThromboGenomics"], "id": "1769365"}], "traitMappings": [{"medgens": [{"name": "Factor V deficiency", "cui": "C4317320"}], "clinicalAssertionId": "20838", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FACTOR V DEFICIENCY", "mappingRef": "Preferred"}, {"medgens": [{"name": "Congenital factor V deficiency", "cui": "C0015499"}], "clinicalAssertionId": "1769365", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "227400", "mappingRef": "OMIM"}]}}
+{"variationId": "654", "variationName": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-08-20T00:00:00Z", "dateLastUpdated": "2024-04-15T00:00:00Z", "mostRecentSubmission": "2019-09-29T00:00:00Z", "accession": "VCV000000654", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169511951, "stop": 169586481, "displayStart": 169511951, "displayStop": 169586481, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169481191, "stop": 169555768, "displayStart": 169481191, "displayStop": 169555768, "strand": "-"}]}], "omims": ["612309"], "fullName": "coagulation factor V", "geneId": "2153", "hgncId": "HGNC:3542", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys)", "canonicalSpdi": "NC_000001.11:169518452:G:A", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 169518453, "stop": 169518453, "displayStart": 169518453, "displayStop": 169518453, "variantLength": 1, "positionVcf": 169518453, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 169487691, "stop": 169487691, "displayStart": 169487691, "displayStop": 169487691, "variantLength": 1, "positionVcf": 169487691, "referenceAlleleVcf": "G", "alternateAlleleVcf": "A"}]}], "otherNames": [{"value": "F5, ARG2074CYS"}, {"value": "R2074C"}], "proteinChanges": ["R2102C"], "hgvsExpressions": [{"proteinExpression": {"expression": "P12259:p.Arg2102Cys", "sequenceAccessionVersion": "P12259", "sequenceAccession": "P12259", "change": "p.Arg2102Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.169487691G>A", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.169487691G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.169518453G>A", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.169518453G>A"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011806.1:g.73079C>T", "sequenceAccessionVersion": "NG_011806.1", "sequenceAccession": "NG_011806", "sequenceVersion": 1, "change": "g.73079C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_000130.5:c.6304C>T", "sequenceAccessionVersion": "NM_000130.5", "sequenceAccession": "NM_000130", "sequenceVersion": 5, "change": "c.6304C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_000121.2:p.Arg2102Cys", "sequenceAccessionVersion": "NP_000121.2", "sequenceAccession": "NP_000121", "sequenceVersion": 2, "change": "p.Arg2102Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_553:g.73079C>T", "sequenceAccessionVersion": "LRG_553", "sequenceAccession": "LRG_553"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_553t1:c.6304C>T", "sequenceAccessionVersion": "LRG_553t1", "sequenceAccession": "LRG_553t1"}, "proteinExpression": {"expression": "LRG_553p1:p.Arg2102Cys", "sequenceAccessionVersion": "LRG_553p1", "sequenceAccession": "LRG_553p1", "change": "p.Arg2102Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA251559"}, {"db": "UniProtKB", "id": "P12259#VAR_032701"}, {"db": "OMIM", "id": "612309.0012", "type": "Allelic variant"}, {"db": "dbSNP", "id": "118203910", "type": "rs"}], "alleleId": "15693", "variationId": "654"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Factor V deficiency", "db": "MedGen", "id": "C4317320"}], "traitSetId": "169"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Likely pathogenic", "dateLastEvaluated": "2019-02-01T00:00:00Z", "submissionCount": 2}}}, "title": "NM_000130.5(F5):c.6304C>T (p.Arg2102Cys) AND Factor V deficiency", "accession": "RCV000000688", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Likely pathogenic", "citations": [{"ids": [{"value": "12393490", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Reduced coagulation factor V activity", "type": "Alternate", "xrefs": [{"db": "Human Phenotype Ontology", "id": "HP:0003225"}]}, {"value": "Factor V deficiency", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Factor+V+Deficiency/2709"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "SNOMED CT", "id": "4320005"}]}], "attributes": [{"attribute": {"base": {"value": "Factor V Leiden thrombophilia is characterized by a poor anticoagulant response to activated protein C (APC) and an increased risk for venous thromboembolism (VTE). Deep vein thrombosis (DVT) is the most common VTE, with the legs being the most common site. Thrombosis in unusual locations is less common. Evidence suggests that heterozygosity for the Leiden variant has at most a modest effect on risk for recurrent thrombosis after initial treatment of a first VTE. It is unlikely that factor V Leiden thrombophilia (i.e., heterozygosity or homozygosity for the Leiden variant) is a major factor contributing to pregnancy loss and other adverse pregnancy outcomes (preeclampsia, fetal growth restriction, and placental abruption). The clinical expression of factor V Leiden thrombophilia is influenced by the following: The number of Leiden variants (heterozygotes have a slightly increased risk for venous thrombosis; homozygotes have a much greater thrombotic risk). Coexisting genetic thrombophilic disorders, which have a supra-additive effect on overall thrombotic risk. Acquired thrombophilic disorders: antiphospholipid antibody (APLA) syndrome, paroxysmal nocturnal hemoglobinuria, myeloproliferative disorders, and increased levels of clotting factors. Circumstantial risk factors including but not limited to pregnancy, central venous catheters, travel, combined oral contraceptive (COC) use and other combined contraceptives, oral hormone replacement therapy (HRT), selective estrogen receptor modulators (SERMs), obesity, leg injury, and advancing age."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK1368"}]}], "citations": [{"ids": [{"value": "20301542", "source": "PubMed"}, {"value": "NBK1368", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}, {"ids": [{"value": "21150787", "source": "PubMed"}], "type": "general", "abbrev": "EGAPP, 2011"}, {"ids": [{"value": "3111091", "source": "pmc"}], "type": "general", "abbrev": "Retired, ACMG, 2001"}, {"ids": [{"value": "33674767", "source": "PubMed"}], "type": "Suggested Reading", "abbrev": "ACMG, 2021"}, {"ids": [{"value": "35645034", "source": "PubMed"}], "type": "general", "abbrev": "BSH, 2022"}, {"url": "https://www.nice.org.uk/guidance/ng158", "citationText": "UK NICE Guideline NG158, Venous thromboembolic diseases: diagnosis, management and thrombophilia testing, 2023", "type": "practice guideline", "abbrev": "NICE, 2023"}], "xrefs": [{"db": "Orphanet", "id": "326"}, {"db": "MedGen", "id": "C4317320"}, {"db": "MONDO", "id": "MONDO:0020586"}, {"db": "Human Phenotype Ontology", "id": "HP:0003225", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "169", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2019-02-01T00:00:00Z", "dateCreated": "2017-08-20T00:00:00Z", "mostRecentSubmission": "2019-09-29T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "612309.0012_FACTOR V DEFICIENCY", "title": "F5, ARG2074CYS_FACTOR V DEFICIENCY"}, "clinvarAccession": {"accession": "SCV000020838", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-08-20T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2003-01-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 22-year-old Italian woman in whom factor V deficiency (227400) was first diagnosed at the age of 10 years after abnormal coagulation screening tests were found preceding an operation for strabismus, Duga et al. (2003) identified a homozygous 6394C-T transition at in exon 23 of the F5 gene, resulting in an arg2074-to-cys (R2074C) change in the C2 domain of the protein. Functional studies showed that this substitution impaired both factor V secretion and its activity. The patient's menstruation was normal and her only bleeding symptom was easy bruising after minor trauma. Her parents, apparently nonconsanguineous, were asymptomatic and had factor V functional and antigen levels typical of heterozygotes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "12393490", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "name": {"value": "F5, ARG2074CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG2074CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "612309.0012", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "FACTOR V DEFICIENCY", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20838"}, {"clinvarSubmissionId": {"localKey": "c.6304C>T_227400", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000899835", "version": 1, "submitterIdentifiers": {"submitterName": "NIHR Bioresource Rare Diseases, University of Cambridge", "orgId": "505998", "orgCategory": "consortium", "orgAbbreviation": "NIHR BR RD"}, "dateUpdated": "2019-09-29T00:00:00Z", "dateCreated": "2019-09-29T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Likely pathogenic", "citations": [{"ids": [{"value": "31064749", "source": "PubMed"}], "type": "general"}], "dateLastEvaluated": "2019-02-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "ethnicity": "European", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "numerTested": 1, "gender": "GENDER_MALE"}, "observedData": [{"attributes": [{"base": {"integerValue": "1"}, "type": "TYPE_COMPOUND_HETEROZYGOUS"}]}, {"attributes": [{"base": {"value": "TGP0330"}, "type": "TYPE_SAMPLE_LOCAL_ID"}]}]}], "simpleAllele": {"genes": [{"symbol": "F5"}], "variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_000130.4:c.6304C>T"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "227400", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "studyName": "ThromboGenomics", "submissionNames": ["ThromboGenomics"], "id": "1769365"}], "traitMappings": [{"medgens": [{"name": "Factor V deficiency", "cui": "C4317320"}], "clinicalAssertionId": "20838", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "FACTOR V DEFICIENCY", "mappingRef": "Preferred"}, {"medgens": [{"name": "Congenital factor V deficiency", "cui": "C0015499"}], "clinicalAssertionId": "1769365", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "227400", "mappingRef": "OMIM"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_with_hpo.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_with_hpo.xml/out.jsonl
index 9667acb..981e730 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_with_hpo.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ex_with_hpo.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "7501", "variationName": "NM_002281.4(KRT81):c.1237G>A (p.Glu413Lys)", "variationType": "single nucleotide variant", "dateCreated": "2013-10-19T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-11-05T00:00:00Z", "accession": "VCV000007501", "version": 1, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["12q13.13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 52274645, "stop": 52309163, "displayStart": 52274645, "displayStop": 52309163, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 52695648, "stop": 52702946, "displayStart": 52695648, "displayStop": 52702946, "strand": "+"}]}], "omims": ["601928"], "fullName": "keratin 86", "geneId": "3892", "hgncId": "HGNC:6463", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["12q13.13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 52285913, "stop": 52308624, "displayStart": 52285913, "displayStop": 52308624, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 52679696, "stop": 52685298, "displayStart": 52679696, "displayStop": 52685298, "strand": "-"}]}], "omims": ["602153"], "fullName": "keratin 81", "geneId": "3887", "hgncId": "HGNC:6458", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_002281.4(KRT81):c.1237G>A (p.Glu413Lys)", "canonicalSpdi": "NC_000012.12:52287111:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["12q13.13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 52287112, "stop": 52287112, "displayStart": 52287112, "displayStop": 52287112, "variantLength": 1, "positionVcf": 52287112, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 52680896, "stop": 52680896, "displayStart": 52680896, "displayStop": 52680896, "variantLength": 1, "positionVcf": 52680896, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["E413K"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q14533:p.Glu413Lys", "sequenceAccessionVersion": "Q14533", "sequenceAccession": "Q14533", "change": "p.Glu413Lys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000012.12:g.52287112C>T", "sequenceAccessionVersion": "NC_000012.12", "sequenceAccession": "NC_000012", "sequenceVersion": 12, "change": "g.52287112C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008086.2:g.17468C>T", "sequenceAccessionVersion": "NG_008086.2", "sequenceAccession": "NG_008086", "sequenceVersion": 2, "change": "g.17468C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NG_008184.1:g.9404G>A", "sequenceAccessionVersion": "NG_008184.1", "sequenceAccession": "NG_008184", "sequenceVersion": 1, "change": "g.9404G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_002281.4:c.1237G>A", "sequenceAccessionVersion": "NM_002281.4", "sequenceAccession": "NM_002281", "sequenceVersion": 4, "change": "c.1237G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_002272.2:p.Glu413Lys", "sequenceAccessionVersion": "NP_002272.2", "sequenceAccession": "NP_002272", "sequenceVersion": 2, "change": "p.Glu413Lys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001320198.2:c.-5+11166C>T", "sequenceAccessionVersion": "NM_001320198.2", "sequenceAccession": "NM_001320198", "sequenceVersion": 2, "change": "c.-5+11166C>T", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000012.11:g.52680896C>T", "sequenceAccessionVersion": "NC_000012.11", "sequenceAccession": "NC_000012", "sequenceVersion": 11, "change": "g.52680896C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA118850"}, {"db": "UniProtKB", "id": "Q14533#VAR_018117"}, {"db": "OMIM", "id": "602153.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "57419521", "type": "rs"}], "alleleId": "22540", "variationId": "7501"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Beaded hair", "db": "MedGen", "id": "C0546966"}], "traitSetId": "1885"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1997-12-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002281.4(KRT81):c.1237G>A (p.Glu413Lys) AND Beaded hair", "accession": "RCV000007930", "version": 4}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "CN517202"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED", "description": {"value": "not provided", "submissionCount": 1}}}, "title": "NM_002281.4(KRT81):c.1237G>A (p.Glu413Lys) AND not provided", "accession": "RCV000056952", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "7556444", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9402962", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Monilethrix", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0008009"}]}, {"value": "Beaded hair", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Beaded+hair/7805"}, {"db": "SNOMED CT", "id": "69488000"}]}, {"value": "Nodose hair", "type": "Alternate"}], "symbols": [{"value": "MNLIX", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "158000", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "Neoplasm"}, "type": "keyword"}}, {"attribute": {"base": {"integerValue": "93"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "93"}]}], "xrefs": [{"db": "Orphanet", "id": "573"}, {"db": "MedGen", "id": "C0546966"}, {"db": "MONDO", "id": "MONDO:0008009"}, {"db": "OMIM", "id": "158000", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0032470", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "1885", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "none provided", "type": "Alternate"}, {"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Developmental Genetics Unit, King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "CN517202"}]}], "type": "TYPE_DISEASE", "id": "9460"}], "dateLastEvaluated": "1997-12-01T00:00:00Z", "dateCreated": "2013-10-19T00:00:00Z", "mostRecentSubmission": "2017-11-05T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "602153.0001_MONILETHRIX", "title": "KRT81, GLU413LYS_MONILETHRIX"}, "clinvarAccession": {"accession": "SCV000028135", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-11-05T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1997-12-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In both affected members of a 3-generation Canadian family with monilethrix (158000), Winter et al. (1997) identified a G-to-A transition in the HB1 gene product, resulting in a change of glutamic acid to lysine at codon 413. The mutation was also detected in one apparently unaffected individual."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9402962", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "158000", "type": "MIM"}]}, {"attributes": [{"base": {"value": "This mutation was originally designated GLU403LYS because of a mistake in the numbering of the amino acids of hair keratin HB1 between residues 305 and 325 (Rogers et al., 1995)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "7556444", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "KRT81"}], "names": [{"value": "KRT81, GLU413LYS"}], "variantType": "Variation", "otherNames": [{"value": "GLU413LYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "602153.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MONILETHRIX", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "28135"}, {"clinvarSubmissionId": {"localKey": "KRT81:c.1237G>A"}, "clinvarAccession": {"accession": "SCV000088065", "version": 1, "submitterIdentifiers": {"submitterName": "Epithelial Biology; Institute of Medical Biology, Singapore", "orgId": "500159", "orgCategory": "laboratory"}, "dateUpdated": "2013-10-19T00:00:00Z", "dateCreated": "2013-10-19T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED", "germlineClassification": "not provided"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "numerTested": 1}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_002281.3:c.1237G>A"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["HIFD-CURATED-RECORDS_2012_5_17"], "id": "147623"}], "traitMappings": [{"medgens": [{"name": "not provided", "cui": "CN517202"}], "clinicalAssertionId": "147623", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "Beaded hair", "cui": "C0546966"}], "clinicalAssertionId": "28135", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MONILETHRIX", "mappingRef": "Preferred"}]}}
+{"variationId": "7501", "variationName": "NM_002281.4(KRT81):c.1237G>A (p.Glu413Lys)", "variationType": "single nucleotide variant", "dateCreated": "2013-10-19T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-11-05T00:00:00Z", "accession": "VCV000007501", "version": 1, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["12q13.13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 52274645, "stop": 52309163, "displayStart": 52274645, "displayStop": 52309163, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 52695648, "stop": 52702946, "displayStart": 52695648, "displayStop": 52702946, "strand": "+"}]}], "omims": ["601928"], "fullName": "keratin 86", "geneId": "3892", "hgncId": "HGNC:6463", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}, {"locations": [{"cytogeneticLocations": ["12q13.13"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 52285913, "stop": 52308624, "displayStart": 52285913, "displayStop": 52308624, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 52679696, "stop": 52685298, "displayStart": 52679696, "displayStop": 52685298, "strand": "-"}]}], "omims": ["602153"], "fullName": "keratin 81", "geneId": "3887", "hgncId": "HGNC:6458", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_MULTIPLE_GENES_BY_OVERLAP"}], "name": "NM_002281.4(KRT81):c.1237G>A (p.Glu413Lys)", "canonicalSpdi": "NC_000012.12:52287111:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["12q13.13"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_12", "accession": "NC_000012.12", "start": 52287112, "stop": 52287112, "displayStart": 52287112, "displayStop": 52287112, "variantLength": 1, "positionVcf": 52287112, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_12", "accession": "NC_000012.11", "start": 52680896, "stop": 52680896, "displayStart": 52680896, "displayStop": 52680896, "variantLength": 1, "positionVcf": 52680896, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["E413K"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q14533:p.Glu413Lys", "sequenceAccessionVersion": "Q14533", "sequenceAccession": "Q14533", "change": "p.Glu413Lys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000012.12:g.52287112C>T", "sequenceAccessionVersion": "NC_000012.12", "sequenceAccession": "NC_000012", "sequenceVersion": 12, "change": "g.52287112C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_008086.2:g.17468C>T", "sequenceAccessionVersion": "NG_008086.2", "sequenceAccession": "NG_008086", "sequenceVersion": 2, "change": "g.17468C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NG_008184.1:g.9404G>A", "sequenceAccessionVersion": "NG_008184.1", "sequenceAccession": "NG_008184", "sequenceVersion": 1, "change": "g.9404G>A"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_002281.4:c.1237G>A", "sequenceAccessionVersion": "NM_002281.4", "sequenceAccession": "NM_002281", "sequenceVersion": 4, "change": "c.1237G>A", "maneSelect": true}, "proteinExpression": {"expression": "NP_002272.2:p.Glu413Lys", "sequenceAccessionVersion": "NP_002272.2", "sequenceAccession": "NP_002272", "sequenceVersion": 2, "change": "p.Glu413Lys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001320198.2:c.-5+11166C>T", "sequenceAccessionVersion": "NM_001320198.2", "sequenceAccession": "NM_001320198", "sequenceVersion": 2, "change": "c.-5+11166C>T", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000012.11:g.52680896C>T", "sequenceAccessionVersion": "NC_000012.11", "sequenceAccession": "NC_000012", "sequenceVersion": 11, "change": "g.52680896C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA118850"}, {"db": "UniProtKB", "id": "Q14533#VAR_018117"}, {"db": "OMIM", "id": "602153.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "57419521", "type": "rs"}], "alleleId": "22540", "variationId": "7501"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Beaded hair", "db": "MedGen", "id": "C0546966"}], "traitSetId": "1885"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "1997-12-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002281.4(KRT81):c.1237G>A (p.Glu413Lys) AND Beaded hair", "accession": "RCV000007930", "version": 4}, {"classifiedConditionList": {"classifiedConditions": [{"value": "not provided", "db": "MedGen", "id": "CN517202"}], "traitSetId": "9460"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED", "description": {"value": "not provided", "submissionCount": 1}}}, "title": "NM_002281.4(KRT81):c.1237G>A (p.Glu413Lys) AND not provided", "accession": "RCV000056952", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "7556444", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9402962", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Monilethrix", "type": "Alternate", "xrefs": [{"db": "MONDO", "id": "MONDO:0008009"}]}, {"value": "Beaded hair", "type": "Preferred", "xrefs": [{"db": "Genetic Alliance", "id": "Beaded+hair/7805"}, {"db": "SNOMED CT", "id": "69488000"}]}, {"value": "Nodose hair", "type": "Alternate"}], "symbols": [{"value": "MNLIX", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "158000", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "Neoplasm"}, "type": "keyword"}}, {"attribute": {"base": {"integerValue": "93"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "93"}]}], "xrefs": [{"db": "Orphanet", "id": "573"}, {"db": "MedGen", "id": "C0546966"}, {"db": "MONDO", "id": "MONDO:0008009"}, {"db": "OMIM", "id": "158000", "type": "MIM"}, {"db": "Human Phenotype Ontology", "id": "HP:0032470", "type": "primary"}]}], "type": "TYPE_DISEASE", "id": "1885", "contributesToAggregateClassification": true}, {"traits": [{"names": [{"value": "none provided", "type": "Alternate"}, {"value": "not provided", "type": "Preferred", "xrefs": [{"db": "Developmental Genetics Unit, King Faisal Specialist Hospital & Research Centre", "id": "13DG0619"}]}], "attributes": [{"attribute": {"base": {"value": "The term 'not provided' is registered in MedGen to support identification of submissions to ClinVar for which no condition was named when assessing the variant. 'not provided' differs from 'not specified', which is used when a variant is asserted to be benign, likely benign, or of uncertain significance for conditions that have not been specified."}, "type": "public definition"}}], "xrefs": [{"db": "MedGen", "id": "CN517202"}]}], "type": "TYPE_DISEASE", "id": "9460"}], "dateLastEvaluated": "1997-12-01T00:00:00Z", "dateCreated": "2013-10-19T00:00:00Z", "mostRecentSubmission": "2017-11-05T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "602153.0001_MONILETHRIX", "title": "KRT81, GLU413LYS_MONILETHRIX"}, "clinvarAccession": {"accession": "SCV000028135", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-11-05T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "1997-12-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In both affected members of a 3-generation Canadian family with monilethrix (158000), Winter et al. (1997) identified a G-to-A transition in the HB1 gene product, resulting in a change of glutamic acid to lysine at codon 413. The mutation was also detected in one apparently unaffected individual."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9402962", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "158000", "type": "MIM"}]}, {"attributes": [{"base": {"value": "This mutation was originally designated GLU403LYS because of a mistake in the numbering of the amino acids of hair keratin HB1 between residues 305 and 325 (Rogers et al., 1995)."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "7556444", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "KRT81"}], "name": {"value": "KRT81, GLU413LYS"}, "variantType": "Variation", "otherNames": [{"value": "GLU413LYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "602153.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MONILETHRIX", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "28135"}, {"clinvarSubmissionId": {"localKey": "KRT81:c.1237G>A"}, "clinvarAccession": {"accession": "SCV000088065", "version": 1, "submitterIdentifiers": {"submitterName": "Epithelial Biology; Institute of Medical Biology, Singapore", "orgId": "500159", "orgCategory": "laboratory"}, "dateUpdated": "2013-10-19T00:00:00Z", "dateCreated": "2013-10-19T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_CLASSIFICATION_PROVIDED", "germlineClassification": "not provided"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_NOT_PROVIDED", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED", "numerTested": 1}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_002281.3:c.1237G>A"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"names": [{"value": "not provided", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["HIFD-CURATED-RECORDS_2012_5_17"], "id": "147623"}], "traitMappings": [{"medgens": [{"name": "not provided", "cui": "CN517202"}], "clinicalAssertionId": "147623", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "not provided", "mappingRef": "Preferred"}, {"medgens": [{"name": "Beaded hair", "cui": "C0546966"}], "clinicalAssertionId": "28135", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MONILETHRIX", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/first.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/first.xml/out.jsonl
index 6cc6eb9..6bf86aa 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/first.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/first.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "2", "variationName": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "variationType": "Indel", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "accession": "VCV000000002", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "canonicalSpdi": "NC_000007.14:4781212:GGAT:TGCTGTAAACTGTAACTGTAAA", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4781213, "stop": 4781216, "displayStart": 4781213, "displayStop": 4781216, "variantLength": 22, "positionVcf": 4781213, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4820844, "stop": 4820847, "displayStart": 4820844, "displayStop": 4820847, "variantLength": 22, "positionVcf": 4820844, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}]}], "otherNames": [{"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000007.13:g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001623", "type": "5 prime UTR variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "proteinExpression": {"expression": "LRG_1247p1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.173_176delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.173_176delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA215070"}, {"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704705", "type": "rs"}], "alleleId": "15041", "variationId": "2"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "submissionCount": 2}}}, "title": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer) AND Hereditary spastic paraplegia 48", "accession": "RCV000000012", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0001_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "title": "AP5Z1, 4-BP DEL/22-BP INS, NT80_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE"}, "clinvarAccession": {"accession": "SCV000020155", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 French sibs with autosomal recessive spastic paraplegia-48 (SPG48; 613647), Slabicki et al. (2010) identified a homozygous complex insertion/deletion mutation in exon 2 of the KIAA0415 gene. The mutation comprised a 4-bp deletion (80del4) and a 22-bp insertion (84ins22), resulting in a frameshift and premature stop codon following residue 29. The insertion was found to be an imperfect quadruplication of a sequence, suggesting DNA polymerase slippage during DNA synthesis as the pathogenetic mechanism. The patients presented with progressive spastic paraplegia associated with urinary incontinence from ages 50 and 49 years, respectively. One had a normal cerebral MRI, whereas the other had spinal hyperintensities in the cervical spine. The unaffected parents were not known to be consanguineous, but they originated from 2 neighboring villages. The mutation was not found in 156 Caucasian or 242 North African control chromosomes. Studies of lymphoblastoid cells derived from 1 patient showed increased sensitivity to DNA-damaging drugs. The findings suggested a link between this form of spastic paraplegia, which could be considered a neurodegenerative disease, and defects in DNA repair."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "names": [{"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}], "variantType": "Variation", "otherNames": [{"value": "4-BP DEL/22-BP INS, NT80", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20155"}, {"clinvarSubmissionId": {"localKey": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA|OMIM:613647", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001451119", "version": 1, "submitterIdentifiers": {"submitterName": "Paris Brain Institute, Inserm - ICM", "orgId": "507826", "orgCategory": "laboratory"}, "dateUpdated": "2021-05-16T00:00:00Z", "dateCreated": "2021-05-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "2"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB8526155"], "id": "2865972"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20155", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "2865972", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "613647", "mappingRef": "OMIM"}]}}
+{"variationId": "2", "variationName": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "variationType": "Indel", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "accession": "VCV000000002", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "canonicalSpdi": "NC_000007.14:4781212:GGAT:TGCTGTAAACTGTAACTGTAAA", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4781213, "stop": 4781216, "displayStart": 4781213, "displayStop": 4781216, "variantLength": 22, "positionVcf": 4781213, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4820844, "stop": 4820847, "displayStart": 4820844, "displayStop": 4820847, "variantLength": 22, "positionVcf": 4820844, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}]}], "otherNames": [{"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000007.13:g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001623", "type": "5 prime UTR variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "proteinExpression": {"expression": "LRG_1247p1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.173_176delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.173_176delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA215070"}, {"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704705", "type": "rs"}], "alleleId": "15041", "variationId": "2"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "submissionCount": 2}}}, "title": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer) AND Hereditary spastic paraplegia 48", "accession": "RCV000000012", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0001_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "title": "AP5Z1, 4-BP DEL/22-BP INS, NT80_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE"}, "clinvarAccession": {"accession": "SCV000020155", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 French sibs with autosomal recessive spastic paraplegia-48 (SPG48; 613647), Slabicki et al. (2010) identified a homozygous complex insertion/deletion mutation in exon 2 of the KIAA0415 gene. The mutation comprised a 4-bp deletion (80del4) and a 22-bp insertion (84ins22), resulting in a frameshift and premature stop codon following residue 29. The insertion was found to be an imperfect quadruplication of a sequence, suggesting DNA polymerase slippage during DNA synthesis as the pathogenetic mechanism. The patients presented with progressive spastic paraplegia associated with urinary incontinence from ages 50 and 49 years, respectively. One had a normal cerebral MRI, whereas the other had spinal hyperintensities in the cervical spine. The unaffected parents were not known to be consanguineous, but they originated from 2 neighboring villages. The mutation was not found in 156 Caucasian or 242 North African control chromosomes. Studies of lymphoblastoid cells derived from 1 patient showed increased sensitivity to DNA-damaging drugs. The findings suggested a link between this form of spastic paraplegia, which could be considered a neurodegenerative disease, and defects in DNA repair."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "name": {"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}, "variantType": "Variation", "otherNames": [{"value": "4-BP DEL/22-BP INS, NT80", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20155"}, {"clinvarSubmissionId": {"localKey": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA|OMIM:613647", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001451119", "version": 1, "submitterIdentifiers": {"submitterName": "Paris Brain Institute, Inserm - ICM", "orgId": "507826", "orgCategory": "laboratory"}, "dateUpdated": "2021-05-16T00:00:00Z", "dateCreated": "2021-05-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "2"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB8526155"], "id": "2865972"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20155", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "2865972", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "613647", "mappingRef": "OMIM"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/one_record.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/one_record.xml/out.jsonl
index c81393a..5a42f3a 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/one_record.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/one_record.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "names": [{"value": "ACKR1, ARG89CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
+{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "name": {"value": "ACKR1, ARG89CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/record_with_submitter.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/record_with_submitter.xml/out.jsonl
index 5bf0184..45db286 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/record_with_submitter.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/record_with_submitter.xml/out.jsonl
@@ -1 +1 @@
-{"variationId": "253751", "variationName": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3", "variationType": "copy number gain", "dateCreated": "2016-09-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-09-04T00:00:00Z", "accession": "VCV000253751", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86213993, "stop": 86338083, "displayStart": 86213993, "displayStop": 86338083, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86441115, "stop": 86565205, "displayStart": 86441115, "displayStop": 86565205, "strand": "-"}]}], "omims": ["609139"], "fullName": "receptor accessory protein 1", "geneId": "65055", "hgncId": "HGNC:25786", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86199433, "stop": 86213794, "displayStart": 86199433, "displayStop": 86213794, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86426555, "stop": 86440476, "displayStart": 86426555, "displayStop": 86440476, "strand": "+"}]}], "omims": ["611841"], "fullName": "mitochondrial ribosomal protein L35", "geneId": "51318", "hgncId": "HGNC:14489", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86020216, "stop": 86105886, "displayStart": 86020216, "displayStop": 86105886, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86253450, "stop": 86333277, "displayStart": 86253450, "displayStop": 86333277, "strand": "-"}]}], "omims": ["616404"], "fullName": "RNA polymerase I subunit A", "geneId": "25885", "hgncId": "HGNC:17264", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86143936, "stop": 86195462, "displayStart": 86143936, "displayStop": 86195462, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86371054, "stop": 86422892, "displayStart": 86371054, "displayStop": 86422892, "strand": "-"}]}], "omims": ["600378"], "fullName": "inner membrane mitochondrial protein", "geneId": "10989", "hgncId": "HGNC:6047", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86106235, "stop": 86142157, "displayStart": 86106235, "displayStop": 86142157, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86333304, "stop": 86369279, "displayStart": 86333304, "displayStop": 86369279, "strand": "+"}]}], "omims": ["614918"], "fullName": "pentatricopeptide repeat domain 3", "geneId": "55037", "hgncId": "HGNC:24717", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3", "variantTypes": ["copy number gain"], "locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "innerStart": 86269067, "innerStop": 86509326, "displayStart": 86269067, "displayStop": 86509326}]}], "alleleId": "248199", "variationId": "253751"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "See cases"}], "traitSetId": "16994"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2016-01-20T00:00:00Z", "submissionCount": 1}}}, "title": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3 AND See cases", "accession": "RCV000240383", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Uncertain significance", "conditions": [{"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION", "id": "16994", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2016-01-20T00:00:00Z", "dateCreated": "2016-09-04T00:00:00Z", "mostRecentSubmission": "2016-09-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "GDX_L_37834", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000298786", "version": 1, "submitterIdentifiers": {"submitterName": "GeneDx", "orgId": "26957", "orgCategory": "laboratory"}, "dateUpdated": "2016-09-04T00:00:00Z", "dateCreated": "2016-09-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Uncertain significance", "dateLastEvaluated": "2016-01-20T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "GeneDx Variant Classification (06012015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/ft/byid/dhtz9flo/genedx_interprules_final_061215.pdf", "type": "general"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"names": [{"value": "Specific learning disability", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001328"}]}, {"names": [{"value": "Intellectual disability", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001249"}]}, {"names": [{"value": "Delayed speech and language development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0000750"}]}, {"names": [{"value": "Dystonia", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001332"}]}, {"names": [{"value": "Muscular hypotonia", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001252"}]}, {"names": [{"value": "Delayed gross motor development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0002194"}]}, {"names": [{"value": "Constipation", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0002019"}]}, {"names": [{"value": "Seizures", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001250"}]}, {"names": [{"value": "Delayed fine motor development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0010862"}]}, {"names": [{"value": "Epileptic spasms", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0011097"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"variantType": "copy number gain", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "innerStart": 86269067, "innerStop": 86509326}]}, "attributes": [{"attribute": {"base": {"value": "3"}, "type": "AbsoluteCopyNumber"}}]}, "traitSet": {"traits": [{"names": [{"value": "See Cases", "type": "Preferred"}]}], "type": "TYPE_FINDING"}, "id": "578243"}], "traitMappings": [{"medgens": [{"name": "Intellectual disability", "cui": "C3714756"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Intellectual disability", "mappingRef": "Preferred"}, {"medgens": [{"name": "Specific learning disability", "cui": "C4025790"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Specific learning disability", "mappingRef": "Preferred"}, {"medgens": [{"name": "Seizure", "cui": "C0036572"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Seizures", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed gross motor development", "cui": "C1837658"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed gross motor development", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed speech and language development", "cui": "C0454644"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed speech and language development", "mappingRef": "Preferred"}, {"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "578243", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See Cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "Constipation", "cui": "C0009806"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Constipation", "mappingRef": "Preferred"}, {"medgens": [{"name": "Dystonic disorder", "cui": "C0013421"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Dystonia", "mappingRef": "Preferred"}, {"medgens": [{"name": "Epileptic spasm", "cui": "C1527366"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Epileptic spasms", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed fine motor development", "cui": "C4023681"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed fine motor development", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hypotonia", "cui": "C0026827"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Muscular hypotonia", "mappingRef": "Preferred"}]}}
+{"variationId": "253751", "variationName": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3", "variationType": "copy number gain", "dateCreated": "2016-09-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2016-09-04T00:00:00Z", "accession": "VCV000253751", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86213993, "stop": 86338083, "displayStart": 86213993, "displayStop": 86338083, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86441115, "stop": 86565205, "displayStart": 86441115, "displayStop": 86565205, "strand": "-"}]}], "omims": ["609139"], "fullName": "receptor accessory protein 1", "geneId": "65055", "hgncId": "HGNC:25786", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86199433, "stop": 86213794, "displayStart": 86199433, "displayStop": 86213794, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86426555, "stop": 86440476, "displayStart": 86426555, "displayStop": 86440476, "strand": "+"}]}], "omims": ["611841"], "fullName": "mitochondrial ribosomal protein L35", "geneId": "51318", "hgncId": "HGNC:14489", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86020216, "stop": 86105886, "displayStart": 86020216, "displayStop": 86105886, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86253450, "stop": 86333277, "displayStart": 86253450, "displayStop": 86333277, "strand": "-"}]}], "omims": ["616404"], "fullName": "RNA polymerase I subunit A", "geneId": "25885", "hgncId": "HGNC:17264", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86143936, "stop": 86195462, "displayStart": 86143936, "displayStop": 86195462, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86371054, "stop": 86422892, "displayStart": 86371054, "displayStop": 86422892, "strand": "-"}]}], "omims": ["600378"], "fullName": "inner membrane mitochondrial protein", "geneId": "10989", "hgncId": "HGNC:6047", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_2", "accession": "NC_000002.12", "start": 86106235, "stop": 86142157, "displayStart": 86106235, "displayStop": 86142157, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "start": 86333304, "stop": 86369279, "displayStart": 86333304, "displayStop": 86369279, "strand": "+"}]}], "omims": ["614918"], "fullName": "pentatricopeptide repeat domain 3", "geneId": "55037", "hgncId": "HGNC:24717", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3", "variantTypes": ["copy number gain"], "locations": [{"cytogeneticLocations": ["2p11.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh37", "chr": "CHROMOSOME_2", "accession": "NC_000002.11", "innerStart": 86269067, "innerStop": 86509326, "displayStart": 86269067, "displayStop": 86509326}]}], "alleleId": "248199", "variationId": "253751"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "See cases"}], "traitSetId": "16994"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Uncertain significance", "dateLastEvaluated": "2016-01-20T00:00:00Z", "submissionCount": 1}}}, "title": "GRCh37/hg19 2p11.2(chr2:86269067-86509326)x3 AND See cases", "accession": "RCV000240383", "version": 1}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Uncertain significance", "conditions": [{"traits": [{"names": [{"value": "See cases", "type": "Preferred"}]}], "type": "TYPE_PHENOTYPE_INSTRUCTION", "id": "16994", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2016-01-20T00:00:00Z", "dateCreated": "2016-09-04T00:00:00Z", "mostRecentSubmission": "2016-09-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "GDX_L_37834", "localKeyIsSubmitted": false, "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV000298786", "version": 1, "submitterIdentifiers": {"submitterName": "GeneDx", "orgId": "26957", "orgCategory": "laboratory"}, "dateUpdated": "2016-09-04T00:00:00Z", "dateCreated": "2016-09-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Uncertain significance", "dateLastEvaluated": "2016-01-20T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "GeneDx Variant Classification (06012015)"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"url": "https://submit.ncbi.nlm.nih.gov/ft/byid/dhtz9flo/genedx_interprules_final_061215.pdf", "type": "general"}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES", "gender": "GENDER_FEMALE"}, "observedData": [{"attributes": [{"base": {"value": "not provided"}, "type": "TYPE_DESCRIPTION"}]}], "traitSet": {"traits": [{"names": [{"value": "Specific learning disability", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001328"}]}, {"names": [{"value": "Intellectual disability", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001249"}]}, {"names": [{"value": "Delayed speech and language development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0000750"}]}, {"names": [{"value": "Dystonia", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001332"}]}, {"names": [{"value": "Muscular hypotonia", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001252"}]}, {"names": [{"value": "Delayed gross motor development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0002194"}]}, {"names": [{"value": "Constipation", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0002019"}]}, {"names": [{"value": "Seizures", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0001250"}]}, {"names": [{"value": "Delayed fine motor development", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0010862"}]}, {"names": [{"value": "Epileptic spasms", "type": "Preferred"}], "xrefs": [{"db": "HP", "id": "HP:0011097"}]}], "type": "TYPE_FINDING"}}], "simpleAllele": {"variantType": "copy number gain", "location": {"sequenceLocations": [{"assembly": "GRCh37", "chr": "CHROMOSOME_2", "innerStart": 86269067, "innerStop": 86509326}]}, "attributes": [{"attribute": {"base": {"value": "3"}, "type": "AbsoluteCopyNumber"}}]}, "traitSet": {"traits": [{"names": [{"value": "See Cases", "type": "Preferred"}]}], "type": "TYPE_FINDING"}, "id": "578243"}], "traitMappings": [{"medgens": [{"name": "Intellectual disability", "cui": "C3714756"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Intellectual disability", "mappingRef": "Preferred"}, {"medgens": [{"name": "Specific learning disability", "cui": "C4025790"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Specific learning disability", "mappingRef": "Preferred"}, {"medgens": [{"name": "Seizure", "cui": "C0036572"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Seizures", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed gross motor development", "cui": "C1837658"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed gross motor development", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed speech and language development", "cui": "C0454644"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed speech and language development", "mappingRef": "Preferred"}, {"medgens": [{"name": "See cases", "cui": "None"}], "clinicalAssertionId": "578243", "traitType": "PhenotypeInstruction", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "See Cases", "mappingRef": "Preferred"}, {"medgens": [{"name": "Constipation", "cui": "C0009806"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Constipation", "mappingRef": "Preferred"}, {"medgens": [{"name": "Dystonic disorder", "cui": "C0013421"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Dystonia", "mappingRef": "Preferred"}, {"medgens": [{"name": "Epileptic spasm", "cui": "C1527366"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Epileptic spasms", "mappingRef": "Preferred"}, {"medgens": [{"name": "Delayed fine motor development", "cui": "C4023681"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Delayed fine motor development", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hypotonia", "cui": "C0026827"}], "clinicalAssertionId": "578243", "traitType": "Finding", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "Muscular hypotonia", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ten_records.xml/out.jsonl b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ten_records.xml/out.jsonl
index 34ca9b0..eec7693 100644
--- a/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ten_records.xml/out.jsonl
+++ b/tests/clinvar_data/snapshots/test_cli_data/test_convert_snapshot_to_jsonl/ten_records.xml/out.jsonl
@@ -1,10 +1,10 @@
-{"variationId": "2", "variationName": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "variationType": "Indel", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "accession": "VCV000000002", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "canonicalSpdi": "NC_000007.14:4781212:GGAT:TGCTGTAAACTGTAACTGTAAA", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4781213, "stop": 4781216, "displayStart": 4781213, "displayStop": 4781216, "variantLength": 22, "positionVcf": 4781213, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4820844, "stop": 4820847, "displayStart": 4820844, "displayStop": 4820847, "variantLength": 22, "positionVcf": 4820844, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}]}], "otherNames": [{"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000007.13:g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001623", "type": "5 prime UTR variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "proteinExpression": {"expression": "LRG_1247p1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.173_176delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.173_176delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA215070"}, {"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704705", "type": "rs"}], "alleleId": "15041", "variationId": "2"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "submissionCount": 2}}}, "title": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer) AND Hereditary spastic paraplegia 48", "accession": "RCV000000012", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0001_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "title": "AP5Z1, 4-BP DEL/22-BP INS, NT80_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE"}, "clinvarAccession": {"accession": "SCV000020155", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 French sibs with autosomal recessive spastic paraplegia-48 (SPG48; 613647), Slabicki et al. (2010) identified a homozygous complex insertion/deletion mutation in exon 2 of the KIAA0415 gene. The mutation comprised a 4-bp deletion (80del4) and a 22-bp insertion (84ins22), resulting in a frameshift and premature stop codon following residue 29. The insertion was found to be an imperfect quadruplication of a sequence, suggesting DNA polymerase slippage during DNA synthesis as the pathogenetic mechanism. The patients presented with progressive spastic paraplegia associated with urinary incontinence from ages 50 and 49 years, respectively. One had a normal cerebral MRI, whereas the other had spinal hyperintensities in the cervical spine. The unaffected parents were not known to be consanguineous, but they originated from 2 neighboring villages. The mutation was not found in 156 Caucasian or 242 North African control chromosomes. Studies of lymphoblastoid cells derived from 1 patient showed increased sensitivity to DNA-damaging drugs. The findings suggested a link between this form of spastic paraplegia, which could be considered a neurodegenerative disease, and defects in DNA repair."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "names": [{"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}], "variantType": "Variation", "otherNames": [{"value": "4-BP DEL/22-BP INS, NT80", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20155"}, {"clinvarSubmissionId": {"localKey": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA|OMIM:613647", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001451119", "version": 1, "submitterIdentifiers": {"submitterName": "Paris Brain Institute, Inserm - ICM", "orgId": "507826", "orgCategory": "laboratory"}, "dateUpdated": "2021-05-16T00:00:00Z", "dateCreated": "2021-05-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "2"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB8526155"], "id": "2865972"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20155", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "2865972", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "613647", "mappingRef": "OMIM"}]}}
-{"variationId": "6", "variationName": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser)", "variationType": "single nucleotide variant", "dateCreated": "2019-02-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-02-04T00:00:00Z", "accession": "VCV000000006", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["11q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_11", "accession": "NC_000011.10", "start": 126269154, "stop": 126278126, "displayStart": 126269154, "displayStop": 126278126, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_11", "accession": "NC_000011.9", "start": 126138934, "stop": 126148026, "displayStart": 126138934, "displayStop": 126148026, "strand": "+"}]}], "omims": ["613622"], "fullName": "FAD dependent oxidoreductase domain containing 1", "geneId": "55572", "hgncId": "HGNC:26927", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser)", "canonicalSpdi": "NC_000011.10:126277516:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["11q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_11", "accession": "NC_000011.10", "start": 126277517, "stop": 126277517, "displayStart": 126277517, "displayStop": 126277517, "variantLength": 1, "positionVcf": 126277517, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_11", "accession": "NC_000011.9", "start": 126147412, "stop": 126147412, "displayStart": 126147412, "displayStop": 126147412, "variantLength": 1, "positionVcf": 126147412, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N430S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q96CU9:p.Asn430Ser", "sequenceAccessionVersion": "Q96CU9", "sequenceAccession": "Q96CU9", "change": "p.Asn430Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000011.10:g.126277517A>G", "sequenceAccessionVersion": "NC_000011.10", "sequenceAccession": "NC_000011", "sequenceVersion": 10, "change": "g.126277517A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000011.9:g.126147412A>G", "sequenceAccessionVersion": "NC_000011.9", "sequenceAccession": "NC_000011", "sequenceVersion": 9, "change": "g.126147412A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NR_037648.2:n.1466A>G", "sequenceAccessionVersion": "NR_037648.2", "sequenceAccession": "NR_037648", "sequenceVersion": 2, "change": "n.1466A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NG_028029.1:g.13478A>G", "sequenceAccessionVersion": "NG_028029.1", "sequenceAccession": "NG_028029", "sequenceVersion": 1, "change": "g.13478A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_017547.4:c.1289A>G", "sequenceAccessionVersion": "NM_017547.4", "sequenceAccession": "NM_017547", "sequenceVersion": 4, "change": "c.1289A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_060017.1:p.Asn430Ser", "sequenceAccessionVersion": "NP_060017.1", "sequenceAccession": "NP_060017", "sequenceVersion": 1, "change": "p.Asn430Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_037647.2:n.1121A>G", "sequenceAccessionVersion": "NR_037647.2", "sequenceAccession": "NR_037647", "sequenceVersion": 2, "change": "n.1121A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113794"}, {"db": "UniProtKB", "id": "Q96CU9#VAR_064571"}, {"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267606830", "type": "rs"}], "alleleId": "15045", "variationId": "6"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Mitochondrial complex 1 deficiency, nuclear type 19", "db": "MedGen", "id": "C4748791"}], "traitSetId": "45335"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-10-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser) AND Mitochondrial complex 1 deficiency, nuclear type 19", "accession": "RCV000000016", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20818383", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Mitochondrial complex 1 deficiency, nuclear type 19", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0032624"}]}, {"value": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}, {"db": "OMIM", "id": "613622.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613622.0003", "type": "Allelic variant"}]}], "symbols": [{"value": "MC1DN19", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C4748791"}, {"db": "MONDO", "id": "MONDO:0032624"}, {"db": "OMIM", "id": "618241", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "45335", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-10-01T00:00:00Z", "dateCreated": "2019-02-04T00:00:00Z", "mostRecentSubmission": "2019-02-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613622.0002_MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "title": "FOXRED1, ASN430SER_MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19"}, "clinvarAccession": {"accession": "SCV000020159", "version": 5, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-02-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-10-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the asn430-to-ser (N430S) mutation in the FOXRED1 gene that was found in compound heterozygous state in a patient with mitochondrial complex I deficiency nuclear type 19 (MC1DN19; 618241) manifesting as Leigh syndrome (see 252010), by Calvo et al. (2010), see 613622.0001."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20818383", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}, {"db": "OMIM", "id": "252010", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "FOXRED1"}], "names": [{"value": "FOXRED1, ASN430SER"}], "variantType": "Variation", "otherNames": [{"value": "ASN430SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20159"}], "traitMappings": [{"medgens": [{"name": "Mitochondrial complex 1 deficiency, nuclear type 19", "cui": "C4748791"}], "clinicalAssertionId": "20159", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "mappingRef": "Preferred"}]}}
-{"variationId": "3", "variationName": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs)", "variationType": "Deletion", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-01-30T00:00:00Z", "accession": "VCV000000003", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs)", "canonicalSpdi": "NC_000007.14:4787729:CTGCTGGACCTGCCCTGCT:CTGCT", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4787730, "stop": 4787743, "displayStart": 4787730, "displayStop": 4787743, "variantLength": 14, "positionVcf": 4787729, "referenceAlleleVcf": "GCTGCTGGACCTGCC", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4827361, "stop": 4827374, "displayStart": 4827361, "displayStop": 4827374, "variantLength": 14, "positionVcf": 4827360, "referenceAlleleVcf": "GCTGCTGGACCTGCC", "alternateAlleleVcf": "G"}]}], "otherNames": [{"value": "AP5Z1, 14-BP DEL, NT1413"}], "proteinChanges": ["L317fs", "L473fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_1247:g.17105_17118del", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.17105_17118del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.1413_1426del", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.1413_1426del"}, "proteinExpression": {"expression": "LRG_1247p1:p.Leu473fs", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Leu473fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.945_958del", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.945_958del"}, "proteinExpression": {"expression": "NP_001351787.1:p.Leu317fs", "sequenceAccessionVersion": "NP_001351787.1", "sequenceAccession": "NP_001351787", "sequenceVersion": 1, "change": "p.Leu317fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.1413_1426del", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.1413_1426del", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Leu473fs", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Leu473fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.1544_1557del", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.1544_1557del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.13:g.4827366_4827379del", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4827366_4827379del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4787735_4787748del", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4787735_4787748del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.17105_17118del", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.17105_17118del"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "dbSNP", "id": "397704709", "type": "rs"}, {"db": "ClinGen", "id": "CA215072"}, {"db": "OMIM", "id": "613653.0002", "type": "Allelic variant"}], "alleleId": "15042", "variationId": "3"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z", "submissionCount": 1}}}, "title": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs) AND Hereditary spastic paraplegia 48", "accession": "RCV000000013", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-06-29T00:00:00Z", "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2017-01-30T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0002_SPASTIC PARAPLEGIA 48", "title": "AP5Z1, 14-BP DEL, NT1413_SPASTIC PARAPLEGIA 48"}, "clinvarAccession": {"accession": "SCV000020156", "version": 5, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a patient with sporadic SPG48 (613647), Slabicki et al. (2010) identified a heterozygous 14-bp deletion (1413del14) in the KIAA0415 gene, resulting in a frameshift and premature termination following residue 56. No family members were available for study, and no copy number variations were found on chromosome 7, but a second small change affecting the KIAA0415 gene could not be completely excluded. The mutation was not found in 158 Caucasian or 84 North African control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "names": [{"value": "AP5Z1, 14-BP DEL, NT1413"}], "variantType": "Variation", "otherNames": [{"value": "14-BP DEL, NT1413", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20156"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20156", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48", "mappingRef": "Preferred"}]}}
-{"variationId": "26", "variationName": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter)", "variationType": "Duplication", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "accession": "VCV000000026", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25294743, "stop": 25390835, "displayStart": 25294743, "displayStop": 25390835, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25275378, "stop": 25371617, "displayStart": 25275378, "displayStop": 25371617, "strand": "-"}]}], "omims": ["613599"], "fullName": "abhydrolase domain containing 12, lysophospholipase", "geneId": "26090", "hgncId": "HGNC:15868", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter)", "canonicalSpdi": "NC_000020.11:25307980:GCTCTTAGCT:GCTCTTAGCTCTTAGCT", "variantTypes": ["Duplication"], "locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25307980, "stop": 25307981, "displayStart": 25307980, "displayStop": 25307981, "variantLength": 7, "positionVcf": 25307980, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GGCTCTTA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25288616, "stop": 25288617, "displayStart": 25288616, "displayStop": 25288617, "variantLength": 7, "positionVcf": 25288616, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GGCTCTTA"}]}], "proteinChanges": ["H285*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.25288620_25288626dup", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.25288620_25288626dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25307984_25307990dup", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25307984_25307990dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028119.1:g.87996_88002dup", "sequenceAccessionVersion": "NG_028119.1", "sequenceAccession": "NG_028119", "sequenceVersion": 1, "change": "g.87996_88002dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001042472.3:c.846_852dup", "sequenceAccessionVersion": "NM_001042472.3", "sequenceAccession": "NM_001042472", "sequenceVersion": 3, "change": "c.846_852dup", "maneSelect": true}, "proteinExpression": {"expression": "NP_001035937.1:p.His285Ter", "sequenceAccessionVersion": "NP_001035937.1", "sequenceAccession": "NP_001035937", "sequenceVersion": 1, "change": "p.His285Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_015600.5:c.846_852dup", "sequenceAccessionVersion": "NM_015600.5", "sequenceAccession": "NM_015600", "sequenceVersion": 5, "change": "c.846_852dup"}, "proteinExpression": {"expression": "NP_056415.1:p.His285Ter", "sequenceAccessionVersion": "NP_056415.1", "sequenceAccession": "NP_056415", "sequenceVersion": 1, "change": "p.His285Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113810"}, {"db": "OMIM", "id": "613599.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704714", "type": "rs"}], "alleleId": "15065", "variationId": "26"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "PHARC syndrome", "db": "MedGen", "id": "C2675204"}], "traitSetId": "17"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter) AND PHARC syndrome", "accession": "RCV000000043", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "PHARC syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0012984"}]}, {"value": "Polyneuropathy-hearing loss-ataxia-retinitis pigmentosa-cataract syndrome", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "171848"}]}, {"value": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Polyneuropathy%2C+hearing+loss%2C+ataxia%2C+retinitis+pigmentosa%2C+and+cataract/9132"}]}], "symbols": [{"value": "PHARC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "171848"}, {"db": "MedGen", "id": "C2675204"}, {"db": "MONDO", "id": "MONDO:0012984"}, {"db": "OMIM", "id": "612674", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "17", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613599.0003_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "title": "ABHD12, 7-BP DUP, NT846_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT"}, "clinvarAccession": {"accession": "SCV000020186", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-18T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 7 patients from 4 Algerian families with polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract (PHARC; 612674), Fiskerstrand et al. (2010) identified a homozygous 7-bp duplication in exon 9 of the ABHD12 gene (846_852dupTAAGAGC), resulting in a premature stop codon at residue 285. The patients ranged in age from 10 to 44 years. The older individuals were more severely affected. All patients had some evidence of a polyneuropathy, with hyporeflexia, pes cavus, and/or sensory loss, and most had gait ataxia with onset in the childhood. Four of the older patients had hearing loss, but only 1 had retinitis pigmentosa and cataract. Other common features included extensor plantar responses and cerebellar atrophy."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ABHD12"}], "names": [{"value": "ABHD12, 7-BP DUP, NT846"}], "variantType": "Variation", "otherNames": [{"value": "7-BP DUP, NT846", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613599.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20186"}], "traitMappings": [{"medgens": [{"name": "PHARC syndrome", "cui": "C2675204"}], "clinicalAssertionId": "20186", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "mappingRef": "Preferred"}]}}
-{"variationId": "32", "variationName": "NM_138413.4(HOGA1):c.700+4G>T", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000032", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["10q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_10", "accession": "NC_000010.11", "start": 97584389, "stop": 97612802, "displayStart": 97584389, "displayStop": 97612802, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_10", "accession": "NC_000010.10", "start": 99344101, "stop": 99372558, "displayStart": 99344101, "displayStop": 99372558, "strand": "+"}]}], "omims": ["613597"], "fullName": "4-hydroxy-2-oxoglutarate aldolase 1", "geneId": "112817", "hgncId": "HGNC:25155", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_138413.4(HOGA1):c.700+4G>T", "canonicalSpdi": "NC_000010.11:97600166:G:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["10q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_10", "accession": "NC_000010.11", "start": 97600167, "stop": 97600167, "displayStart": 97600167, "displayStop": 97600167, "variantLength": 1, "positionVcf": 97600167, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_10", "accession": "NC_000010.10", "start": 99359924, "stop": 99359924, "displayStart": 99359924, "displayStop": 99359924, "variantLength": 1, "positionVcf": 99359924, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "IVS, G-T, +4"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000010.10:g.99359924G>T", "sequenceAccessionVersion": "NC_000010.10", "sequenceAccession": "NC_000010", "sequenceVersion": 10, "change": "g.99359924G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000010.11:g.97600167G>T", "sequenceAccessionVersion": "NC_000010.11", "sequenceAccession": "NC_000010", "sequenceVersion": 11, "change": "g.97600167G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_027922.1:g.20823G>T", "sequenceAccessionVersion": "NG_027922.1", "sequenceAccession": "NG_027922", "sequenceVersion": 1, "change": "g.20823G>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_138413.4:c.700+4G>T", "sequenceAccessionVersion": "NM_138413.4", "sequenceAccession": "NM_138413", "sequenceVersion": 4, "change": "c.700+4G>T", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001134670.2:c.212-1690G>T", "sequenceAccessionVersion": "NM_001134670.2", "sequenceAccession": "NM_001134670", "sequenceVersion": 2, "change": "c.212-1690G>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "LOVD 3", "id": "HOGA1_000005"}, {"db": "OMIM", "id": "613597.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "2041105506", "type": "rs"}], "alleleId": "15071", "variationId": "32"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Primary hyperoxaluria type 3", "db": "MedGen", "id": "C3150878"}], "traitSetId": "19"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_138413.4(HOGA1):c.700+4G>T AND Primary hyperoxaluria type 3", "accession": "RCV000000049", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797690", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Primary hyperoxaluria type 3", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013327"}]}, {"value": "PH III", "type": "Alternate"}, {"value": "Primary hyperoxaluria, type III", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+Hyperoxaluria+Type+3/8596"}]}], "symbols": [{"value": "HP3", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613616", "type": "MIM"}]}, {"value": "HOGA1", "type": "Alternate"}, {"value": "PH3", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000561373"}]}, {"attribute": {"base": {"integerValue": "10738"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10738"}]}], "citations": [{"ids": [{"value": "26401545", "source": "PubMed"}, {"value": "NBK316514", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "416"}, {"db": "Orphanet", "id": "93600"}, {"db": "MedGen", "id": "C3150878"}, {"db": "MONDO", "id": "MONDO:0013327"}, {"db": "OMIM", "id": "613616", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "19", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613597.0004_HYPEROXALURIA, PRIMARY, TYPE III", "title": "HOGA1, IVS, G-T, +4_HYPEROXALURIA, PRIMARY, TYPE III"}, "clinvarAccession": {"accession": "SCV000020192", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 24-year-old woman from a European American family with calcium oxalate nephrolithiasis (HP3; 613616), Belostotsky et al. (2010) identified compound heterozygosity for an intronic G-to-T transversion (701+4G-T) in the DHDPSL gene, predicted to result in insertion of 17 amino acid residues, and glu315del (613597.0001). The unaffected parents were each heterozygous for 1 of the mutations, neither of which was found in 226 chromosomes from European American individuals."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797690", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613616", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "HOGA1"}], "names": [{"value": "HOGA1, IVS, G-T, +4"}], "variantType": "Variation", "otherNames": [{"value": "IVS, G-T, +4", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613597.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HYPEROXALURIA, PRIMARY, TYPE III", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20192"}], "traitMappings": [{"medgens": [{"name": "Primary hyperoxaluria type 3", "cui": "C3150878"}], "clinicalAssertionId": "20192", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HYPEROXALURIA, PRIMARY, TYPE III", "mappingRef": "Preferred"}]}}
-{"variationId": "42", "variationName": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser)", "variationType": "single nucleotide variant", "dateCreated": "2019-03-10T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-03-10T00:00:00Z", "accession": "VCV000000042", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36054897, "stop": 36111145, "displayStart": 36054897, "displayStop": 36111145, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36545782, "stop": 36596011, "displayStart": 36545782, "displayStop": 36596011, "strand": "+"}]}], "omims": ["613583"], "fullName": "WD repeat domain 62", "geneId": "284403", "hgncId": "HGNC:24502", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser)", "canonicalSpdi": "NC_000019.10:36067414:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36067415, "stop": 36067415, "displayStart": 36067415, "displayStop": 36067415, "variantLength": 1, "positionVcf": 36067415, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36558317, "stop": 36558317, "displayStart": 36558317, "displayStop": 36558317, "variantLength": 1, "positionVcf": 36558317, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["W224S"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000019.10:g.36067415G>C", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.36067415G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.36558317G>C", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.36558317G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_028101.1:g.17535G>C", "sequenceAccessionVersion": "NG_028101.1", "sequenceAccession": "NG_028101", "sequenceVersion": 1, "change": "g.17535G>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001083961.2:c.671G>C", "sequenceAccessionVersion": "NM_001083961.2", "sequenceAccession": "NM_001083961", "sequenceVersion": 2, "change": "c.671G>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_001077430.1:p.Trp224Ser", "sequenceAccessionVersion": "NP_001077430.1", "sequenceAccession": "NP_001077430", "sequenceVersion": 1, "change": "p.Trp224Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_173636.5:c.671G>C", "sequenceAccessionVersion": "NM_173636.5", "sequenceAccession": "NM_173636", "sequenceVersion": 5, "change": "c.671G>C"}, "proteinExpression": {"expression": "NP_775907.4:p.Trp224Ser", "sequenceAccessionVersion": "NP_775907.4", "sequenceAccession": "NP_775907", "sequenceVersion": 4, "change": "p.Trp224Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "O43379:p.Trp224Ser", "sequenceAccessionVersion": "O43379", "sequenceAccession": "O43379", "change": "p.Trp224Ser"}, "type": "HGVS_TYPE_PROTEIN"}], "xrefs": [{"db": "ClinGen", "id": "CA251361"}, {"db": "UniProtKB", "id": "O43379#VAR_063702"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267607176", "type": "rs"}], "alleleId": "15081", "variationId": "42"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "db": "MedGen", "id": "C1858535"}], "traitSetId": "7167"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser) AND Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "accession": "RCV000000059", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613583.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0009", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0010", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0013", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0012", "type": "Allelic variant"}]}, {"value": "Primary autosomal recessive microcephaly 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+autosomal+recessive+microcephaly+2/9156"}]}, {"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0011435"}]}], "symbols": [{"value": "MCPH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "In WDR62 primary microcephaly (WDR62-MCPH), microcephaly (occipitofrontal circumference [OFC] = -2 SD) is usually present at birth, but in some instances becomes evident later in the first year of life. Growth is otherwise normal. Except for brain malformations in most affected individuals, no other congenital malformations are observed. Central nervous system involvement can include delayed motor development, mild-to-severe intellectual disability (ID), behavior problems, epilepsy, spasticity, and ataxia."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK578067"}]}], "citations": [{"ids": [{"value": "35188728", "source": "PubMed"}, {"value": "NBK578067", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "2512"}, {"db": "MedGen", "id": "C1858535"}, {"db": "MONDO", "id": "MONDO:0011435"}, {"db": "OMIM", "id": "604317", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7167", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-09T00:00:00Z", "dateCreated": "2019-03-10T00:00:00Z", "mostRecentSubmission": "2019-03-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613583.0003_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "title": "WDR62, TRP224SER_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS"}, "clinvarAccession": {"accession": "SCV000020202", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-03-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 sibs and their cousin with microcephaly-2 and cortical malformations (MCPH2; 604317), Bilguvar et al. (2010) identified homozygosity for a missense mutation in the WDR62 gene, a G-to-C transversion in exon 6 that converted tryptophan to serine at codon 224 (W224S). All parents were heterozygous for the mutation, which was not identified in 1,290 Turkish and 1,500 Caucasian control chromosomes. Tryptophan-224 was invariant in all species examined from human to zebrafish and lamprey. The proband was a 6-year, 5-month-old boy who presented at 2 years of age with hyperactivity, seizures, and inability to sleep. He experienced 4 to 8 seizures per day and had microcephaly, micrognathia, and severe mental retardation, and could ambulate only with assistance. The sibs were cousins of the proband. One was an 8-year, 7-month-old female who presented at age 3 with seizures. She was microcephalic, hyperactive, and had dysconjugate gaze. She was able to walk independently and had no obvious dysmorphic features but had moderate mental retardation. Her brother was 12 years, 11 months old. He had seizures, self-mutilating behavior, and severe mental retardation, but could ambulate independently."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "WDR62"}], "names": [{"value": "WDR62, TRP224SER"}], "variantType": "Variation", "otherNames": [{"value": "TRP224SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20202"}], "traitMappings": [{"medgens": [{"name": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "cui": "C1858535"}], "clinicalAssertionId": "20202", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "mappingRef": "Preferred"}]}}
-{"variationId": "40", "variationName": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs)", "variationType": "Deletion", "dateCreated": "2015-09-17T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-09-17T00:00:00Z", "accession": "VCV000000040", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36054897, "stop": 36111145, "displayStart": 36054897, "displayStop": 36111145, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36545782, "stop": 36596011, "displayStart": 36545782, "displayStop": 36596011, "strand": "+"}]}], "omims": ["613583"], "fullName": "WD repeat domain 62", "geneId": "284403", "hgncId": "HGNC:24502", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs)", "canonicalSpdi": "NC_000019.10:36104568:TGCC:", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36104569, "stop": 36104572, "displayStart": 36104569, "displayStop": 36104572, "variantLength": 4, "positionVcf": 36104568, "referenceAlleleVcf": "GTGCC", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36595471, "stop": 36595474, "displayStart": 36595471, "displayStop": 36595474, "variantLength": 4, "positionVcf": 36595470, "referenceAlleleVcf": "GTGCC", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["V1397fs", "V1402fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NG_028101.1:g.54689_54692del", "sequenceAccessionVersion": "NG_028101.1", "sequenceAccession": "NG_028101", "sequenceVersion": 1, "change": "g.54689_54692del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001083961.2:c.4205_4208del", "sequenceAccessionVersion": "NM_001083961.2", "sequenceAccession": "NM_001083961", "sequenceVersion": 2, "change": "c.4205_4208del", "maneSelect": true}, "proteinExpression": {"expression": "NP_001077430.1:p.Val1402fs", "sequenceAccessionVersion": "NP_001077430.1", "sequenceAccession": "NP_001077430", "sequenceVersion": 1, "change": "p.Val1402fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_173636.5:c.4190_4193del", "sequenceAccessionVersion": "NM_173636.5", "sequenceAccession": "NM_173636", "sequenceVersion": 5, "change": "c.4190_4193del"}, "proteinExpression": {"expression": "NP_775907.4:p.Val1397fs", "sequenceAccessionVersion": "NP_775907.4", "sequenceAccession": "NP_775907", "sequenceVersion": 4, "change": "p.Val1397fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000019.10:g.36104569_36104572del", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.36104569_36104572del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.36595471_36595474del", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.36595471_36595474del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA251360"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704721", "type": "rs"}], "alleleId": "15079", "variationId": "40"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "db": "MedGen", "id": "C1858535"}], "traitSetId": "7167"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs) AND Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "accession": "RCV000000057", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613583.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0009", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0010", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0013", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0012", "type": "Allelic variant"}]}, {"value": "Primary autosomal recessive microcephaly 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+autosomal+recessive+microcephaly+2/9156"}]}, {"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0011435"}]}], "symbols": [{"value": "MCPH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "In WDR62 primary microcephaly (WDR62-MCPH), microcephaly (occipitofrontal circumference [OFC] = -2 SD) is usually present at birth, but in some instances becomes evident later in the first year of life. Growth is otherwise normal. Except for brain malformations in most affected individuals, no other congenital malformations are observed. Central nervous system involvement can include delayed motor development, mild-to-severe intellectual disability (ID), behavior problems, epilepsy, spasticity, and ataxia."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK578067"}]}], "citations": [{"ids": [{"value": "35188728", "source": "PubMed"}, {"value": "NBK578067", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "2512"}, {"db": "MedGen", "id": "C1858535"}, {"db": "MONDO", "id": "MONDO:0011435"}, {"db": "OMIM", "id": "604317", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7167", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-09T00:00:00Z", "dateCreated": "2015-09-17T00:00:00Z", "mostRecentSubmission": "2015-09-17T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613583.0001_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "title": "WDR62, 4-BP DEL, TGCC_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS"}, "clinvarAccession": {"accession": "SCV000020200", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-09-17T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 sibs with autosomal recessive microcephaly-2 and cortical malformations (MCPH2; 604317) and in an affected child from another family, all from consanguineous Turkish unions, Bilguvar et al. (2010) identified homozygosity for a 4-basepair deletion (TGCC) in exon 31 of the WDR62 gene. This deletion occurred at codon 1402 and resulted in a frameshift and premature termination (Val1402GlyfsTer12). The mutation was heterozygous in all parents. It was not observed in 1,290 Turkish control chromosomes. The index patient was a 4-year, 6-month-old female who initially presented at 4 months of age with small head size. At 2 years, 3 months she showed micrognathia and a bulbous nose, and suffered from severe mental retardation. She had had no seizures. MRI showed diffuse cortical thickening and pachygyria. The patient from the second family was a 2-year, 4 month-old male. He had microcephaly and developmental delay but no seizures. Coronal images of this patient showed findings of microlissencephaly including prominent microcephaly, bilateral Sylvian clefts, hypoplastic corpus callosum, and thickened cortex. The kinship coefficients between affected individuals from both families were consistent with fourth-degree relatedness."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "WDR62"}], "names": [{"value": "WDR62, 4-BP DEL, TGCC"}], "variantType": "Variation", "otherNames": [{"value": "4-BP DEL, TGCC", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20200"}], "traitMappings": [{"medgens": [{"name": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "cui": "C1858535"}], "clinicalAssertionId": "20200", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "mappingRef": "Preferred"}]}}
-{"variationId": "18397", "variationName": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)", "variationType": "Deletion", "dateCreated": "2015-08-12T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-08-12T00:00:00Z", "accession": "VCV000018397", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)", "canonicalSpdi": "NC_000001.11:159205718:CCTGGCTGGCCTGTCCTGGC:CCTGGC", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205719, "stop": 159205732, "displayStart": 159205719, "displayStop": 159205732, "variantLength": 14, "positionVcf": 159205718, "referenceAlleleVcf": "CCCTGGCTGGCCTGT", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175509, "stop": 159175522, "displayStart": 159175509, "displayStop": 159175522, "variantLength": 14, "positionVcf": 159175508, "referenceAlleleVcf": "CCCTGGCTGGCCTGT", "alternateAlleleVcf": "C"}]}], "otherNames": [{"value": "ACKR1, 14-BP DEL, NT286"}], "proteinChanges": ["W96fs", "W98fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_801:g.6713_6726del", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.286_299del", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Trp96fs", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Trp96fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.159175515_159175528del", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175515_159175528del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205725_159205738del", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205725_159205738del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6713_6726del", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6713_6726del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.292_305del", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.292_305del"}, "proteinExpression": {"expression": "NP_001116423.1:p.Trp98fs", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Trp98fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.286_299del", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.286_299del", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Trp96fs", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Trp96fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "587776507", "type": "rs"}, {"db": "ClinGen", "id": "CA113791"}], "alleleId": "33436", "variationId": "18397"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE"}], "traitSetId": "6212"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-04-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs) AND DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "accession": "RCV000000010", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10791881", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "7669660", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8248172", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY NULL; Fy(a-b-)", "type": "Alternate"}, {"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613665.0002", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6212", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-04-01T00:00:00Z", "dateCreated": "2015-08-12T00:00:00Z", "mostRecentSubmission": "2015-08-12T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0004_DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "title": "ACKR1, 14-BP DEL, NT286_DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020153", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-08-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-04-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Mallinson et al. (1995) presented evidence for 2 different genetic backgrounds giving rise to the Fy(a-b-) phenotype. The most likely genetic mechanism in most individuals is downregulation of Duffy glycoprotein mRNA (see 613665.0002). However, the Duffy gene from a very rare Caucasian individual (AZ) with the Fy(a-b-) phenotype had a 14-bp deletion that resulted in a frameshift. In the Abstract and Results sections of their paper, Mallinson et al. (1995) reported that the deletion removed nucleotides 287 to 301 of DARC. However, their Figure 4 showed that the deletion involved nucleotides 292 to 305, which appeared to be correct. The DARC cDNA sequence used by Mallinson et al. (1995) was identical to that of the minor DARC variant reported by Chaudhuri et al. (1993). The frameshift resulting from the deletion introduced a stop codon 23 amino acids downstream and produced a putative truncated 118-amino acid protein. The occurrence of this mutation in an apparently healthy individual raised questions about the functional importance of the Duffy glycoprotein, not only in normal erythrocytes, but also in all human cells and tissues. The only known examples of the Fy(a-b-) phenotype in Caucasians were AZ and Czech gypsies."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "7669660", "source": "PubMed"}]}, {"ids": [{"value": "8248172", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Using the sequence of the major DARC variant reported by Iwamoto et al. (1996), as was recommended by Pogo and Chaudhuri (2000), this 14-bp deletion occurs at nucleotide 286."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8547665", "source": "PubMed"}]}, {"ids": [{"value": "10791881", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "names": [{"value": "ACKR1, 14-BP DEL, NT286"}], "variantType": "Variation", "otherNames": [{"value": "14-BP DEL, NT286", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20153"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "cui": "C4017326"}], "clinicalAssertionId": "20153", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "mappingRef": "Preferred"}]}}
-{"variationId": "25", "variationName": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC", "variationType": "Indel", "dateCreated": "2018-10-10T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2018-10-10T00:00:00Z", "accession": "VCV000000025", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25294743, "stop": 25390835, "displayStart": 25294743, "displayStop": 25390835, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25275378, "stop": 25371617, "displayStart": 25275378, "displayStop": 25371617, "strand": "-"}]}], "omims": ["613599"], "fullName": "abhydrolase domain containing 12, lysophospholipase", "geneId": "26090", "hgncId": "HGNC:15868", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25389925, "stop": 25390084, "displayStart": 25389925, "displayStop": 25390084, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12749", "geneId": "130065583", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390255, "stop": 25390414, "displayStart": 25390255, "displayStop": 25390414, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12750", "geneId": "130065584", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390455, "stop": 25390504, "displayStart": 25390455, "displayStop": 25390504, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12751", "geneId": "130065585", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390545, "stop": 25390964, "displayStart": 25390545, "displayStop": 25390964, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12752", "geneId": "130065586", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25383511, "stop": 25397601, "displayStart": 25383511, "displayStop": 25397601, "variantLength": 14091, "alternateAllele": "GG"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25364147, "stop": 25378237, "displayStart": 25364147, "displayStop": 25378237, "variantLength": 14091, "alternateAllele": "GG"}]}], "otherNames": [{"value": "14-KB DEL"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.25364147_25378237delinsGG", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.25364147_25378237delinsGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25383511_25397601delinsGG", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25383511_25397601delinsGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_015600.4:c.-6898_191+7002delinsCC", "sequenceAccessionVersion": "NM_015600.4", "sequenceAccession": "NM_015600", "sequenceVersion": 4, "change": "c.-6898_191+7002delinsCC"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25383511_25397600delinsG", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25383511_25397600delinsG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}], "xrefs": [{"db": "dbVar", "id": "nssv3761628"}, {"db": "dbVar", "id": "nsv1067853"}, {"db": "OMIM", "id": "613599.0002", "type": "Allelic variant"}], "comments": [{"value": "Deletion of exon 1 plus flanking sequences from ABHD12 (NG_028119.1), with insertion of GG", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}, {"value": "The location of this deletion was determined from analysis of Fig. S4C in PubMed 20797687.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "15064", "variationId": "25"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "PHARC syndrome", "db": "MedGen", "id": "C2675204"}], "traitSetId": "17"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC AND PHARC syndrome", "accession": "RCV000000042", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "PHARC syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0012984"}]}, {"value": "Polyneuropathy-hearing loss-ataxia-retinitis pigmentosa-cataract syndrome", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "171848"}]}, {"value": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Polyneuropathy%2C+hearing+loss%2C+ataxia%2C+retinitis+pigmentosa%2C+and+cataract/9132"}]}], "symbols": [{"value": "PHARC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "17071"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "17071"}]}], "xrefs": [{"db": "Orphanet", "id": "171848"}, {"db": "MedGen", "id": "C2675204"}, {"db": "MONDO", "id": "MONDO:0012984"}, {"db": "OMIM", "id": "612674", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "17", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2018-10-10T00:00:00Z", "mostRecentSubmission": "2018-10-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613599.0002_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "title": "ABHD12, 14-KB DEL_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT"}, "clinvarAccession": {"accession": "SCV000020185", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2018-10-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 3 affected members of a family from the United Arab Emirates with polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract (PHARC; 612674), Fiskerstrand et al. (2010) identified a homozygous 14-kb deletion and 2-bp insertion (del14007insGG) in the ABHD12 gene encompassing the promoter region and exon 1 of the gene. Two patients were in their twenties, and 1 was age 6 years. Common features included absent tendon reflexes, hearing loss, ataxia, cataracts; hearing loss occurred in childhood in all 3. Only the older 2 patients had retinitis pigmentosa."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ABHD12"}], "names": [{"value": "ABHD12, 14-KB DEL"}], "variantType": "Variation", "otherNames": [{"value": "14-KB DEL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613599.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20185"}], "traitMappings": [{"medgens": [{"name": "PHARC syndrome", "cui": "C2675204"}], "clinicalAssertionId": "20185", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "mappingRef": "Preferred"}]}}
-{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "names": [{"value": "ACKR1, ARG89CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
+{"variationId": "2", "variationName": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "variationType": "Indel", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "accession": "VCV000000002", "version": 3, "numberOfSubmitters": 2, "numberOfSubmissions": 2, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer)", "canonicalSpdi": "NC_000007.14:4781212:GGAT:TGCTGTAAACTGTAACTGTAAA", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4781213, "stop": 4781216, "displayStart": 4781213, "displayStop": 4781216, "variantLength": 22, "positionVcf": 4781213, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4820844, "stop": 4820847, "displayStart": 4820844, "displayStop": 4820847, "variantLength": 22, "positionVcf": 4820844, "referenceAlleleVcf": "GGAT", "alternateAlleleVcf": "TGCTGTAAACTGTAACTGTAAA"}]}], "otherNames": [{"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000007.13:g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4820844_4820847delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.-202_-199delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001623", "type": "5 prime UTR variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "proteinExpression": {"expression": "LRG_1247p1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "LRG_1247:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.80_83delinsTGCTGTAAACTGTAACTGTAAA", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Arg27_Ile28delinsLeuLeuTer", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Arg27_Ile28delinsLeuLeuTer"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4781213_4781216delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.10583_10586delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.173_176delinsTGCTGTAAACTGTAACTGTAAA", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.173_176delinsTGCTGTAAACTGTAACTGTAAA"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA215070"}, {"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704705", "type": "rs"}], "alleleId": "15041", "variationId": "2"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": {"value": "Pathogenic", "submissionCount": 2}}}, "title": "NM_014855.3(AP5Z1):c.80_83delinsTGCTGTAAACTGTAACTGTAAA (p.Arg27_Ile28delinsLeuLeuTer) AND Hereditary spastic paraplegia 48", "accession": "RCV000000012", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2021-05-16T00:00:00Z", "numberOfSubmitters": 2, "numberOfSubmissions": 2}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0001_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "title": "AP5Z1, 4-BP DEL/22-BP INS, NT80_SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE"}, "clinvarAccession": {"accession": "SCV000020155", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 French sibs with autosomal recessive spastic paraplegia-48 (SPG48; 613647), Slabicki et al. (2010) identified a homozygous complex insertion/deletion mutation in exon 2 of the KIAA0415 gene. The mutation comprised a 4-bp deletion (80del4) and a 22-bp insertion (84ins22), resulting in a frameshift and premature stop codon following residue 29. The insertion was found to be an imperfect quadruplication of a sequence, suggesting DNA polymerase slippage during DNA synthesis as the pathogenetic mechanism. The patients presented with progressive spastic paraplegia associated with urinary incontinence from ages 50 and 49 years, respectively. One had a normal cerebral MRI, whereas the other had spinal hyperintensities in the cervical spine. The unaffected parents were not known to be consanguineous, but they originated from 2 neighboring villages. The mutation was not found in 156 Caucasian or 242 North African control chromosomes. Studies of lymphoblastoid cells derived from 1 patient showed increased sensitivity to DNA-damaging drugs. The findings suggested a link between this form of spastic paraplegia, which could be considered a neurodegenerative disease, and defects in DNA repair."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "name": {"value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"}, "variantType": "Variation", "otherNames": [{"value": "4-BP DEL/22-BP INS, NT80", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20155"}, {"clinvarSubmissionId": {"localKey": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA|OMIM:613647", "submittedAssembly": "GRCh37"}, "clinvarAccession": {"accession": "SCV001451119", "version": 1, "submitterIdentifiers": {"submitterName": "Paris Brain Institute, Inserm - ICM", "orgId": "507826", "orgCategory": "laboratory"}, "dateUpdated": "2021-05-16T00:00:00Z", "dateCreated": "2021-05-16T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER", "germlineClassification": "Pathogenic"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "attributes": [{"attribute": {"value": "ACMG Guidelines, 2015"}, "type": "TYPE_ASSERTION_METHOD", "citations": [{"ids": [{"value": "25741868", "source": "PubMed"}]}]}], "observedIns": [{"sample": {"origin": "ORIGIN_UNKNOWN", "species": {"name": "human", "taxonomyId": 9606}, "affectedStatus": "AFFECTED_STATUS_YES"}, "observedData": [{"attributes": [{"base": {"integerValue": "2"}, "type": "TYPE_VARIANT_ALLELES"}]}]}], "simpleAllele": {"variantType": "Variation", "attributes": [{"attribute": {"base": {"value": "NM_014855.3:c.80_83delinsTGCTGTAAACTGTAACTGTAAA"}, "type": "HGVS"}}]}, "traitSet": {"traits": [{"xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE"}, "submissionNames": ["SUB8526155"], "id": "2865972"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20155", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48, AUTOSOMAL RECESSIVE", "mappingRef": "Preferred"}, {"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "2865972", "traitType": "Disease", "mappingType": "MAPPING_TYPE_XREF", "mappingValue": "613647", "mappingRef": "OMIM"}]}}
+{"variationId": "6", "variationName": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser)", "variationType": "single nucleotide variant", "dateCreated": "2019-02-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-02-04T00:00:00Z", "accession": "VCV000000006", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["11q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_11", "accession": "NC_000011.10", "start": 126269154, "stop": 126278126, "displayStart": 126269154, "displayStop": 126278126, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_11", "accession": "NC_000011.9", "start": 126138934, "stop": 126148026, "displayStart": 126138934, "displayStop": 126148026, "strand": "+"}]}], "omims": ["613622"], "fullName": "FAD dependent oxidoreductase domain containing 1", "geneId": "55572", "hgncId": "HGNC:26927", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser)", "canonicalSpdi": "NC_000011.10:126277516:A:G", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["11q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_11", "accession": "NC_000011.10", "start": 126277517, "stop": 126277517, "displayStart": 126277517, "displayStop": 126277517, "variantLength": 1, "positionVcf": 126277517, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_11", "accession": "NC_000011.9", "start": 126147412, "stop": 126147412, "displayStart": 126147412, "displayStop": 126147412, "variantLength": 1, "positionVcf": 126147412, "referenceAlleleVcf": "A", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["N430S"], "hgvsExpressions": [{"proteinExpression": {"expression": "Q96CU9:p.Asn430Ser", "sequenceAccessionVersion": "Q96CU9", "sequenceAccession": "Q96CU9", "change": "p.Asn430Ser"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "NC_000011.10:g.126277517A>G", "sequenceAccessionVersion": "NC_000011.10", "sequenceAccession": "NC_000011", "sequenceVersion": 10, "change": "g.126277517A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000011.9:g.126147412A>G", "sequenceAccessionVersion": "NC_000011.9", "sequenceAccession": "NC_000011", "sequenceVersion": 9, "change": "g.126147412A>G"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NR_037648.2:n.1466A>G", "sequenceAccessionVersion": "NR_037648.2", "sequenceAccession": "NR_037648", "sequenceVersion": 2, "change": "n.1466A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NG_028029.1:g.13478A>G", "sequenceAccessionVersion": "NG_028029.1", "sequenceAccession": "NG_028029", "sequenceVersion": 1, "change": "g.13478A>G"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_017547.4:c.1289A>G", "sequenceAccessionVersion": "NM_017547.4", "sequenceAccession": "NM_017547", "sequenceVersion": 4, "change": "c.1289A>G", "maneSelect": true}, "proteinExpression": {"expression": "NP_060017.1:p.Asn430Ser", "sequenceAccessionVersion": "NP_060017.1", "sequenceAccession": "NP_060017", "sequenceVersion": 1, "change": "p.Asn430Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_037647.2:n.1121A>G", "sequenceAccessionVersion": "NR_037647.2", "sequenceAccession": "NR_037647", "sequenceVersion": 2, "change": "n.1121A>G"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113794"}, {"db": "UniProtKB", "id": "Q96CU9#VAR_064571"}, {"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267606830", "type": "rs"}], "alleleId": "15045", "variationId": "6"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Mitochondrial complex 1 deficiency, nuclear type 19", "db": "MedGen", "id": "C4748791"}], "traitSetId": "45335"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-10-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_017547.4(FOXRED1):c.1289A>G (p.Asn430Ser) AND Mitochondrial complex 1 deficiency, nuclear type 19", "accession": "RCV000000016", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20818383", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Mitochondrial complex 1 deficiency, nuclear type 19", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0032624"}]}, {"value": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}, {"db": "OMIM", "id": "613622.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613622.0003", "type": "Allelic variant"}]}], "symbols": [{"value": "MC1DN19", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}]}], "xrefs": [{"db": "MedGen", "id": "C4748791"}, {"db": "MONDO", "id": "MONDO:0032624"}, {"db": "OMIM", "id": "618241", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "45335", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-10-01T00:00:00Z", "dateCreated": "2019-02-04T00:00:00Z", "mostRecentSubmission": "2019-02-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613622.0002_MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "title": "FOXRED1, ASN430SER_MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19"}, "clinvarAccession": {"accession": "SCV000020159", "version": 5, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-02-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-10-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "For discussion of the asn430-to-ser (N430S) mutation in the FOXRED1 gene that was found in compound heterozygous state in a patient with mitochondrial complex I deficiency nuclear type 19 (MC1DN19; 618241) manifesting as Leigh syndrome (see 252010), by Calvo et al. (2010), see 613622.0001."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20818383", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "618241", "type": "MIM"}, {"db": "OMIM", "id": "252010", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "FOXRED1"}], "name": {"value": "FOXRED1, ASN430SER"}, "variantType": "Variation", "otherNames": [{"value": "ASN430SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613622.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20159"}], "traitMappings": [{"medgens": [{"name": "Mitochondrial complex 1 deficiency, nuclear type 19", "cui": "C4748791"}], "clinicalAssertionId": "20159", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 19", "mappingRef": "Preferred"}]}}
+{"variationId": "3", "variationName": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs)", "variationType": "Deletion", "dateCreated": "2017-01-30T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2017-01-30T00:00:00Z", "accession": "VCV000000003", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4775623, "stop": 4794397, "displayStart": 4775623, "displayStop": 4794397, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4815261, "stop": 4834025, "displayStart": 4815261, "displayStop": 4834025, "strand": "+"}]}], "omims": ["613653"], "fullName": "adaptor related protein complex 5 subunit zeta 1", "geneId": "9907", "hgncId": "HGNC:22197", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs)", "canonicalSpdi": "NC_000007.14:4787729:CTGCTGGACCTGCCCTGCT:CTGCT", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["7p22.1"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_7", "accession": "NC_000007.14", "start": 4787730, "stop": 4787743, "displayStart": 4787730, "displayStop": 4787743, "variantLength": 14, "positionVcf": 4787729, "referenceAlleleVcf": "GCTGCTGGACCTGCC", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_7", "accession": "NC_000007.13", "start": 4827361, "stop": 4827374, "displayStart": 4827361, "displayStop": 4827374, "variantLength": 14, "positionVcf": 4827360, "referenceAlleleVcf": "GCTGCTGGACCTGCC", "alternateAlleleVcf": "G"}]}], "otherNames": [{"value": "AP5Z1, 14-BP DEL, NT1413"}], "proteinChanges": ["L317fs", "L473fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_1247:g.17105_17118del", "sequenceAccessionVersion": "LRG_1247", "sequenceAccession": "LRG_1247", "change": "g.17105_17118del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_1247t1:c.1413_1426del", "sequenceAccessionVersion": "LRG_1247t1", "sequenceAccession": "LRG_1247t1", "change": "c.1413_1426del"}, "proteinExpression": {"expression": "LRG_1247p1:p.Leu473fs", "sequenceAccessionVersion": "LRG_1247p1", "sequenceAccession": "LRG_1247p1", "change": "p.Leu473fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001364858.1:c.945_958del", "sequenceAccessionVersion": "NM_001364858.1", "sequenceAccession": "NM_001364858", "sequenceVersion": 1, "change": "c.945_958del"}, "proteinExpression": {"expression": "NP_001351787.1:p.Leu317fs", "sequenceAccessionVersion": "NP_001351787.1", "sequenceAccession": "NP_001351787", "sequenceVersion": 1, "change": "p.Leu317fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_014855.3:c.1413_1426del", "sequenceAccessionVersion": "NM_014855.3", "sequenceAccession": "NM_014855", "sequenceVersion": 3, "change": "c.1413_1426del", "maneSelect": true}, "proteinExpression": {"expression": "NP_055670.1:p.Leu473fs", "sequenceAccessionVersion": "NP_055670.1", "sequenceAccession": "NP_055670", "sequenceVersion": 1, "change": "p.Leu473fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NR_157345.1:n.1544_1557del", "sequenceAccessionVersion": "NR_157345.1", "sequenceAccession": "NR_157345", "sequenceVersion": 1, "change": "n.1544_1557del"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001619", "type": "non-coding transcript variant"}], "type": "HGVS_TYPE_NON_CODING"}, {"nucleotideExpression": {"expression": "NC_000007.13:g.4827366_4827379del", "sequenceAccessionVersion": "NC_000007.13", "sequenceAccession": "NC_000007", "sequenceVersion": 13, "change": "g.4827366_4827379del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000007.14:g.4787735_4787748del", "sequenceAccessionVersion": "NC_000007.14", "sequenceAccession": "NC_000007", "sequenceVersion": 14, "change": "g.4787735_4787748del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028111.1:g.17105_17118del", "sequenceAccessionVersion": "NG_028111.1", "sequenceAccession": "NG_028111", "sequenceVersion": 1, "change": "g.17105_17118del"}, "type": "HGVS_TYPE_GENOMIC"}], "xrefs": [{"db": "dbSNP", "id": "397704709", "type": "rs"}, {"db": "ClinGen", "id": "CA215072"}, {"db": "OMIM", "id": "613653.0002", "type": "Allelic variant"}], "alleleId": "15042", "variationId": "3"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Hereditary spastic paraplegia 48", "db": "MedGen", "id": "C3150901"}], "traitSetId": "2"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z", "submissionCount": 1}}}, "title": "NM_014855.3(AP5Z1):c.1413_1426del (p.Leu473fs) AND Hereditary spastic paraplegia 48", "accession": "RCV000000013", "version": 6}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Hereditary spastic paraplegia 48", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013342"}]}, {"value": "Spastic paraplegia 48", "type": "Alternate"}, {"value": "Spastic paraplegia 48, autosomal recessive", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Spastic+paraplegia+48%2C+autosomal+recessive/9323"}]}], "symbols": [{"value": "SPG48", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "306511"}, {"db": "MedGen", "id": "C3150901"}, {"db": "MONDO", "id": "MONDO:0013342"}, {"db": "OMIM", "id": "613647", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "2", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-06-29T00:00:00Z", "dateCreated": "2017-01-30T00:00:00Z", "mostRecentSubmission": "2017-01-30T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613653.0002_SPASTIC PARAPLEGIA 48", "title": "AP5Z1, 14-BP DEL, NT1413_SPASTIC PARAPLEGIA 48"}, "clinvarAccession": {"accession": "SCV000020156", "version": 5, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-01-30T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-06-29T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a patient with sporadic SPG48 (613647), Slabicki et al. (2010) identified a heterozygous 14-bp deletion (1413del14) in the KIAA0415 gene, resulting in a frameshift and premature termination following residue 56. No family members were available for study, and no copy number variations were found on chromosome 7, but a second small change affecting the KIAA0415 gene could not be completely excluded. The mutation was not found in 158 Caucasian or 84 North African control chromosomes."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20613862", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613647", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "AP5Z1"}], "name": {"value": "AP5Z1, 14-BP DEL, NT1413"}, "variantType": "Variation", "otherNames": [{"value": "14-BP DEL, NT1413", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613653.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "SPASTIC PARAPLEGIA 48", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20156"}], "traitMappings": [{"medgens": [{"name": "Hereditary spastic paraplegia 48", "cui": "C3150901"}], "clinicalAssertionId": "20156", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "SPASTIC PARAPLEGIA 48", "mappingRef": "Preferred"}]}}
+{"variationId": "26", "variationName": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter)", "variationType": "Duplication", "dateCreated": "2015-05-18T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "accession": "VCV000000026", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25294743, "stop": 25390835, "displayStart": 25294743, "displayStop": 25390835, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25275378, "stop": 25371617, "displayStart": 25275378, "displayStop": 25371617, "strand": "-"}]}], "omims": ["613599"], "fullName": "abhydrolase domain containing 12, lysophospholipase", "geneId": "26090", "hgncId": "HGNC:15868", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter)", "canonicalSpdi": "NC_000020.11:25307980:GCTCTTAGCT:GCTCTTAGCTCTTAGCT", "variantTypes": ["Duplication"], "locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25307980, "stop": 25307981, "displayStart": 25307980, "displayStop": 25307981, "variantLength": 7, "positionVcf": 25307980, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GGCTCTTA"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25288616, "stop": 25288617, "displayStart": 25288616, "displayStop": 25288617, "variantLength": 7, "positionVcf": 25288616, "referenceAlleleVcf": "G", "alternateAlleleVcf": "GGCTCTTA"}]}], "proteinChanges": ["H285*"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.25288620_25288626dup", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.25288620_25288626dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25307984_25307990dup", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25307984_25307990dup"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_028119.1:g.87996_88002dup", "sequenceAccessionVersion": "NG_028119.1", "sequenceAccession": "NG_028119", "sequenceVersion": 1, "change": "g.87996_88002dup"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001042472.3:c.846_852dup", "sequenceAccessionVersion": "NM_001042472.3", "sequenceAccession": "NM_001042472", "sequenceVersion": 3, "change": "c.846_852dup", "maneSelect": true}, "proteinExpression": {"expression": "NP_001035937.1:p.His285Ter", "sequenceAccessionVersion": "NP_001035937.1", "sequenceAccession": "NP_001035937", "sequenceVersion": 1, "change": "p.His285Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_015600.5:c.846_852dup", "sequenceAccessionVersion": "NM_015600.5", "sequenceAccession": "NM_015600", "sequenceVersion": 5, "change": "c.846_852dup"}, "proteinExpression": {"expression": "NP_056415.1:p.His285Ter", "sequenceAccessionVersion": "NP_056415.1", "sequenceAccession": "NP_056415", "sequenceVersion": 1, "change": "p.His285Ter"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001587", "type": "nonsense"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113810"}, {"db": "OMIM", "id": "613599.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704714", "type": "rs"}], "alleleId": "15065", "variationId": "26"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "PHARC syndrome", "db": "MedGen", "id": "C2675204"}], "traitSetId": "17"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001042472.3(ABHD12):c.846_852dup (p.His285Ter) AND PHARC syndrome", "accession": "RCV000000043", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "PHARC syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0012984"}]}, {"value": "Polyneuropathy-hearing loss-ataxia-retinitis pigmentosa-cataract syndrome", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "171848"}]}, {"value": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Polyneuropathy%2C+hearing+loss%2C+ataxia%2C+retinitis+pigmentosa%2C+and+cataract/9132"}]}], "symbols": [{"value": "PHARC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}], "xrefs": [{"db": "Orphanet", "id": "171848"}, {"db": "MedGen", "id": "C2675204"}, {"db": "MONDO", "id": "MONDO:0012984"}, {"db": "OMIM", "id": "612674", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "17", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2015-05-18T00:00:00Z", "mostRecentSubmission": "2015-05-18T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613599.0003_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "title": "ABHD12, 7-BP DUP, NT846_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT"}, "clinvarAccession": {"accession": "SCV000020186", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-05-18T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 7 patients from 4 Algerian families with polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract (PHARC; 612674), Fiskerstrand et al. (2010) identified a homozygous 7-bp duplication in exon 9 of the ABHD12 gene (846_852dupTAAGAGC), resulting in a premature stop codon at residue 285. The patients ranged in age from 10 to 44 years. The older individuals were more severely affected. All patients had some evidence of a polyneuropathy, with hyporeflexia, pes cavus, and/or sensory loss, and most had gait ataxia with onset in the childhood. Four of the older patients had hearing loss, but only 1 had retinitis pigmentosa and cataract. Other common features included extensor plantar responses and cerebellar atrophy."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ABHD12"}], "name": {"value": "ABHD12, 7-BP DUP, NT846"}, "variantType": "Variation", "otherNames": [{"value": "7-BP DUP, NT846", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613599.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20186"}], "traitMappings": [{"medgens": [{"name": "PHARC syndrome", "cui": "C2675204"}], "clinicalAssertionId": "20186", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "mappingRef": "Preferred"}]}}
+{"variationId": "32", "variationName": "NM_138413.4(HOGA1):c.700+4G>T", "variationType": "single nucleotide variant", "dateCreated": "2013-04-04T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "accession": "VCV000000032", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["10q24.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_10", "accession": "NC_000010.11", "start": 97584389, "stop": 97612802, "displayStart": 97584389, "displayStop": 97612802, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_10", "accession": "NC_000010.10", "start": 99344101, "stop": 99372558, "displayStart": 99344101, "displayStop": 99372558, "strand": "+"}]}], "omims": ["613597"], "fullName": "4-hydroxy-2-oxoglutarate aldolase 1", "geneId": "112817", "hgncId": "HGNC:25155", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_138413.4(HOGA1):c.700+4G>T", "canonicalSpdi": "NC_000010.11:97600166:G:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["10q24.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_10", "accession": "NC_000010.11", "start": 97600167, "stop": 97600167, "displayStart": 97600167, "displayStop": 97600167, "variantLength": 1, "positionVcf": 97600167, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_10", "accession": "NC_000010.10", "start": 99359924, "stop": 99359924, "displayStart": 99359924, "displayStop": 99359924, "variantLength": 1, "positionVcf": 99359924, "referenceAlleleVcf": "G", "alternateAlleleVcf": "T"}]}], "otherNames": [{"value": "IVS, G-T, +4"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000010.10:g.99359924G>T", "sequenceAccessionVersion": "NC_000010.10", "sequenceAccession": "NC_000010", "sequenceVersion": 10, "change": "g.99359924G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000010.11:g.97600167G>T", "sequenceAccessionVersion": "NC_000010.11", "sequenceAccession": "NC_000010", "sequenceVersion": 11, "change": "g.97600167G>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_027922.1:g.20823G>T", "sequenceAccessionVersion": "NG_027922.1", "sequenceAccession": "NG_027922", "sequenceVersion": 1, "change": "g.20823G>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_138413.4:c.700+4G>T", "sequenceAccessionVersion": "NM_138413.4", "sequenceAccession": "NM_138413", "sequenceVersion": 4, "change": "c.700+4G>T", "maneSelect": true}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_001134670.2:c.212-1690G>T", "sequenceAccessionVersion": "NM_001134670.2", "sequenceAccession": "NM_001134670", "sequenceVersion": 2, "change": "c.212-1690G>T"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001627", "type": "intron variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "LOVD 3", "id": "HOGA1_000005"}, {"db": "OMIM", "id": "613597.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "2041105506", "type": "rs"}], "alleleId": "15071", "variationId": "32"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Primary hyperoxaluria type 3", "db": "MedGen", "id": "C3150878"}], "traitSetId": "19"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_138413.4(HOGA1):c.700+4G>T AND Primary hyperoxaluria type 3", "accession": "RCV000000049", "version": 2}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797690", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "Primary hyperoxaluria type 3", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0013327"}]}, {"value": "PH III", "type": "Alternate"}, {"value": "Primary hyperoxaluria, type III", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+Hyperoxaluria+Type+3/8596"}]}], "symbols": [{"value": "HP3", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613616", "type": "MIM"}]}, {"value": "HOGA1", "type": "Alternate"}, {"value": "PH3", "type": "Alternate"}], "attributes": [{"attribute": {"base": {"value": "loss of function", "integerValue": "273"}, "type": "disease mechanism"}, "xrefs": [{"db": "Genetic Testing Registry (GTR)", "id": "GTR000561373"}]}, {"attribute": {"base": {"integerValue": "10738"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "10738"}]}], "citations": [{"ids": [{"value": "26401545", "source": "PubMed"}, {"value": "NBK316514", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "416"}, {"db": "Orphanet", "id": "93600"}, {"db": "MedGen", "id": "C3150878"}, {"db": "MONDO", "id": "MONDO:0013327"}, {"db": "OMIM", "id": "613616", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "19", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z", "mostRecentSubmission": "2013-04-04T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613597.0004_HYPEROXALURIA, PRIMARY, TYPE III", "title": "HOGA1, IVS, G-T, +4_HYPEROXALURIA, PRIMARY, TYPE III"}, "clinvarAccession": {"accession": "SCV000020192", "version": 1, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2013-04-04T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In a 24-year-old woman from a European American family with calcium oxalate nephrolithiasis (HP3; 613616), Belostotsky et al. (2010) identified compound heterozygosity for an intronic G-to-T transversion (701+4G-T) in the DHDPSL gene, predicted to result in insertion of 17 amino acid residues, and glu315del (613597.0001). The unaffected parents were each heterozygous for 1 of the mutations, neither of which was found in 226 chromosomes from European American individuals."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797690", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "613616", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "HOGA1"}], "name": {"value": "HOGA1, IVS, G-T, +4"}, "variantType": "Variation", "otherNames": [{"value": "IVS, G-T, +4", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613597.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "HYPEROXALURIA, PRIMARY, TYPE III", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20192"}], "traitMappings": [{"medgens": [{"name": "Primary hyperoxaluria type 3", "cui": "C3150878"}], "clinicalAssertionId": "20192", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "HYPEROXALURIA, PRIMARY, TYPE III", "mappingRef": "Preferred"}]}}
+{"variationId": "42", "variationName": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser)", "variationType": "single nucleotide variant", "dateCreated": "2019-03-10T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2019-03-10T00:00:00Z", "accession": "VCV000000042", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36054897, "stop": 36111145, "displayStart": 36054897, "displayStop": 36111145, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36545782, "stop": 36596011, "displayStart": 36545782, "displayStop": 36596011, "strand": "+"}]}], "omims": ["613583"], "fullName": "WD repeat domain 62", "geneId": "284403", "hgncId": "HGNC:24502", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser)", "canonicalSpdi": "NC_000019.10:36067414:G:C", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36067415, "stop": 36067415, "displayStart": 36067415, "displayStop": 36067415, "variantLength": 1, "positionVcf": 36067415, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36558317, "stop": 36558317, "displayStart": 36558317, "displayStop": 36558317, "variantLength": 1, "positionVcf": 36558317, "referenceAlleleVcf": "G", "alternateAlleleVcf": "C"}]}], "proteinChanges": ["W224S"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000019.10:g.36067415G>C", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.36067415G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.36558317G>C", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.36558317G>C"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NG_028101.1:g.17535G>C", "sequenceAccessionVersion": "NG_028101.1", "sequenceAccession": "NG_028101", "sequenceVersion": 1, "change": "g.17535G>C"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001083961.2:c.671G>C", "sequenceAccessionVersion": "NM_001083961.2", "sequenceAccession": "NM_001083961", "sequenceVersion": 2, "change": "c.671G>C", "maneSelect": true}, "proteinExpression": {"expression": "NP_001077430.1:p.Trp224Ser", "sequenceAccessionVersion": "NP_001077430.1", "sequenceAccession": "NP_001077430", "sequenceVersion": 1, "change": "p.Trp224Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_173636.5:c.671G>C", "sequenceAccessionVersion": "NM_173636.5", "sequenceAccession": "NM_173636", "sequenceVersion": 5, "change": "c.671G>C"}, "proteinExpression": {"expression": "NP_775907.4:p.Trp224Ser", "sequenceAccessionVersion": "NP_775907.4", "sequenceAccession": "NP_775907", "sequenceVersion": 4, "change": "p.Trp224Ser"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "O43379:p.Trp224Ser", "sequenceAccessionVersion": "O43379", "sequenceAccession": "O43379", "change": "p.Trp224Ser"}, "type": "HGVS_TYPE_PROTEIN"}], "xrefs": [{"db": "ClinGen", "id": "CA251361"}, {"db": "UniProtKB", "id": "O43379#VAR_063702"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "267607176", "type": "rs"}], "alleleId": "15081", "variationId": "42"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "db": "MedGen", "id": "C1858535"}], "traitSetId": "7167"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001083961.2(WDR62):c.671G>C (p.Trp224Ser) AND Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "accession": "RCV000000059", "version": 5}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613583.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0009", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0010", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0013", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0012", "type": "Allelic variant"}]}, {"value": "Primary autosomal recessive microcephaly 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+autosomal+recessive+microcephaly+2/9156"}]}, {"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0011435"}]}], "symbols": [{"value": "MCPH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "In WDR62 primary microcephaly (WDR62-MCPH), microcephaly (occipitofrontal circumference [OFC] = -2 SD) is usually present at birth, but in some instances becomes evident later in the first year of life. Growth is otherwise normal. Except for brain malformations in most affected individuals, no other congenital malformations are observed. Central nervous system involvement can include delayed motor development, mild-to-severe intellectual disability (ID), behavior problems, epilepsy, spasticity, and ataxia."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK578067"}]}], "citations": [{"ids": [{"value": "35188728", "source": "PubMed"}, {"value": "NBK578067", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "2512"}, {"db": "MedGen", "id": "C1858535"}, {"db": "MONDO", "id": "MONDO:0011435"}, {"db": "OMIM", "id": "604317", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7167", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-09T00:00:00Z", "dateCreated": "2019-03-10T00:00:00Z", "mostRecentSubmission": "2019-03-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613583.0003_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "title": "WDR62, TRP224SER_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS"}, "clinvarAccession": {"accession": "SCV000020202", "version": 4, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2019-03-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 sibs and their cousin with microcephaly-2 and cortical malformations (MCPH2; 604317), Bilguvar et al. (2010) identified homozygosity for a missense mutation in the WDR62 gene, a G-to-C transversion in exon 6 that converted tryptophan to serine at codon 224 (W224S). All parents were heterozygous for the mutation, which was not identified in 1,290 Turkish and 1,500 Caucasian control chromosomes. Tryptophan-224 was invariant in all species examined from human to zebrafish and lamprey. The proband was a 6-year, 5-month-old boy who presented at 2 years of age with hyperactivity, seizures, and inability to sleep. He experienced 4 to 8 seizures per day and had microcephaly, micrognathia, and severe mental retardation, and could ambulate only with assistance. The sibs were cousins of the proband. One was an 8-year, 7-month-old female who presented at age 3 with seizures. She was microcephalic, hyperactive, and had dysconjugate gaze. She was able to walk independently and had no obvious dysmorphic features but had moderate mental retardation. Her brother was 12 years, 11 months old. He had seizures, self-mutilating behavior, and severe mental retardation, but could ambulate independently."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "WDR62"}], "name": {"value": "WDR62, TRP224SER"}, "variantType": "Variation", "otherNames": [{"value": "TRP224SER", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20202"}], "traitMappings": [{"medgens": [{"name": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "cui": "C1858535"}], "clinicalAssertionId": "20202", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "mappingRef": "Preferred"}]}}
+{"variationId": "40", "variationName": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs)", "variationType": "Deletion", "dateCreated": "2015-09-17T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-09-17T00:00:00Z", "accession": "VCV000000040", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36054897, "stop": 36111145, "displayStart": 36054897, "displayStop": 36111145, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36545782, "stop": 36596011, "displayStart": 36545782, "displayStop": 36596011, "strand": "+"}]}], "omims": ["613583"], "fullName": "WD repeat domain 62", "geneId": "284403", "hgncId": "HGNC:24502", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs)", "canonicalSpdi": "NC_000019.10:36104568:TGCC:", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["19q13.12"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_19", "accession": "NC_000019.10", "start": 36104569, "stop": 36104572, "displayStart": 36104569, "displayStop": 36104572, "variantLength": 4, "positionVcf": 36104568, "referenceAlleleVcf": "GTGCC", "alternateAlleleVcf": "G"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_19", "accession": "NC_000019.9", "start": 36595471, "stop": 36595474, "displayStart": 36595471, "displayStop": 36595474, "variantLength": 4, "positionVcf": 36595470, "referenceAlleleVcf": "GTGCC", "alternateAlleleVcf": "G"}]}], "proteinChanges": ["V1397fs", "V1402fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NG_028101.1:g.54689_54692del", "sequenceAccessionVersion": "NG_028101.1", "sequenceAccession": "NG_028101", "sequenceVersion": 1, "change": "g.54689_54692del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001083961.2:c.4205_4208del", "sequenceAccessionVersion": "NM_001083961.2", "sequenceAccession": "NM_001083961", "sequenceVersion": 2, "change": "c.4205_4208del", "maneSelect": true}, "proteinExpression": {"expression": "NP_001077430.1:p.Val1402fs", "sequenceAccessionVersion": "NP_001077430.1", "sequenceAccession": "NP_001077430", "sequenceVersion": 1, "change": "p.Val1402fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_173636.5:c.4190_4193del", "sequenceAccessionVersion": "NM_173636.5", "sequenceAccession": "NM_173636", "sequenceVersion": 5, "change": "c.4190_4193del"}, "proteinExpression": {"expression": "NP_775907.4:p.Val1397fs", "sequenceAccessionVersion": "NP_775907.4", "sequenceAccession": "NP_775907", "sequenceVersion": 4, "change": "p.Val1397fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000019.10:g.36104569_36104572del", "sequenceAccessionVersion": "NC_000019.10", "sequenceAccession": "NC_000019", "sequenceVersion": 10, "change": "g.36104569_36104572del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NC_000019.9:g.36595471_36595474del", "sequenceAccessionVersion": "NC_000019.9", "sequenceAccession": "NC_000019", "sequenceVersion": 9, "change": "g.36595471_36595474del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}], "xrefs": [{"db": "ClinGen", "id": "CA251360"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "dbSNP", "id": "397704721", "type": "rs"}], "alleleId": "15079", "variationId": "40"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "db": "MedGen", "id": "C1858535"}], "traitSetId": "7167"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z", "submissionCount": 1}}}, "title": "NM_001083961.2(WDR62):c.4205_4208del (p.Val1402fs) AND Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "accession": "RCV000000057", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "613583.0005", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0003", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0009", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0010", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0013", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0002", "type": "Allelic variant"}, {"db": "OMIM", "id": "613583.0012", "type": "Allelic variant"}]}, {"value": "Primary autosomal recessive microcephaly 2", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Primary+autosomal+recessive+microcephaly+2/9156"}]}, {"value": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0011435"}]}], "symbols": [{"value": "MCPH2", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"value": "In WDR62 primary microcephaly (WDR62-MCPH), microcephaly (occipitofrontal circumference [OFC] = -2 SD) is usually present at birth, but in some instances becomes evident later in the first year of life. Growth is otherwise normal. Except for brain malformations in most affected individuals, no other congenital malformations are observed. Central nervous system involvement can include delayed motor development, mild-to-severe intellectual disability (ID), behavior problems, epilepsy, spasticity, and ataxia."}, "type": "public definition"}, "xrefs": [{"db": "GeneReviews", "id": "NBK578067"}]}], "citations": [{"ids": [{"value": "35188728", "source": "PubMed"}, {"value": "NBK578067", "source": "BookShelf"}], "type": "review", "abbrev": "GeneReviews"}], "xrefs": [{"db": "Orphanet", "id": "2512"}, {"db": "MedGen", "id": "C1858535"}, {"db": "MONDO", "id": "MONDO:0011435"}, {"db": "OMIM", "id": "604317", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "7167", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-09T00:00:00Z", "dateCreated": "2015-09-17T00:00:00Z", "mostRecentSubmission": "2015-09-17T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613583.0001_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "title": "WDR62, 4-BP DEL, TGCC_MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS"}, "clinvarAccession": {"accession": "SCV000020200", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-09-17T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-09T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 2 sibs with autosomal recessive microcephaly-2 and cortical malformations (MCPH2; 604317) and in an affected child from another family, all from consanguineous Turkish unions, Bilguvar et al. (2010) identified homozygosity for a 4-basepair deletion (TGCC) in exon 31 of the WDR62 gene. This deletion occurred at codon 1402 and resulted in a frameshift and premature termination (Val1402GlyfsTer12). The mutation was heterozygous in all parents. It was not observed in 1,290 Turkish control chromosomes. The index patient was a 4-year, 6-month-old female who initially presented at 4 months of age with small head size. At 2 years, 3 months she showed micrognathia and a bulbous nose, and suffered from severe mental retardation. She had had no seizures. MRI showed diffuse cortical thickening and pachygyria. The patient from the second family was a 2-year, 4 month-old male. He had microcephaly and developmental delay but no seizures. Coronal images of this patient showed findings of microlissencephaly including prominent microcephaly, bilateral Sylvian clefts, hypoplastic corpus callosum, and thickened cortex. The kinship coefficients between affected individuals from both families were consistent with fourth-degree relatedness."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20729831", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "604317", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "WDR62"}], "name": {"value": "WDR62, 4-BP DEL, TGCC"}, "variantType": "Variation", "otherNames": [{"value": "4-BP DEL, TGCC", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613583.0001", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20200"}], "traitMappings": [{"medgens": [{"name": "Microcephaly 2, primary, autosomal recessive, with or without cortical malformations", "cui": "C1858535"}], "clinicalAssertionId": "20200", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "MICROCEPHALY 2, PRIMARY, AUTOSOMAL RECESSIVE, WITH CORTICAL MALFORMATIONS", "mappingRef": "Preferred"}]}}
+{"variationId": "18397", "variationName": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)", "variationType": "Deletion", "dateCreated": "2015-08-12T00:00:00Z", "dateLastUpdated": "2022-04-25T00:00:00Z", "mostRecentSubmission": "2015-08-12T00:00:00Z", "accession": "VCV000018397", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)", "canonicalSpdi": "NC_000001.11:159205718:CCTGGCTGGCCTGTCCTGGC:CCTGGC", "variantTypes": ["Deletion"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205719, "stop": 159205732, "displayStart": 159205719, "displayStop": 159205732, "variantLength": 14, "positionVcf": 159205718, "referenceAlleleVcf": "CCCTGGCTGGCCTGT", "alternateAlleleVcf": "C"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175509, "stop": 159175522, "displayStart": 159175509, "displayStop": 159175522, "variantLength": 14, "positionVcf": 159175508, "referenceAlleleVcf": "CCCTGGCTGGCCTGT", "alternateAlleleVcf": "C"}]}], "otherNames": [{"value": "ACKR1, 14-BP DEL, NT286"}], "proteinChanges": ["W96fs", "W98fs"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "LRG_801:g.6713_6726del", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.286_299del", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Trp96fs", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Trp96fs"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000001.10:g.159175515_159175528del", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175515_159175528del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205725_159205738del", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205725_159205738del"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6713_6726del", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6713_6726del"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.292_305del", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.292_305del"}, "proteinExpression": {"expression": "NP_001116423.1:p.Trp98fs", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Trp98fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.286_299del", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.286_299del", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Trp96fs", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Trp96fs"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001589", "type": "frameshift variant"}], "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}, {"db": "dbSNP", "id": "587776507", "type": "rs"}, {"db": "ClinGen", "id": "CA113791"}], "alleleId": "33436", "variationId": "18397"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE"}], "traitSetId": "6212"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2000-04-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs) AND DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "accession": "RCV000000010", "version": 3}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "10791881", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "7669660", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8248172", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY NULL; Fy(a-b-)", "type": "Alternate"}, {"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}, {"db": "OMIM", "id": "613665.0002", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6212", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2000-04-01T00:00:00Z", "dateCreated": "2015-08-12T00:00:00Z", "mostRecentSubmission": "2015-08-12T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0004_DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "title": "ACKR1, 14-BP DEL, NT286_DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020153", "version": 2, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2015-08-12T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2000-04-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Mallinson et al. (1995) presented evidence for 2 different genetic backgrounds giving rise to the Fy(a-b-) phenotype. The most likely genetic mechanism in most individuals is downregulation of Duffy glycoprotein mRNA (see 613665.0002). However, the Duffy gene from a very rare Caucasian individual (AZ) with the Fy(a-b-) phenotype had a 14-bp deletion that resulted in a frameshift. In the Abstract and Results sections of their paper, Mallinson et al. (1995) reported that the deletion removed nucleotides 287 to 301 of DARC. However, their Figure 4 showed that the deletion involved nucleotides 292 to 305, which appeared to be correct. The DARC cDNA sequence used by Mallinson et al. (1995) was identical to that of the minor DARC variant reported by Chaudhuri et al. (1993). The frameshift resulting from the deletion introduced a stop codon 23 amino acids downstream and produced a putative truncated 118-amino acid protein. The occurrence of this mutation in an apparently healthy individual raised questions about the functional importance of the Duffy glycoprotein, not only in normal erythrocytes, but also in all human cells and tissues. The only known examples of the Fy(a-b-) phenotype in Caucasians were AZ and Czech gypsies."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "7669660", "source": "PubMed"}]}, {"ids": [{"value": "8248172", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Using the sequence of the major DARC variant reported by Iwamoto et al. (1996), as was recommended by Pogo and Chaudhuri (2000), this 14-bp deletion occurs at nucleotide 286."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "8547665", "source": "PubMed"}]}, {"ids": [{"value": "10791881", "source": "PubMed"}]}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "name": {"value": "ACKR1, 14-BP DEL, NT286"}, "variantType": "Variation", "otherNames": [{"value": "14-BP DEL, NT286", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0004", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20153"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "cui": "C4017326"}], "clinicalAssertionId": "20153", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE", "mappingRef": "Preferred"}]}}
+{"variationId": "25", "variationName": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC", "variationType": "Indel", "dateCreated": "2018-10-10T00:00:00Z", "dateLastUpdated": "2023-10-15T00:00:00Z", "mostRecentSubmission": "2018-10-10T00:00:00Z", "accession": "VCV000000025", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25294743, "stop": 25390835, "displayStart": 25294743, "displayStop": 25390835, "strand": "-"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25275378, "stop": 25371617, "displayStart": 25275378, "displayStop": 25371617, "strand": "-"}]}], "omims": ["613599"], "fullName": "abhydrolase domain containing 12, lysophospholipase", "geneId": "26090", "hgncId": "HGNC:15868", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25389925, "stop": 25390084, "displayStart": 25389925, "displayStop": 25390084, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12749", "geneId": "130065583", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390255, "stop": 25390414, "displayStart": 25390255, "displayStop": 25390414, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12750", "geneId": "130065584", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390455, "stop": 25390504, "displayStart": 25390455, "displayStop": 25390504, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12751", "geneId": "130065585", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}, {"locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25390545, "stop": 25390964, "displayStart": 25390545, "displayStop": 25390964, "strand": "+"}]}], "fullName": "ATAC-STARR-seq lymphoblastoid silent region 12752", "geneId": "130065586", "source": "calculated", "relationshipType": "GENE_VARIANT_RELATIONSHIP_GENE_OVERLAPPED_BY_VARIANT"}], "name": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC", "variantTypes": ["Indel"], "locations": [{"cytogeneticLocations": ["20p11.21"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_20", "accession": "NC_000020.11", "start": 25383511, "stop": 25397601, "displayStart": 25383511, "displayStop": 25397601, "variantLength": 14091, "alternateAllele": "GG"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_20", "accession": "NC_000020.10", "start": 25364147, "stop": 25378237, "displayStart": 25364147, "displayStop": 25378237, "variantLength": 14091, "alternateAllele": "GG"}]}], "otherNames": [{"value": "14-KB DEL"}], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000020.10:g.25364147_25378237delinsGG", "sequenceAccessionVersion": "NC_000020.10", "sequenceAccession": "NC_000020", "sequenceVersion": 10, "change": "g.25364147_25378237delinsGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25383511_25397601delinsGG", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25383511_25397601delinsGG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NM_015600.4:c.-6898_191+7002delinsCC", "sequenceAccessionVersion": "NM_015600.4", "sequenceAccession": "NM_015600", "sequenceVersion": 4, "change": "c.-6898_191+7002delinsCC"}, "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NC_000020.11:g.25383511_25397600delinsG", "sequenceAccessionVersion": "NC_000020.11", "sequenceAccession": "NC_000020", "sequenceVersion": 11, "change": "g.25383511_25397600delinsG"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}], "xrefs": [{"db": "dbVar", "id": "nssv3761628"}, {"db": "dbVar", "id": "nsv1067853"}, {"db": "OMIM", "id": "613599.0002", "type": "Allelic variant"}], "comments": [{"value": "Deletion of exon 1 plus flanking sequences from ABHD12 (NG_028119.1), with insertion of GG", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}, {"value": "The location of this deletion was determined from analysis of Fig. S4C in PubMed 20797687.", "dataSource": "NCBI curation", "type": "COMMENT_TYPE_PUBLIC"}], "alleleId": "15064", "variationId": "25"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "PHARC syndrome", "db": "MedGen", "id": "C2675204"}], "traitSetId": "17"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z", "submissionCount": 1}}}, "title": "NM_015600.4(ABHD12):c.-6898_191+7002delinsCC AND PHARC syndrome", "accession": "RCV000000042", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "PHARC syndrome", "type": "Preferred", "xrefs": [{"db": "MONDO", "id": "MONDO:0012984"}]}, {"value": "Polyneuropathy-hearing loss-ataxia-retinitis pigmentosa-cataract syndrome", "type": "Alternate", "xrefs": [{"db": "Orphanet", "id": "171848"}]}, {"value": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract", "type": "Alternate", "xrefs": [{"db": "Genetic Alliance", "id": "Polyneuropathy%2C+hearing+loss%2C+ataxia%2C+retinitis+pigmentosa%2C+and+cataract/9132"}]}], "symbols": [{"value": "PHARC", "type": "Alternate", "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}], "attributes": [{"attribute": {"base": {"integerValue": "17071"}, "type": "GARD id"}, "xrefs": [{"db": "Office of Rare Diseases", "id": "17071"}]}], "xrefs": [{"db": "Orphanet", "id": "171848"}, {"db": "MedGen", "id": "C2675204"}, {"db": "MONDO", "id": "MONDO:0012984"}, {"db": "OMIM", "id": "612674", "type": "MIM"}]}], "type": "TYPE_DISEASE", "id": "17", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2010-09-10T00:00:00Z", "dateCreated": "2018-10-10T00:00:00Z", "mostRecentSubmission": "2018-10-10T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613599.0002_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "title": "ABHD12, 14-KB DEL_POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT"}, "clinvarAccession": {"accession": "SCV000020185", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2018-10-10T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2010-09-10T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "In 3 affected members of a family from the United Arab Emirates with polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract (PHARC; 612674), Fiskerstrand et al. (2010) identified a homozygous 14-kb deletion and 2-bp insertion (del14007insGG) in the ABHD12 gene encompassing the promoter region and exon 1 of the gene. Two patients were in their twenties, and 1 was age 6 years. Common features included absent tendon reflexes, hearing loss, ataxia, cataracts; hearing loss occurred in childhood in all 3. Only the older 2 patients had retinitis pigmentosa."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "20797687", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "612674", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ABHD12"}], "name": {"value": "ABHD12, 14-KB DEL"}, "variantType": "Variation", "otherNames": [{"value": "14-KB DEL", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613599.0002", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20185"}], "traitMappings": [{"medgens": [{"name": "PHARC syndrome", "cui": "C2675204"}], "clinicalAssertionId": "20185", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "POLYNEUROPATHY, HEARING LOSS, ATAXIA, RETINITIS PIGMENTOSA, AND CATARACT", "mappingRef": "Preferred"}]}}
+{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "name": {"value": "ACKR1, ARG89CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_conversion_cli/test_cli_xml_to_json/one_record.jsonl b/tests/clinvar_data/snapshots/test_conversion_cli/test_cli_xml_to_json/one_record.jsonl
index c81393a..5a42f3a 100644
--- a/tests/clinvar_data/snapshots/test_conversion_cli/test_cli_xml_to_json/one_record.jsonl
+++ b/tests/clinvar_data/snapshots/test_conversion_cli/test_cli_xml_to_json/one_record.jsonl
@@ -1 +1 @@
-{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": [{"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}], "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "names": [{"value": "ACKR1, ARG89CYS"}], "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
+{"variationId": "18396", "variationName": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "variationType": "single nucleotide variant", "dateCreated": "2017-12-15T00:00:00Z", "dateLastUpdated": "2023-12-25T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "accession": "VCV000018396", "version": 1, "numberOfSubmitters": 1, "numberOfSubmissions": 1, "recordType": "RECORD_TYPE_CLASSIFIED", "recordStatus": "RECORD_STATUS_CURRENT", "species": {"name": "Homo sapiens"}, "classifiedRecord": {"simpleAllele": {"genes": [{"locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159204875, "stop": 159206500, "displayStart": 159204875, "displayStop": 159206500, "strand": "+"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159173802, "stop": 159176289, "displayStart": 159173802, "displayStop": 159176289, "strand": "+"}]}], "omims": ["613665"], "fullName": "atypical chemokine receptor 1 (Duffy blood group)", "geneId": "2532", "hgncId": "HGNC:4035", "source": "submitted", "relationshipType": "GENE_VARIANT_RELATIONSHIP_WITHIN_SINGLE_GENE"}], "name": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)", "canonicalSpdi": "NC_000001.11:159205703:C:T", "variantTypes": ["single nucleotide variant"], "locations": [{"cytogeneticLocations": ["1q23.2"], "sequenceLocations": [{"forDisplay": true, "assembly": "GRCh38", "chr": "CHROMOSOME_1", "accession": "NC_000001.11", "start": 159205704, "stop": 159205704, "displayStart": 159205704, "displayStop": 159205704, "variantLength": 1, "positionVcf": 159205704, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}, {"assembly": "GRCh37", "chr": "CHROMOSOME_1", "accession": "NC_000001.10", "start": 159175494, "stop": 159175494, "displayStart": 159175494, "displayStop": 159175494, "variantLength": 1, "positionVcf": 159175494, "referenceAlleleVcf": "C", "alternateAlleleVcf": "T"}]}], "proteinChanges": ["R89C", "R91C"], "hgvsExpressions": [{"nucleotideExpression": {"expression": "NC_000001.10:g.159175494C>T", "sequenceAccessionVersion": "NC_000001.10", "sequenceAccession": "NC_000001", "sequenceVersion": 10, "change": "g.159175494C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh37"}, {"nucleotideExpression": {"expression": "NC_000001.11:g.159205704C>T", "sequenceAccessionVersion": "NC_000001.11", "sequenceAccession": "NC_000001", "sequenceVersion": 11, "change": "g.159205704C>T"}, "type": "HGVS_TYPE_GENOMIC_TOP_LEVEL", "assembly": "GRCh38"}, {"nucleotideExpression": {"expression": "NG_011626.3:g.6692C>T", "sequenceAccessionVersion": "NG_011626.3", "sequenceAccession": "NG_011626", "sequenceVersion": 3, "change": "g.6692C>T"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "NM_001122951.3:c.271C>T", "sequenceAccessionVersion": "NM_001122951.3", "sequenceAccession": "NM_001122951", "sequenceVersion": 3, "change": "c.271C>T"}, "proteinExpression": {"expression": "NP_001116423.1:p.Arg91Cys", "sequenceAccessionVersion": "NP_001116423.1", "sequenceAccession": "NP_001116423", "sequenceVersion": 1, "change": "p.Arg91Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"nucleotideExpression": {"expression": "NM_002036.4:c.265C>T", "sequenceAccessionVersion": "NM_002036.4", "sequenceAccession": "NM_002036", "sequenceVersion": 4, "change": "c.265C>T", "maneSelect": true}, "proteinExpression": {"expression": "NP_002027.2:p.Arg89Cys", "sequenceAccessionVersion": "NP_002027.2", "sequenceAccession": "NP_002027", "sequenceVersion": 2, "change": "p.Arg89Cys"}, "molecularConsequences": [{"db": "SO", "id": "SO:0001583", "type": "missense variant"}], "type": "HGVS_TYPE_CODING"}, {"proteinExpression": {"expression": "Q16570:p.Arg89Cys", "sequenceAccessionVersion": "Q16570", "sequenceAccession": "Q16570", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_PROTEIN"}, {"nucleotideExpression": {"expression": "LRG_801:g.6692C>T", "sequenceAccessionVersion": "LRG_801", "sequenceAccession": "LRG_801"}, "type": "HGVS_TYPE_GENOMIC"}, {"nucleotideExpression": {"expression": "LRG_801t1:c.265C>T", "sequenceAccessionVersion": "LRG_801t1", "sequenceAccession": "LRG_801t1"}, "proteinExpression": {"expression": "LRG_801p1:p.Arg89Cys", "sequenceAccessionVersion": "LRG_801p1", "sequenceAccession": "LRG_801p1", "change": "p.Arg89Cys"}, "type": "HGVS_TYPE_CODING"}], "xrefs": [{"db": "ClinGen", "id": "CA113789"}, {"db": "UniProtKB", "id": "Q16570#VAR_015068"}, {"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}, {"db": "dbSNP", "id": "34599082", "type": "rs"}], "globalMinorAlleleFrequency": {"value": 0.00459, "source": "1000 Genomes Project", "minorAllele": "T"}, "alleleId": "33435", "variationId": "18396"}, "rcvList": {"rcvAccessions": [{"classifiedConditionList": {"classifiedConditions": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}], "traitSetId": "6213"}, "rcvClassifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": {"value": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z", "submissionCount": 1}}}, "title": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys) AND DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "accession": "RCV000000009", "version": 4}]}, "classifications": {"germlineClassification": {"reviewStatus": "AGGREGATE_GERMLINE_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "description": "Pathogenic", "citations": [{"ids": [{"value": "11369664", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "8547665", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9399903", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9731074", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9746760", "source": "PubMed"}], "type": "general"}, {"ids": [{"value": "9886340", "source": "PubMed"}], "type": "general"}], "conditions": [{"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred", "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}]}], "type": "TYPE_DISEASE", "id": "6213", "contributesToAggregateClassification": true}], "dateLastEvaluated": "2001-06-01T00:00:00Z", "dateCreated": "2017-12-15T00:00:00Z", "mostRecentSubmission": "2017-12-15T00:00:00Z", "numberOfSubmitters": 1, "numberOfSubmissions": 1}}, "clinicalAssertions": [{"clinvarSubmissionId": {"localKey": "613665.0003_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "title": "ACKR1, ARG89CYS_DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE"}, "clinvarAccession": {"accession": "SCV000020152", "version": 3, "submitterIdentifiers": {"submitterName": "OMIM", "orgId": "3", "orgCategory": "resource"}, "dateUpdated": "2017-12-15T00:00:00Z", "dateCreated": "2013-04-04T00:00:00Z"}, "recordStatus": "RECORD_STATUS_CURRENT", "classifications": {"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED", "germlineClassification": "Pathogenic", "dateLastEvaluated": "2001-06-01T00:00:00Z"}, "assertion": "ASSERTION_VARIATION_TO_DISEASE", "observedIns": [{"sample": {"origin": "ORIGIN_GERMLINE", "species": {"name": "human"}, "affectedStatus": "AFFECTED_STATUS_NOT_PROVIDED"}, "observedData": [{"attributes": [{"base": {"value": "Tournamille et al. (1998) and Olsson et al. (1998) described a Duffy allele, FYB-weak (FYB-WK), or FYX, in approximately 3.5% of the population that, because of an arg89-to-cys (R89C) substitution in the first cytoplasmic domain of DARC, results in reduced levels of protein, lower antigen expression, and reduced ability to bind chemokines. The phenotype is called Fy(bwk), Fy(x), or either Fy(a-b+(weak)) or Fy(a+b+(weak)). The R89C substitution results from a C-to-T change at nucleotide 286 of the DARC gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9731074", "source": "PubMed"}]}, {"ids": [{"value": "9886340", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Parasol et al. (1998) noted that, in addition to West African blacks, the Duffy-null phenotype also occurs in non-Ashkenazi Jews, being found, for example, in approximately 20% of Jews from Yemen. They found that in some of these cases Fy(b-) individuals had the wildtype FY*B GATA but carried 271C-T and 304G-A mutations. The 271C-T substitution resulted in an R91C amino acid substitution (R89C in the predominant DARC isoform reported by Iwamoto et al. (1996)), which represented a considerable change of chemical nature, one that may affect the antigenic determinants of DARC, and thus may be of clinical significance. Parasol et al. (1998) noted that further studies were needed to determine whether erythrocytes carrying these mutations behave as Fy(bwk) variants."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9746760", "source": "PubMed"}]}, {"ids": [{"value": "8547665", "source": "PubMed"}]}]}, {"attributes": [{"base": {"value": "Carrington et al. (1997) described a CCR5 (601373) allele that carries a single amino acid substitution (R60S; 601373.0008) in the first intracellular domain of the protein that in heterozygous state appears to protect against human immunodeficiency virus (HIV) infection (see 609423). Tamasauskas et al. (2001) showed that in both the CCR5 R60S and DARC R89C alleles, the loss of a positive charge from the intracellular loop leads to reduced surface expression, thereby identifying a novel mechanism that may be protective against disease: against malarial infection by Plasmodium vivax in the case of the DARC gene and against AIDS in the case of the CCR5 gene."}, "type": "TYPE_DESCRIPTION"}], "citations": [{"ids": [{"value": "9399903", "source": "PubMed"}]}, {"ids": [{"value": "11369664", "source": "PubMed"}]}], "xrefs": [{"db": "OMIM", "id": "601373", "type": "MIM"}, {"db": "OMIM", "id": "609423", "type": "MIM"}]}]}], "simpleAllele": {"genes": [{"symbol": "ACKR1"}], "name": {"value": "ACKR1, ARG89CYS"}, "variantType": "Variation", "otherNames": [{"value": "ARG89CYS", "type": "NonHGVS"}], "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}]}, "traitSet": {"traits": [{"names": [{"value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "type": "Preferred"}]}], "type": "TYPE_DISEASE"}, "id": "20152"}], "traitMappings": [{"medgens": [{"name": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "cui": "C4017327"}], "clinicalAssertionId": "20152", "traitType": "Disease", "mappingType": "MAPPING_TYPE_NAME", "mappingValue": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE", "mappingRef": "Preferred"}]}}
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_aggregate_classification_set_xmldict_data_to_pb/all/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_aggregate_classification_set_xmldict_data_to_pb/all/result
index caf5f5d..44f3394 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_aggregate_classification_set_xmldict_data_to_pb/all/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_aggregate_classification_set_xmldict_data_to_pb/all/result
@@ -8,17 +8,15 @@
"numberOfSubmitters": 2,
"numberOfSubmissions": 3
},
- "somaticClinicalImpacts": [
- {
- "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
- "description": "Tier I - Strong",
- "dateLastEvaluated": "2024-01-24T00:00:00Z",
- "dateCreated": "2024-03-05T00:00:00Z",
- "mostRecentSubmission": "2024-03-05T00:00:00Z",
- "numberOfSubmitters": 1,
- "numberOfSubmissions": 3
- }
- ],
+ "somaticClinicalImpact": {
+ "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
+ "description": "Tier I - Strong",
+ "dateLastEvaluated": "2024-01-24T00:00:00Z",
+ "dateCreated": "2024-03-05T00:00:00Z",
+ "mostRecentSubmission": "2024-03-05T00:00:00Z",
+ "numberOfSubmitters": 1,
+ "numberOfSubmissions": 3
+ },
"oncogenicityClassification": {
"reviewStatus": "AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
"description": "Uncertain significance",
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_aggregate_classification_set_xmldict_data_to_pb/somatic/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_aggregate_classification_set_xmldict_data_to_pb/somatic/result
index b49cf19..7b95f46 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_aggregate_classification_set_xmldict_data_to_pb/somatic/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_aggregate_classification_set_xmldict_data_to_pb/somatic/result
@@ -1,13 +1,11 @@
{
- "somaticClinicalImpacts": [
- {
- "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
- "description": "Tier I - Strong",
- "dateLastEvaluated": "2024-01-24T00:00:00Z",
- "dateCreated": "2024-03-05T00:00:00Z",
- "mostRecentSubmission": "2024-03-05T00:00:00Z",
- "numberOfSubmitters": 1,
- "numberOfSubmissions": 1
- }
- ]
+ "somaticClinicalImpact": {
+ "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
+ "description": "Tier I - Strong",
+ "dateLastEvaluated": "2024-01-24T00:00:00Z",
+ "dateCreated": "2024-03-05T00:00:00Z",
+ "mostRecentSubmission": "2024-03-05T00:00:00Z",
+ "numberOfSubmitters": 1,
+ "numberOfSubmissions": 1
+ }
}
\ No newline at end of file
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_classified_record_xmldict_data_to_pb/id-15065/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_classified_record_xmldict_data_to_pb/id-15065/result
index 7b756ed..9593279 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_classified_record_xmldict_data_to_pb/id-15065/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_classified_record_xmldict_data_to_pb/id-15065/result
@@ -331,13 +331,11 @@
"dateCreated": "2013-04-04T00:00:00Z"
},
"recordStatus": "RECORD_STATUS_CURRENT",
- "classifications": [
- {
- "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
- "germlineClassification": "Pathogenic",
- "dateLastEvaluated": "2010-09-10T00:00:00Z"
- }
- ],
+ "classifications": {
+ "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
+ "germlineClassification": "Pathogenic",
+ "dateLastEvaluated": "2010-09-10T00:00:00Z"
+ },
"assertion": "ASSERTION_VARIATION_TO_DISEASE",
"observedIns": [
{
@@ -385,11 +383,9 @@
"symbol": "ABHD12"
}
],
- "names": [
- {
- "value": "ABHD12, 7-BP DUP, NT846"
- }
- ],
+ "name": {
+ "value": "ABHD12, 7-BP DUP, NT846"
+ },
"variantType": "Variation",
"otherNames": [
{
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-20155/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-20155/result
index 8b45f29..30d4420 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-20155/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-20155/result
@@ -15,13 +15,11 @@
"dateCreated": "2013-04-04T00:00:00Z"
},
"recordStatus": "RECORD_STATUS_CURRENT",
- "classifications": [
- {
- "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
- "germlineClassification": "Pathogenic",
- "dateLastEvaluated": "2010-06-29T00:00:00Z"
- }
- ],
+ "classifications": {
+ "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
+ "germlineClassification": "Pathogenic",
+ "dateLastEvaluated": "2010-06-29T00:00:00Z"
+ },
"assertion": "ASSERTION_VARIATION_TO_DISEASE",
"observedIns": [
{
@@ -69,11 +67,9 @@
"symbol": "AP5Z1"
}
],
- "names": [
- {
- "value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"
- }
- ],
+ "name": {
+ "value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"
+ },
"variantType": "Variation",
"otherNames": [
{
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-21727/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-21727/result
index 6216c8b..396b66b 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-21727/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-21727/result
@@ -22,13 +22,11 @@
"dateChanged": "2014-08-31T00:00:00Z"
}
],
- "classifications": [
- {
- "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
- "germlineClassification": "Pathogenic",
- "dateLastEvaluated": "1991-09-15T00:00:00Z"
- }
- ],
+ "classifications": {
+ "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
+ "germlineClassification": "Pathogenic",
+ "dateLastEvaluated": "1991-09-15T00:00:00Z"
+ },
"assertion": "ASSERTION_VARIATION_TO_DISEASE",
"observedIns": [
{
@@ -76,11 +74,9 @@
"symbol": "PKLR"
}
],
- "names": [
- {
- "value": "PKLR, THR384MET"
- }
- ],
+ "name": {
+ "value": "PKLR, THR384MET"
+ },
"variantType": "Variation",
"otherNames": [
{
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-2719824/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-2719824/result
index 19772ef..9f04d86 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-2719824/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-2719824/result
@@ -15,44 +15,42 @@
"dateCreated": "2020-07-16T00:00:00Z"
},
"recordStatus": "RECORD_STATUS_CURRENT",
- "classifications": [
- {
- "reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER",
- "germlineClassification": "Uncertain significance",
- "citations": [
- {
- "ids": [
- {
- "value": "15888660",
- "source": "PubMed"
- }
- ]
- },
- {
- "ids": [
- {
- "value": "14729682",
- "source": "PubMed"
- }
- ]
- },
- {
- "ids": [
- {
- "value": "12891677",
- "source": "PubMed"
- }
- ]
- }
- ],
- "comments": [
- {
- "value": "This sequence change replaces..."
- }
- ],
- "dateLastEvaluated": "2019-08-08T00:00:00Z"
- }
- ],
+ "classifications": {
+ "reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER",
+ "germlineClassification": "Uncertain significance",
+ "citations": [
+ {
+ "ids": [
+ {
+ "value": "15888660",
+ "source": "PubMed"
+ }
+ ]
+ },
+ {
+ "ids": [
+ {
+ "value": "14729682",
+ "source": "PubMed"
+ }
+ ]
+ },
+ {
+ "ids": [
+ {
+ "value": "12891677",
+ "source": "PubMed"
+ }
+ ]
+ }
+ ],
+ "comments": [
+ {
+ "value": "This sequence change replaces..."
+ }
+ ],
+ "dateLastEvaluated": "2019-08-08T00:00:00Z"
+ },
"assertion": "ASSERTION_VARIATION_TO_DISEASE",
"attributes": [
{
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-3860220/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-3860220/result
index 6a86113..36d8425 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-3860220/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinical_assertion_xmldict_data_to_pb/id-3860220/result
@@ -26,12 +26,10 @@
}
],
"recordStatus": "RECORD_STATUS_CURRENT",
- "classifications": [
- {
- "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
- "germlineClassification": "Pathogenic"
- }
- ],
+ "classifications": {
+ "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
+ "germlineClassification": "Pathogenic"
+ },
"assertion": "ASSERTION_VARIATION_TO_DISEASE",
"observedIns": [
{
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinvar_variation_release_xmldict_data_to_pb/VCV000000002/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinvar_variation_release_xmldict_data_to_pb/VCV000000002/result
index f1f7b5a..8582491 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinvar_variation_release_xmldict_data_to_pb/VCV000000002/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_clinvar_variation_release_xmldict_data_to_pb/VCV000000002/result
@@ -378,13 +378,11 @@
"dateCreated": "2013-04-04T00:00:00Z"
},
"recordStatus": "RECORD_STATUS_CURRENT",
- "classifications": [
- {
- "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
- "germlineClassification": "Pathogenic",
- "dateLastEvaluated": "2010-06-29T00:00:00Z"
- }
- ],
+ "classifications": {
+ "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
+ "germlineClassification": "Pathogenic",
+ "dateLastEvaluated": "2010-06-29T00:00:00Z"
+ },
"assertion": "ASSERTION_VARIATION_TO_DISEASE",
"observedIns": [
{
@@ -432,11 +430,9 @@
"symbol": "AP5Z1"
}
],
- "names": [
- {
- "value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"
- }
- ],
+ "name": {
+ "value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"
+ },
"variantType": "Variation",
"otherNames": [
{
@@ -484,12 +480,10 @@
"dateCreated": "2021-05-16T00:00:00Z"
},
"recordStatus": "RECORD_STATUS_CURRENT",
- "classifications": [
- {
- "reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER",
- "germlineClassification": "Pathogenic"
- }
- ],
+ "classifications": {
+ "reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER",
+ "germlineClassification": "Pathogenic"
+ },
"assertion": "ASSERTION_VARIATION_TO_DISEASE",
"attributes": [
{
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_haplotype_xmldict_data_to_pb/id-431012/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_haplotype_xmldict_data_to_pb/id-431012/result
index 8906224..a9716c6 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_haplotype_xmldict_data_to_pb/id-431012/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_haplotype_xmldict_data_to_pb/id-431012/result
@@ -561,14 +561,12 @@
"numberOfSubmitters": 0,
"numberOfSubmissions": 0
},
- "somaticClinicalImpacts": [
- {
- "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT",
- "description": "no classification for the single variant",
- "numberOfSubmitters": 0,
- "numberOfSubmissions": 0
- }
- ],
+ "somaticClinicalImpact": {
+ "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT",
+ "description": "no classification for the single variant",
+ "numberOfSubmitters": 0,
+ "numberOfSubmissions": 0
+ },
"oncogenicityClassification": {
"reviewStatus": "AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT",
"description": "no classification for the single variant",
@@ -630,14 +628,12 @@
"numberOfSubmitters": 0,
"numberOfSubmissions": 0
},
- "somaticClinicalImpacts": [
- {
- "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT",
- "description": "no classification for the single variant",
- "numberOfSubmitters": 0,
- "numberOfSubmissions": 0
- }
- ],
+ "somaticClinicalImpact": {
+ "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT",
+ "description": "no classification for the single variant",
+ "numberOfSubmitters": 0,
+ "numberOfSubmissions": 0
+ },
"oncogenicityClassification": {
"reviewStatus": "AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT",
"description": "no classification for the single variant",
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_included_record_xmldict_data_to_pb/id-1054167/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_included_record_xmldict_data_to_pb/id-1054167/result
index b426d51..8287b61 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_included_record_xmldict_data_to_pb/id-1054167/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_included_record_xmldict_data_to_pb/id-1054167/result
@@ -331,14 +331,12 @@
"numberOfSubmitters": 0,
"numberOfSubmissions": 0
},
- "somaticClinicalImpacts": [
- {
- "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT",
- "description": "no classification for the single variant",
- "numberOfSubmitters": 0,
- "numberOfSubmissions": 0
- }
- ],
+ "somaticClinicalImpact": {
+ "reviewStatus": "AGGREGATE_SOMATIC_CLINICAL_IMPACT_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT",
+ "description": "no classification for the single variant",
+ "numberOfSubmitters": 0,
+ "numberOfSubmissions": 0
+ },
"oncogenicityClassification": {
"reviewStatus": "AGGREGATE_ONCOGENICITY_REVIEW_STATUS_NO_CLASSIFICATION_FOR_THE_SINGLE_VARIANT",
"description": "no classification for the single variant",
diff --git a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_variation_archive_xmldict_data_to_pb/VCV000000002/result b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_variation_archive_xmldict_data_to_pb/VCV000000002/result
index e764500..2ff0009 100644
--- a/tests/clinvar_data/snapshots/test_conversion_data/test_convert_variation_archive_xmldict_data_to_pb/VCV000000002/result
+++ b/tests/clinvar_data/snapshots/test_conversion_data/test_convert_variation_archive_xmldict_data_to_pb/VCV000000002/result
@@ -375,13 +375,11 @@
"dateCreated": "2013-04-04T00:00:00Z"
},
"recordStatus": "RECORD_STATUS_CURRENT",
- "classifications": [
- {
- "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
- "germlineClassification": "Pathogenic",
- "dateLastEvaluated": "2010-06-29T00:00:00Z"
- }
- ],
+ "classifications": {
+ "reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
+ "germlineClassification": "Pathogenic",
+ "dateLastEvaluated": "2010-06-29T00:00:00Z"
+ },
"assertion": "ASSERTION_VARIATION_TO_DISEASE",
"observedIns": [
{
@@ -429,11 +427,9 @@
"symbol": "AP5Z1"
}
],
- "names": [
- {
- "value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"
- }
- ],
+ "name": {
+ "value": "AP5Z1, 4-BP DEL/22-BP INS, NT80"
+ },
"variantType": "Variation",
"otherNames": [
{
@@ -481,12 +477,10 @@
"dateCreated": "2021-05-16T00:00:00Z"
},
"recordStatus": "RECORD_STATUS_CURRENT",
- "classifications": [
- {
- "reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER",
- "germlineClassification": "Pathogenic"
- }
- ],
+ "classifications": {
+ "reviewStatus": "SUBMITTER_REVIEW_STATUS_CRITERIA_PROVIDED_SINGLE_SUBMITTER",
+ "germlineClassification": "Pathogenic"
+ },
"assertion": "ASSERTION_VARIATION_TO_DISEASE",
"attributes": [
{
diff --git a/tests/clinvar_data/test_conversion_data.py b/tests/clinvar_data/test_conversion_data.py
index 5a65b45..453eee9 100644
--- a/tests/clinvar_data/test_conversion_data.py
+++ b/tests/clinvar_data/test_conversion_data.py
@@ -2205,7 +2205,7 @@ def test_convert_classification_scv_convert_classification_score(xml_str: str, e
],
"dateLastEvaluated": "2024-01-24T00:00:00Z",
"reviewStatus": "SUBMITTER_REVIEW_STATUS_NO_ASSERTION_CRITERIA_PROVIDED",
- "somaticClinicalImpacts": {
+ "somaticClinicalImpact": {
"clinicalImpactAssertionType": "diagnostic",
"clinicalImpactClinicalSignificance": "supports diagnosis",
"value": "Tier I - Strong",
@@ -3463,11 +3463,9 @@ def test_convert_allele_scv_convert_molecular_consequence(xml_str: str, expected
"symbol": "THAP1",
},
],
- "names": [
- {
- "value": "THAP1, LYS24GLU",
- },
- ],
+ "name": {
+ "value": "THAP1, LYS24GLU",
+ },
"otherNames": [
{
"type": "NonHGVS",
diff --git a/tests/clinvar_data/test_models_from_json.py b/tests/clinvar_data/test_models_from_json.py
deleted file mode 100644
index a62b97c..0000000
--- a/tests/clinvar_data/test_models_from_json.py
+++ /dev/null
@@ -1,1920 +0,0 @@
-import datetime
-import json
-
-import pytest
-
-from clinvar_data import conversion, models
-
-
-def json_default(obj):
- if isinstance(obj, datetime.datetime):
- return obj.strftime("%Y-%m-%d %H:%M:%S")
- elif isinstance(obj, datetime.date):
- return obj.strftime("%Y-%m-%d")
- else:
- raise TypeError("Type not serializable")
-
-
-def test_force_list_lst():
- assert models.force_list(1) == [1]
- assert models.force_list([1]) == [1]
-
-
-@pytest.mark.parametrize(
- "input,expected",
- [
- (
- {"@DB": "MedGen", "@ID": "C1704981"},
- {"db": "MedGen", "id": "C1704981"},
- ),
- (
- {
- "@DB": "MedGen",
- "@ID": "C1704981",
- "@Type": "CUI",
- "@URL": "about:blank",
- "@Status": "current",
- },
- {
- "db": "MedGen",
- "id": "C1704981",
- "type": "CUI",
- "url": "about:blank",
- "status": "current",
- },
- ),
- ],
-)
-def test_xref_type_from_json_data(input, expected):
- obj = models.Xref.from_json_data(input)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- ("affects", models.ClinicalSignificanceDescription.AFFECTS),
- ("x", models.ClinicalSignificanceDescription.OTHER),
- ],
-)
-def test_clinical_significance_description_from_the_wild(value, expected):
- value = models.ClinicalSignificanceDescription.from_the_wild(value)
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- ("comment text", {"text": "comment text"}),
- ({"#text": "comment text"}, {"text": "comment text"}),
- (
- {"@DataSource": "NCBI curation", "@Type": "public", "#text": "comment text"},
- {"text": "comment text", "type": "public", "datasource": "NCBI curation"},
- ),
- ],
-)
-def test_comment_from_json_data(value, expected):
- obj = models.Comment.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- ({"@Source": "PubMed", "#text": "9731074"}, {"source": "PubMed", "value": "9731074"}),
- ({"@Source": "PubMed", "#text": "123"}, {"source": "PubMed", "value": "123"}),
- ],
-)
-def test_citation_identifier_from_json_data(value, expected):
- obj = models.CitationIdentifier.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"@Type": "general", "ID": {"@Source": "PubMed", "#text": "8547665"}},
- {"ids": [{"source": "PubMed", "value": "8547665"}], "type": "general"},
- ),
- ({"CitationText": "text here"}, {"citation_text": "text here"}),
- (
- {
- "@Type": "review",
- "@Abbrev": "GeneReviews",
- "ID": [
- {"@Source": "PubMed", "#text": "29595935"},
- {"@Source": "BookShelf", "#text": "NBK488189"},
- ],
- },
- {
- "abbrev": "GeneReviews",
- "ids": [
- {"source": "PubMed", "value": "29595935"},
- {"source": "BookShelf", "value": "NBK488189"},
- ],
- "type": "review",
- },
- ),
- (
- {"URL": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=NEFL"},
- {"url": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=NEFL"},
- ),
- ],
-)
-def test_citation_from_json_data(value, expected):
- obj = models.Citation.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"@type": "ACMG/ClinGen CNV Guidelines, 2019", "#text": "3"},
- {"type": "ACMG/ClinGen CNV Guidelines, 2019", "value": 3.0},
- ),
- ({"@type": "Geneting testing", "#text": "5"}, {"type": "Geneting testing", "value": 5.0}),
- (
- {"@type": "ACMG/ClinGen CNV Guidelines, 2019", "#text": "0.95"},
- {"type": "ACMG/ClinGen CNV Guidelines, 2019", "value": 0.95},
- ),
- ],
-)
-def test_custom_assertion_score_from_json_data(value, expected):
- obj = models.CustomAssertionScore.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@DateLastEvaluated": "2010-09-09",
- "ReviewStatus": "no assertion criteria provided",
- "Description": "Pathogenic",
- },
- {
- "date_last_evaluated": "2010-09-09",
- "descriptions": ["pathogenic"],
- "review_status": "no assertion criteria provided",
- },
- ),
- (
- {
- "@DateLastEvaluated": "2020-01-06",
- "ReviewStatus": "no assertion criteria provided",
- "Description": "Benign",
- "Comment": "comment text",
- },
- {
- "comments": [{"text": "comment text"}],
- "date_last_evaluated": "2020-01-06",
- "descriptions": ["benign"],
- "review_status": "no assertion criteria provided",
- },
- ),
- (
- {
- "@DateLastEvaluated": "2020-04-16",
- "ReviewStatus": "no assertion criteria provided",
- "Description": "Pathogenic",
- "Citation": {"@Type": "general", "ID": {"@Source": "PubMed", "#text": "32576985"}},
- },
- {
- "citations": [
- {"ids": [{"source": "PubMed", "value": "32576985"}], "type": "general"}
- ],
- "date_last_evaluated": "2020-04-16",
- "descriptions": ["pathogenic"],
- "review_status": "no assertion criteria provided",
- },
- ),
- (
- {
- "@DateLastEvaluated": "2016-05-01",
- "ReviewStatus": "no assertion criteria provided",
- "Description": ["other", "other"],
- "ExplanationOfInterpretation": "explanation text",
- },
- {
- "date_last_evaluated": "2016-05-01",
- "descriptions": ["other", "other"],
- "explanation_of_interpretation": "explanation text",
- "review_status": "no assertion criteria provided",
- },
- ),
- (
- {
- "@DateLastEvaluated": "2022-09-27",
- "ReviewStatus": {
- "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
- "#text": "criteria provided, single submitter",
- },
- "Description": [
- {
- "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
- "#text": "Pathogenic",
- },
- {
- "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
- "#text": "Pathogenic",
- },
- ],
- },
- {
- "date_last_evaluated": "2022-09-27",
- "descriptions": ["pathogenic", "pathogenic"],
- "review_status": "criteria provided, single submitter",
- },
- ),
- ],
-)
-def test_clinical_significance_scv_from_json_data(value, expected):
- obj = models.ClinicalSignificanceTypeSCV.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@DateLastEvaluated": "2010-09-09",
- "ReviewStatus": "no assertion criteria provided",
- "Description": "Pathogenic",
- },
- {
- "date_last_evaluated": "2010-09-09",
- "description": "pathogenic",
- "review_status": "no assertion criteria provided",
- },
- ),
- (
- {
- "@DateLastEvaluated": "2020-01-06",
- "ReviewStatus": "no assertion criteria provided",
- "Description": "Benign",
- "Comment": "comment text",
- },
- {
- "comments": [{"text": "comment text"}],
- "date_last_evaluated": "2020-01-06",
- "description": "benign",
- "review_status": "no assertion criteria provided",
- },
- ),
- (
- {
- "@DateLastEvaluated": "2020-04-16",
- "ReviewStatus": "no assertion criteria provided",
- "Description": "Pathogenic",
- "Citation": {"@Type": "general", "ID": {"@Source": "PubMed", "#text": "32576985"}},
- },
- {
- "citations": [
- {"ids": [{"source": "PubMed", "value": "32576985"}], "type": "general"}
- ],
- "date_last_evaluated": "2020-04-16",
- "description": "pathogenic",
- "review_status": "no assertion criteria provided",
- },
- ),
- (
- {
- "@DateLastEvaluated": "2016-05-01",
- "ReviewStatus": "no assertion criteria provided",
- "Description": "other",
- "ExplanationOfInterpretation": "explanation text",
- },
- {
- "date_last_evaluated": "2016-05-01",
- "description": "other",
- "explanation_of_interpretation": "explanation text",
- "review_status": "no assertion criteria provided",
- },
- ),
- (
- {
- "@DateLastEvaluated": "2022-09-27",
- "ReviewStatus": {
- "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
- "#text": "criteria provided, single submitter",
- },
- "Description": {
- "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
- "#text": "Pathogenic",
- },
- },
- {
- "date_last_evaluated": "2022-09-27",
- "description": "pathogenic",
- "review_status": "criteria provided, single submitter",
- },
- ),
- ],
-)
-def test_clinical_significance_rcv_from_json_data(value, expected):
- obj = models.ClinicalSignificanceRCV.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@Acc": "RCV000000009",
- "@DateUpdated": "2022-04-23",
- "@DateCreated": "2013-04-04",
- "@Version": "4",
- "@Type": "RCV",
- },
- {
- "acc": "RCV000000009",
- "date_created": "2013-04-04",
- "date_updated": "2022-04-23",
- "type": "RCV",
- "version": 4,
- },
- ),
- ],
-)
-def test_reference_clinvar_accession_from_json_data(value, expected):
- obj = models.ReferenceClinVarAccession.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "Attribute": {
- "@Type": "ModeOfInheritance",
- "@integerValue": "263",
- "#text": "Autosomal recessive inheritance",
- }
- },
- {
- "integer_value": 263,
- "type": "ModeOfInheritance",
- "value": "Autosomal recessive inheritance",
- },
- ),
- (
- {
- "Attribute": {
- "@Type": "ModeOfInheritance",
- "@integerValue": "263",
- "#text": "Autosomal recessive inheritance",
- },
- "XRef": {
- "@ID": "FGDYS-ID3",
- "@DB": "Laboratory of Molecular ...",
- },
- },
- {
- "integer_value": 263,
- "type": "ModeOfInheritance",
- "value": "Autosomal recessive inheritance",
- "xrefs": [{"db": "Laboratory of Molecular ...", "id": "FGDYS-ID3"}],
- },
- ),
- ],
-)
-def test_clinvar_accession_from_json_data(value, expected):
- obj = models.ReferenceClinVarAssertionAttribute.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"Name": "ABCC8:c.2117-3C>T", "Zygosity": "SingleHeterozygote"},
- {"name": "ABCC8:c.2117-3C>T", "zygosity": "SingleHeterozygote"},
- ),
- (
- {
- "Name": "ABCC8:c.2117-3C>T",
- "Zygosity": "SingleHeterozygote",
- "RelativeOrientation": "cis",
- },
- {
- "name": "ABCC8:c.2117-3C>T",
- "relative_orientation": "cis",
- "zygosity": "SingleHeterozygote",
- },
- ),
- ],
-)
-def test_allele_description_from_json_data(value, expected):
- obj = models.AlleleDescription.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "Zygosity": "SingleHeterozygote",
- "AlleleDescSet": [
- {"Name": "ABCC8:c.2117-3C>T", "Zygosity": "SingleHeterozygote"},
- {"Name": "KCNJ11:c.1009G>A", "Zygosity": "Homozygote"},
- ],
- "Count": "1",
- },
- {
- "allele_descriptions": [
- {"name": "ABCC8:c.2117-3C>T", "zygosity": "SingleHeterozygote"},
- {"name": "KCNJ11:c.1009G>A", "zygosity": "Homozygote"},
- ],
- "count": 1,
- "zygosity": "SingleHeterozygote",
- },
- ),
- (
- {
- "Zygosity": "SingleHeterozygote",
- "AlleleDescSet": [],
- },
- {"zygosity": "SingleHeterozygote"},
- ),
- (
- {},
- None,
- ),
- ],
-)
-def test_cooccurrence_from_json_data(value, expected):
- obj = models.Cooccurrence.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- ("curation", models.ObservationMethod.CURATION),
- ("x", models.ObservationMethod.OTHER),
- ],
-)
-def test_observation_method_from_the_wild(value, expected):
- value = models.ObservationMethod.from_the_wild(value)
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"@Type": "Description", "#text": "Tournamille et al. (1998) ..."},
- {"type": "Description", "value": "Tournamille et al. (1998) ..."},
- ),
- ],
-)
-def test_observed_data_attribute_from_json_data(value, expected):
- obj = models.ObservedDataAttribute.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"Attribute": {"@Type": "Description", "#text": "not provided"}},
- {"attribute": {"type": "Description", "value": "not provided"}},
- ),
- (
- {
- "Attribute": {
- "@Type": "Description",
- "#text": "Tournamille et al. (1998) and Olsson et al. (1998)...",
- },
- "Citation": [
- {"ID": {"@Source": "PubMed", "#text": "9731074"}},
- {"ID": {"@Source": "PubMed", "#text": "9886340"}},
- ],
- },
- {
- "attribute": {
- "type": "Description",
- "value": "Tournamille et al. (1998) and Olsson et al. " "(1998)...",
- },
- "citations": [
- {"ids": [{"source": "PubMed", "value": "9731074"}]},
- {"ids": [{"source": "PubMed", "value": "9886340"}]},
- ],
- },
- ),
- (
- {
- "Attribute": {
- "@Type": "Description",
- "#text": "In a patient with chronic hemolytic...",
- },
- "Citation": {"ID": {"@Source": "PubMed", "#text": "6933565"}},
- "XRef": {"@DB": "OMIM", "@ID": "300653", "@Type": "MIM"},
- },
- {
- "attribute": {
- "type": "Description",
- "value": "In a patient with chronic hemolytic...",
- },
- "citations": [{"ids": [{"source": "PubMed", "value": "6933565"}]}],
- "xrefs": [{"db": "OMIM", "id": "300653", "type": "MIM"}],
- },
- ),
- ],
-)
-def test_observed_data_from_json_data(value, expected):
- obj = models.ObservedData.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "Description": {
- "@Type": "public",
- "#text": "Phenotype: fine and gross motor delay...",
- }
- },
- {"description": {"text": "Phenotype: fine and gross motor delay...", "type": "public"}},
- ),
- ],
-)
-def test_sample_description_from_json_data(value, expected):
- obj = models.SampleDescription.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@NumFamiliesWithSegregationObserved": "1",
- "@NumFamiliesWithVariant": "1",
- "FamilyHistory": "yes",
- },
- {
- "family_history": "yes",
- "num_families_with_segregation_observed": 1,
- "num_families_with_variant": 1,
- },
- ),
- (
- {"@NumFamiliesWithVariant": "1", "FamilyHistory": "no"},
- {"family_history": "no", "num_families_with_variant": 1},
- ),
- ],
-)
-def test_family_info_from_json_data(value, expected):
- obj = models.FamilyInfo.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"@TaxonomyId": "9606", "#text": "human"},
- {"taxonomy_id": 9606, "value": "human"},
- ),
- (
- "human",
- {"value": "human"},
- ),
- ],
-)
-def test_species_from_json_data(value, expected):
- obj = models.Species.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"@Type": "minimum", "@age_unit": "years", "#text": "10"},
- {"age_unit": "years", "type": "minimum", "value": 10},
- ),
- (
- {"@Type": "maximum", "@age_unit": "years", "#text": "69"},
- {"age_unit": "years", "type": "maximum", "value": 69},
- ),
- (
- {"@Type": "single", "@age_unit": "years", "#text": "80"},
- {"age_unit": "years", "type": "single", "value": 80},
- ),
- ],
-)
-def test_age_from_json_data(value, expected):
- obj = models.Age.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"@Type": "Preferred", "#text": "ACKR1"},
- {"type": "Preferred", "value": "ACKR1"},
- ),
- (
- {"@Type": "Preferred", "#text": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)"},
- {"type": "Preferred", "value": "NM_002036.4(ACKR1):c.265C>T (p.Arg89Cys)"},
- ),
- (
- {"@Type": "Alternate", "#text": "NM_001127505.2:c.155A>G(p.Tyr52Cys)"},
- {"type": "Alternate", "value": "NM_001127505.2:c.155A>G(p.Tyr52Cys)"},
- ),
- ],
-)
-def test_typed_value_from_json_data(value, expected):
- obj = models.TypedValue.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "NM_006642.5(SDCCAG8):c.1946_1949del (p.Cys649fs)",
- },
- "XRef": {"@ID": "CA113828", "@DB": "ClinGen"},
- },
- {
- "value": {
- "type": "Preferred",
- "value": "NM_006642.5(SDCCAG8):c.1946_1949del (p.Cys649fs)",
- },
- "xrefs": [{"db": "ClinGen", "id": "CA113828"}],
- },
- ),
- ],
-)
-def test_annotated_typed_value_from_json_data(value, expected):
- obj = models.AnnotatedTypedValue.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"@DataSource": "MedGen", "@ID": "CN192494"},
- {"data_source": "MedGen", "id": "CN192494"},
- ),
- (
- {"@DataSource": "MedGen", "@ID": "CN192494", "@SourceType": "resource"},
- {"data_source": "MedGen", "id": "CN192494", "source_type": "resource"},
- ),
- ],
-)
-def test_source_from_json_data(value, expected):
- obj = models.Source.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"@Type": "co-occurring condition", "@ID": "70"},
- {"id": 70, "type": "co-occurring condition"},
- ),
- (
- {
- "@Type": "DrugResponseAndDisease",
- "Name": {"ElementValue": {"@Type": "Preferred", "#text": "Breast Cancer"}},
- },
- {
- "names": [{"value": {"type": "Preferred", "value": "Breast Cancer"}}],
- "type": "DrugResponseAndDisease",
- },
- ),
- (
- {"@Type": "Finding member", "@ID": "890"},
- {"id": 890, "type": "Finding member"},
- ),
- ],
-)
-def test_trait_relationship_from_json_data(value, expected):
- obj = models.TraitRelationship.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"Name": {"ElementValue": {"@Type": "Preferred", "#text": "BARDET-BIEDL SYNDROME 16"}}},
- {"names": [{"value": {"type": "Preferred", "value": "BARDET-BIEDL SYNDROME 16"}}]},
- ),
- ],
-)
-def test_clinvar_assertion_trait_relationship_from_json_data(value, expected):
- obj = models.ClinVarAssertionTraitRelationship.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"Name": {"ElementValue": {"@Type": "Preferred", "#text": "BARDET-BIEDL SYNDROME 16"}}},
- {"names": [{"value": {"type": "Preferred", "value": "BARDET-BIEDL SYNDROME 16"}}]},
- ),
- ],
-)
-def test_clinvar_assertion_trait_from_json_data(value, expected):
- obj = models.ClinVarAssertionTrait.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@ID": "15693",
- "@Type": "BloodGroup",
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE",
- },
- "XRef": {"@Type": "Allelic variant", "@ID": "613665.0003", "@DB": "OMIM"},
- },
- },
- {
- "names": [
- {
- "value": {
- "type": "Preferred",
- "value": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE",
- },
- "xrefs": [{"db": "OMIM", "id": "613665.0003", "type": "Allelic variant"}],
- }
- ],
- "type": "BloodGroup",
- },
- ),
- ],
-)
-def test_trait_from_json_data(value, expected):
- obj = models.Trait.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@Type": "Indication",
- "Trait": {
- "@Type": "Finding",
- "Name": {"ElementValue": {"@Type": "Preferred", "#text": "Diagnostic"}},
- },
- },
- {
- "traits": [{"names": [{"value": {"type": "Preferred", "value": "Diagnostic"}}]}],
- "type": "Indication",
- },
- ),
- (
- {
- "@Type": "Indication",
- "Trait": {
- "@Type": "Finding",
- "Name": {"ElementValue": {"@Type": "Preferred", "#text": "Vision phenotype"}},
- },
- },
- {
- "traits": [
- {"names": [{"value": {"type": "Preferred", "value": "Vision phenotype"}}]}
- ],
- "type": "Indication",
- },
- ),
- ],
-)
-def test_indication_from_json_data(value, expected):
- obj = models.Indication.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "Origin": "germline",
- "Species": {"@TaxonomyId": "9606", "#text": "human"},
- "AffectedStatus": "not provided",
- },
- {
- "affected_status": "not provided",
- "origin": "germline",
- "species": {"taxonomy_id": 9606, "value": "human"},
- },
- ),
- (
- {
- "Origin": "unknown",
- "Species": {"@TaxonomyId": "9606", "#text": "human"},
- "AffectedStatus": "not provided",
- "NumberTested": "3",
- "NumberMales": "1",
- "FamilyData": {"@NumFamilies": "1"},
- },
- {
- "affected_status": "not provided",
- "family_data": {"num_families": 1},
- "number_males": 1,
- "number_tested": 3,
- "origin": "unknown",
- "species": {"taxonomy_id": 9606, "value": "human"},
- },
- ),
- ],
-)
-def test_sample_from_json_data(value, expected):
- obj = models.Sample.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "Sample": {
- "Origin": "germline",
- "Species": "human",
- "AffectedStatus": "not provided",
- },
- "Method": {"MethodType": "literature only"},
- "ObservedData": [
- {
- "Attribute": {"@Type": "Description", "#text": "In a 27-week-old male ..."},
- "Citation": {"ID": {"@Source": "PubMed", "#text": "19465910"}},
- "XRef": {"@DB": "OMIM", "@ID": "610031", "@Type": "MIM"},
- },
- {
- "Attribute": {
- "@Type": "Description",
- "#text": "Fallet-Bianco et al. (2014)...",
- },
- "Citation": {"ID": {"@Source": "PubMed", "#text": "25059107"}},
- },
- ],
- },
- {
- "methods": ["literature only"],
- "observed_data": [
- {
- "attribute": {"type": "Description", "value": "In a 27-week-old male ..."},
- "citations": [{"ids": [{"source": "PubMed", "value": "19465910"}]}],
- "xrefs": [{"db": "OMIM", "id": "610031", "type": "MIM"}],
- },
- {
- "attribute": {
- "type": "Description",
- "value": "Fallet-Bianco et al. (2014)...",
- },
- "citations": [{"ids": [{"source": "PubMed", "value": "25059107"}]}],
- },
- ],
- "sample": {
- "affected_status": "not provided",
- "origin": "germline",
- "species": {"value": "human"},
- },
- },
- ),
- (
- {
- "Sample": {
- "Origin": "germline",
- "Species": {"@TaxonomyId": "9606", "#text": "human"},
- "AffectedStatus": "unknown",
- "NumberTested": "1",
- },
- "Method": {"MethodType": "clinical testing"},
- "ObservedData": {
- "@ID": "110387662",
- "Attribute": {"@integerValue": "1", "@Type": "VariantAlleles"},
- },
- },
- {
- "methods": ["clinical testing"],
- "observed_data": [{"attribute": {"integer_value": 1, "type": "VariantAlleles"}}],
- "sample": {
- "affected_status": "unknown",
- "number_tested": 1,
- "origin": "germline",
- "species": {"taxonomy_id": 9606, "value": "human"},
- },
- },
- ),
- ],
-)
-def test_observation_set_from_json_data(value, expected):
- obj = models.ObservationSet.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "Attribute": {
- "@Accession": "NM_170784",
- "@Version": "3",
- "@Change": "c.281del",
- "@Type": "HGVS, coding, RefSeq",
- "@MANESelect": "true",
- "#text": "NM_170784.3:c.281del",
- }
- },
- {"change": "c.281del", "type": "HGVS, coding, RefSeq", "value": "NM_170784.3:c.281del"},
- ),
- (
- {
- "Attribute": {
- "@Accession": "NM_170784",
- "@Version": "2",
- "@Change": "c.281del",
- "@Type": "HGVS, previous",
- "#text": "NM_170784.2:c.281del",
- }
- },
- {"change": "c.281del", "type": "HGVS, previous", "value": "NM_170784.2:c.281del"},
- ),
- (
- {
- "Attribute": {"@Type": "MolecularConsequence", "#text": "frameshift variant"},
- "XRef": [
- {"@ID": "SO:0001589", "@DB": "Sequence Ontology"},
- {"@ID": "NM_018848.3:c.281del", "@DB": "RefSeq"},
- ],
- },
- {
- "type": "MolecularConsequence",
- "value": "frameshift variant",
- "xrefs": [
- {"db": "Sequence Ontology", "id": "SO:0001589"},
- {"db": "RefSeq", "id": "NM_018848.3:c.281del"},
- ],
- },
- ),
- ],
-)
-def test_measure_set_attribute_from_json_data(value, expected):
- obj = models.MeasureSetAttribute.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "Attribute": {
- "@Accession": "LRG_801t1",
- "@Type": "HGVS, coding, LRG",
- "#text": "LRG_801t1:c.265C>T",
- }
- },
- {"type": "HGVS, coding, LRG", "value": "LRG_801t1:c.265C>T"},
- ),
- (
- {
- "Attribute": {
- "@Accession": "NM_002036",
- "@Version": "4",
- "@Change": "c.286_299del",
- "@Type": "HGVS, coding, RefSeq",
- "@MANESelect": "true",
- "#text": "NM_002036.4:c.286_299del",
- }
- },
- {"type": "HGVS, coding, RefSeq", "value": "NM_002036.4:c.286_299del"},
- ),
- ],
-)
-def test_measure_type_attribute_from_json_data(value, expected):
- obj = models.MeasureAttribute.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@Value": "0.01099",
- "@Source": "NHLBI Exome Sequencing Project (ESP) Exome Variant Server",
- },
- {
- "source": "NHLBI Exome Sequencing Project (ESP) Exome Variant Server",
- "value": 0.01099,
- },
- ),
- (
- {"@Value": "0.00001", "@Source": "Exome Aggregation Consortium (ExAC)"},
- {"source": "Exome Aggregation Consortium (ExAC)", "value": 1e-05},
- ),
- ],
-)
-def test_allele_frequency_from_json_data(value, expected):
- obj = models.AlleleFrequency.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {"@Value": "0.00459", "@Source": "1000 Genomes Project", "@MinorAllele": "T"},
- {"minor_allele": "T", "source": "1000 Genomes Project", "value": 0.00459},
- ),
- (
- {"@Value": "0.00080", "@Source": "1000 Genomes Project", "@MinorAllele": "A"},
- {"minor_allele": "A", "source": "1000 Genomes Project", "value": 0.0008},
- ),
- ],
-)
-def test_global_minor_allele_frequency_from_json_data(value, expected):
- obj = models.GlobalMinorAlleleFrequency.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@Acc": "SCV000020152",
- "@DateCreated": "2013-04-04",
- "@DateUpdated": "2017-12-15",
- "@Version": "3",
- "@Type": "SCV",
- "@OrgID": "3",
- "@OrganizationCategory": "resource",
- "@OrgType": "primary",
- },
- {
- "acc": "SCV000020152",
- "date_created": "2013-04-04",
- "date_updated": "2017-12-15",
- "org_category": "resource",
- "org_id": "3",
- "org_type": "primary",
- "type": "SCV",
- "version": 3,
- },
- ),
- ],
-)
-def test_clinvar_assertion_accession_from_json_data(value, expected):
- obj = models.ClinVarAssertionAccession.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@Assembly": "GRCh38",
- "@AssemblyAccessionVersion": "GCF_000001405.38",
- "@AssemblyStatus": "current",
- "@Chr": "16",
- "@Accession": "NC_000016.10",
- "@start": "50742086",
- "@stop": "50801935",
- "@display_start": "50742086",
- "@display_stop": "50801935",
- "@Strand": "+",
- },
- {
- "accession": "NC_000016.10",
- "assembly": "GRCh38",
- "assembly_accession_version": "GCF_000001405.38",
- "assembly_status": "current",
- "chr": "16",
- "display_start": 50742086,
- "display_stop": 50801935,
- "start": 50742086,
- "stop": 50801935,
- "strand": "+",
- },
- ),
- (
- {
- "@Assembly": "GRCh37",
- "@AssemblyAccessionVersion": "GCF_000001405.25",
- "@AssemblyStatus": "previous",
- "@Chr": "6",
- "@Accession": "NC_000006.11",
- "@start": "41129260",
- "@stop": "41129260",
- "@display_start": "41129260",
- "@display_stop": "41129260",
- "@variantLength": "1",
- "@positionVCF": "41129260",
- "@referenceAlleleVCF": "C",
- "@alternateAlleleVCF": "T",
- },
- {
- "accession": "NC_000006.11",
- "alternate_allele_vcf": "T",
- "assembly": "GRCh37",
- "assembly_accession_version": "GCF_000001405.25",
- "assembly_status": "previous",
- "chr": "6",
- "display_start": 41129260,
- "display_stop": 41129260,
- "position_vcf": 41129260,
- "reference_allele_vcf": "C",
- "start": 41129260,
- "stop": 41129260,
- "variant_length": 1,
- },
- ),
- ],
-)
-def test_sequence_location_from_json_data(value, expected):
- obj = models.SequenceLocation.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "Attribute": {
- "@dateValue": "2020-05-27",
- "@Type": "Haploinsufficiency",
- "#text": "Little evidence for dosage pathogenicity",
- },
- "Citation": {
- "URL": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=TAB2"
- },
- },
- {
- "citations": [
- {
- "url": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=TAB2"
- }
- ],
- "date_value": "2020-05-27",
- "type": "Haploinsufficiency",
- "value": "Little evidence for dosage pathogenicity",
- },
- ),
- (
- {
- "Attribute": {
- "@dateValue": "2020-05-27",
- "@Type": "Triplosensitivity",
- "#text": "No evidence available",
- },
- "Citation": {
- "URL": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=TAB2"
- },
- },
- {
- "citations": [
- {
- "url": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=TAB2"
- }
- ],
- "date_value": "2020-05-27",
- "type": "Triplosensitivity",
- "value": "No evidence available",
- },
- ),
- ],
-)
-def test_measure_relationship_attribute_from_json_data(value, expected):
- obj = models.MeasureRelationshipAttribute.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value",
- [
- {
- "@Type": "within single gene",
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "TGF-beta activated kinase 1 (MAP3K7) binding protein 2",
- }
- },
- "Symbol": {"ElementValue": {"@Type": "Preferred", "#text": "TAB2"}},
- "AttributeSet": [
- {
- "Attribute": {
- "@dateValue": "2020-05-27",
- "@Type": "Haploinsufficiency",
- "#text": "Little evidence for dosage pathogenicity",
- },
- "Citation": {
- "URL": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=TAB2"
- },
- },
- {
- "Attribute": {
- "@dateValue": "2020-05-27",
- "@Type": "Triplosensitivity",
- "#text": "No evidence available",
- },
- "Citation": {
- "URL": "https://www.ncbi.nlm.nih.gov/projects/dbvar/ISCA/isca_gene.cgi?sym=TAB2"
- },
- },
- ],
- "SequenceLocation": [
- {
- "@Assembly": "GRCh38",
- "@AssemblyAccessionVersion": "GCF_000001405.38",
- "@AssemblyStatus": "current",
- "@Chr": "6",
- "@Accession": "NC_000006.12",
- "@start": "149217926",
- "@stop": "149411607",
- "@display_start": "149217926",
- "@display_stop": "149411607",
- "@Strand": "+",
- },
- ],
- "XRef": [
- {"@ID": "23118", "@DB": "Gene"},
- ],
- },
- ],
-)
-def test_measure_relationship_from_json_data(value, snapshot):
- obj = models.MeasureRelationship.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- # NB: the input/expect output value pairs do not fit on one screen any more for
- # this test, so we use snapshot testing
- snapshot.assert_match(json.dumps(value, indent=2), "output")
-
-
-@pytest.mark.parametrize(
- "value",
- [
- {
- "@Type": "Deletion",
- "@ID": "33436",
- "Name": [
- {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)",
- }
- },
- {
- "ElementValue": {"@Type": "Alternate", "#text": "ACKR1, 14-BP DEL, NT286"},
- "XRef": {"@Type": "Allelic variant", "@ID": "613665.0004", "@DB": "OMIM"},
- },
- ],
- "CanonicalSPDI": "NC_000001.11:159205718:CCTGGCTGGCCTGTCCTGGC:CCTGGC",
- "AttributeSet": [
- {
- "Attribute": {
- "@Accession": "LRG_801t1",
- "@Type": "HGVS, coding, LRG",
- "#text": "LRG_801t1:c.286_299del",
- }
- },
- ],
- "CytogeneticLocation": "1q23.2",
- "SequenceLocation": [
- {
- "@Assembly": "GRCh38",
- "@AssemblyAccessionVersion": "GCF_000001405.38",
- "@AssemblyStatus": "current",
- "@Chr": "1",
- "@Accession": "NC_000001.11",
- "@start": "159205719",
- "@stop": "159205732",
- "@display_start": "159205719",
- "@display_stop": "159205732",
- "@variantLength": "14",
- "@positionVCF": "159205718",
- "@referenceAlleleVCF": "CCCTGGCTGGCCTGT",
- "@alternateAlleleVCF": "C",
- },
- ],
- "MeasureRelationship": {
- "@Type": "within single gene",
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "atypical chemokine receptor 1 (Duffy blood group)",
- }
- },
- "Symbol": {"ElementValue": {"@Type": "Preferred", "#text": "ACKR1"}},
- "SequenceLocation": [
- {
- "@Assembly": "GRCh38",
- "@AssemblyAccessionVersion": "GCF_000001405.38",
- "@AssemblyStatus": "current",
- "@Chr": "1",
- "@Accession": "NC_000001.11",
- "@start": "159204875",
- "@stop": "159206500",
- "@display_start": "159204875",
- "@display_stop": "159206500",
- "@Strand": "+",
- },
- ],
- "XRef": [
- {"@ID": "2532", "@DB": "Gene"},
- ],
- },
- "XRef": [
- {"@Type": "Allelic variant", "@ID": "613665.0004", "@DB": "OMIM"},
- ],
- }
- ],
-)
-def test_measure_from_json_data(value, snapshot):
- obj = models.Measure.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- # NB: the input/expect output value pairs do not fit on one screen any more for
- # this test, so we use snapshot testing
- snapshot.assert_match(json.dumps(value, indent=2), "output")
-
-
-@pytest.mark.parametrize(
- "value",
- [
- {
- "@Type": "Variant",
- "@ID": "18397",
- "@Acc": "VCV000018397",
- "@Version": "1",
- "Measure": {
- "@Type": "Deletion",
- "@ID": "33436",
- "Name": [
- {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)",
- }
- },
- {
- "ElementValue": {"@Type": "Alternate", "#text": "ACKR1, 14-BP DEL, NT286"},
- "XRef": {"@Type": "Allelic variant", "@ID": "613665.0004", "@DB": "OMIM"},
- },
- ],
- "CanonicalSPDI": "NC_000001.11:159205718:CCTGGCTGGCCTGTCCTGGC:CCTGGC",
- "AttributeSet": [
- {
- "Attribute": {
- "@Accession": "LRG_801t1",
- "@Type": "HGVS, coding, LRG",
- "#text": "LRG_801t1:c.286_299del",
- }
- },
- ],
- "CytogeneticLocation": "1q23.2",
- "SequenceLocation": [
- {
- "@Assembly": "GRCh38",
- "@AssemblyAccessionVersion": "GCF_000001405.38",
- "@AssemblyStatus": "current",
- "@Chr": "1",
- "@Accession": "NC_000001.11",
- "@start": "159205719",
- "@stop": "159205732",
- "@display_start": "159205719",
- "@display_stop": "159205732",
- "@variantLength": "14",
- "@positionVCF": "159205718",
- "@referenceAlleleVCF": "CCCTGGCTGGCCTGT",
- "@alternateAlleleVCF": "C",
- },
- ],
- "MeasureRelationship": {
- "@Type": "within single gene",
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "atypical chemokine receptor 1 (Duffy blood group)",
- }
- },
- "Symbol": {"ElementValue": {"@Type": "Preferred", "#text": "ACKR1"}},
- "SequenceLocation": [
- {
- "@Assembly": "GRCh38",
- "@AssemblyAccessionVersion": "GCF_000001405.38",
- "@AssemblyStatus": "current",
- "@Chr": "1",
- "@Accession": "NC_000001.11",
- "@start": "159204875",
- "@stop": "159206500",
- "@display_start": "159204875",
- "@display_stop": "159206500",
- "@Strand": "+",
- },
- ],
- "XRef": [
- {"@ID": "2532", "@DB": "Gene"},
- ],
- },
- "XRef": [
- {"@Type": "Allelic variant", "@ID": "613665.0004", "@DB": "OMIM"},
- ],
- },
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "NM_002036.4(ACKR1):c.286_299del (p.Trp96fs)",
- }
- },
- "XRef": {"@ID": "CA113791", "@DB": "ClinGen"},
- },
- ],
-)
-def test_measure_set_from_json_data(value, snapshot):
- obj = models.MeasureSet.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- snapshot.assert_match(json.dumps(value, indent=2), "output")
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@Type": "CompoundHeterozygote",
- "MeasureSet": [
- {
- "@Type": "Variant",
- "Measure": {
- "@Type": "Variation",
- "AttributeSet": {
- "Attribute": {"@Type": "HGVS", "#text": "NM_000497.3:c.1024C>T"}
- },
- "MeasureRelationship": {
- "@Type": "variant in gene",
- "Symbol": {
- "ElementValue": {"@Type": "Preferred", "#text": "CYP11B1"}
- },
- },
- },
- },
- {
- "@Type": "Variant",
- "Measure": {
- "@Type": "Variation",
- "AttributeSet": {
- "Attribute": {"@Type": "HGVS", "#text": "NM_000497.3:c.1012dup"}
- },
- "MeasureRelationship": {
- "@Type": "variant in gene",
- "Symbol": {
- "ElementValue": {"@Type": "Preferred", "#text": "CYP11B1"}
- },
- },
- },
- },
- ],
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "NM_000497.3:c.[1024C>T];[1012dup]",
- }
- },
- },
- {
- "measures": [
- {
- "measures": [
- {
- "attributes": [{"type": "HGVS", "value": "NM_000497.3:c.1024C>T"}],
- "measure_relationship": [
- {
- "symbols": [
- {"value": {"type": "Preferred", "value": "CYP11B1"}}
- ],
- "type": "variant in " "gene",
- }
- ],
- "type": "variation",
- }
- ],
- "type": "Variant",
- },
- {
- "measures": [
- {
- "attributes": [{"type": "HGVS", "value": "NM_000497.3:c.1012dup"}],
- "measure_relationship": [
- {
- "symbols": [
- {"value": {"type": "Preferred", "value": "CYP11B1"}}
- ],
- "type": "variant in " "gene",
- }
- ],
- "type": "variation",
- }
- ],
- "type": "Variant",
- },
- ],
- "names": [
- {"value": {"type": "Preferred", "value": "NM_000497.3:c.[1024C>T];[1012dup]"}}
- ],
- "type": "CompoundHeterozygote",
- },
- )
- ],
-)
-def test_genotype_set_from_json_data(value, expected):
- obj = models.GenotypeSet.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@Type": "Disease",
- "Trait": {
- "@Type": "Disease",
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "BARDET-BIEDL SYNDROME 2/6, DIGENIC",
- }
- },
- },
- },
- {
- "traits": [
- {
- "names": [
- {
- "value": {
- "type": "Preferred",
- "value": "BARDET-BIEDL SYNDROME 2/6, " "DIGENIC",
- }
- }
- ],
- "type": "Disease",
- }
- ],
- "type": "Disease",
- },
- )
- ],
-)
-def test_trait_set_from_json_data(value, expected):
- obj = models.TraitSet.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected
-
-
-@pytest.mark.parametrize(
- "value",
- [
- {
- "@ID": "63146",
- "@DateLastUpdated": "2022-04-23",
- "@DateCreated": "2013-04-04",
- "ClinVarAccession": {
- "@Acc": "RCV000005643",
- "@DateUpdated": "2022-04-23",
- "@DateCreated": "2013-04-04",
- "@Version": "4",
- "@Type": "RCV",
- },
- "RecordStatus": "current",
- "ClinicalSignificance": {
- "@DateLastEvaluated": "2001-09-21",
- "ReviewStatus": "no assertion criteria provided",
- "Description": "Pathogenic",
- },
- "Assertion": {"@Type": "variation to disease"},
- "ObservedIn": {
- "Sample": {
- "Origin": "germline",
- "Species": {"@TaxonomyId": "9606", "#text": "human"},
- "AffectedStatus": "not provided",
- },
- "Method": {"MethodType": "literature only"},
- "ObservedData": {
- "@ID": "96578166",
- "Attribute": {
- "@Type": "Description",
- "#text": "In a patient carrying 2 different termination codons in the BBS2 gene (606151.0003, 606151.0004), Katsanis et al. (2001) identified a nonsense mutation in the BBS6 gene, a glutamine-to-termination substitution at codon 147.",
- },
- "Citation": {
- "@Type": "general",
- "ID": {"@Source": "PubMed", "#text": "11567139"},
- },
- },
- },
- "MeasureSet": {
- "@Type": "Variant",
- "@ID": "5318",
- "@Acc": "VCV000005318",
- "@Version": "1",
- "Measure": {
- "@Type": "single nucleotide variant",
- "@ID": "20357",
- "Name": [
- {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "NM_170784.3(MKKS):c.442C>T (p.Gln148Ter)",
- }
- },
- {
- "ElementValue": {"@Type": "Alternate", "#text": "Q147*"},
- "XRef": {
- "@Type": "Allelic variant",
- "@ID": "604896.0012",
- "@DB": "OMIM",
- },
- },
- ],
- "CanonicalSPDI": "NC_000020.11:10413072:G:A",
- "AttributeSet": [
- {
- "Attribute": {
- "@Accession": "NM_018848",
- "@Version": "3",
- "@Change": "c.442C>T",
- "@Type": "HGVS, coding, RefSeq",
- "#text": "NM_018848.3:c.442C>T",
- }
- },
- {
- "Attribute": {
- "@Accession": "NM_170784",
- "@Version": "3",
- "@Change": "c.442C>T",
- "@Type": "HGVS, coding, RefSeq",
- "@MANESelect": "true",
- "#text": "NM_170784.3:c.442C>T",
- }
- },
- {
- "Attribute": {
- "@Accession": "NG_009109",
- "@Version": "2",
- "@Change": "g.26146C>T",
- "@Type": "HGVS, genomic, RefSeqGene",
- "#text": "NG_009109.2:g.26146C>T",
- }
- },
- {
- "Attribute": {
- "@Accession": "NC_000020",
- "@Version": "11",
- "@Change": "g.10413073G>A",
- "@Type": "HGVS, genomic, top level",
- "@integerValue": "38",
- "#text": "NC_000020.11:g.10413073G>A",
- }
- },
- {
- "Attribute": {
- "@Accession": "NC_000020",
- "@Version": "10",
- "@Change": "g.10393721G>A",
- "@Type": "HGVS, genomic, top level, previous",
- "@integerValue": "37",
- "#text": "NC_000020.10:g.10393721G>A",
- }
- },
- {
- "Attribute": {
- "@Accession": "NP_061336",
- "@Version": "1",
- "@Change": "p.Gln148Ter",
- "@Type": "HGVS, protein, RefSeq",
- "#text": "NP_061336.1:p.Gln148Ter",
- }
- },
- {
- "Attribute": {
- "@Accession": "NP_740754",
- "@Version": "1",
- "@Change": "p.Gln148Ter",
- "@Type": "HGVS, protein, RefSeq",
- "#text": "NP_740754.1:p.Gln148Ter",
- }
- },
- {
- "Attribute": {"@Type": "MolecularConsequence", "#text": "nonsense"},
- "XRef": [
- {"@ID": "SO:0001587", "@DB": "Sequence Ontology"},
- {"@ID": "NM_018848.3:c.442C>T", "@DB": "RefSeq"},
- ],
- },
- {
- "Attribute": {"@Type": "MolecularConsequence", "#text": "nonsense"},
- "XRef": [
- {"@ID": "SO:0001587", "@DB": "Sequence Ontology"},
- {"@ID": "NM_170784.3:c.442C>T", "@DB": "RefSeq"},
- ],
- },
- {"Attribute": {"@Type": "ProteinChange1LetterCode", "#text": "Q148*"}},
- {"Attribute": {"@Type": "ProteinChange3LetterCode", "#text": "GLN147TER"}},
- ],
- "CytogeneticLocation": "20p12.2",
- "SequenceLocation": [
- {
- "@Assembly": "GRCh38",
- "@AssemblyAccessionVersion": "GCF_000001405.38",
- "@AssemblyStatus": "current",
- "@Chr": "20",
- "@Accession": "NC_000020.11",
- "@start": "10413073",
- "@stop": "10413073",
- "@display_start": "10413073",
- "@display_stop": "10413073",
- "@variantLength": "1",
- "@positionVCF": "10413073",
- "@referenceAlleleVCF": "G",
- "@alternateAlleleVCF": "A",
- },
- {
- "@Assembly": "GRCh37",
- "@AssemblyAccessionVersion": "GCF_000001405.25",
- "@AssemblyStatus": "previous",
- "@Chr": "20",
- "@Accession": "NC_000020.10",
- "@start": "10393721",
- "@stop": "10393721",
- "@display_start": "10393721",
- "@display_stop": "10393721",
- "@variantLength": "1",
- "@positionVCF": "10393721",
- "@referenceAlleleVCF": "G",
- "@alternateAlleleVCF": "A",
- },
- ],
- "MeasureRelationship": {
- "@Type": "within single gene",
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "MKKS centrosomal shuttling protein",
- }
- },
- "Symbol": {"ElementValue": {"@Type": "Preferred", "#text": "MKKS"}},
- "SequenceLocation": [
- {
- "@Assembly": "GRCh38",
- "@AssemblyAccessionVersion": "GCF_000001405.38",
- "@AssemblyStatus": "current",
- "@Chr": "20",
- "@Accession": "NC_000020.11",
- "@start": "10401009",
- "@stop": "10434222",
- "@display_start": "10401009",
- "@display_stop": "10434222",
- "@Strand": "-",
- },
- {
- "@Assembly": "GRCh37",
- "@AssemblyAccessionVersion": "GCF_000001405.25",
- "@AssemblyStatus": "previous",
- "@Chr": "20",
- "@Accession": "NC_000020.10",
- "@start": "10385427",
- "@stop": "10414886",
- "@display_start": "10385427",
- "@display_stop": "10414886",
- "@variantLength": "29460",
- "@Strand": "-",
- },
- ],
- "XRef": [
- {"@ID": "8195", "@DB": "Gene"},
- {"@Type": "MIM", "@ID": "604896", "@DB": "OMIM"},
- {"@ID": "HGNC:7108", "@DB": "HGNC"},
- ],
- },
- "XRef": [
- {"@Type": "Allelic variant", "@ID": "604896.0012", "@DB": "OMIM"},
- {"@Type": "rs", "@ID": "137853154", "@DB": "dbSNP"},
- ],
- },
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "NM_170784.3(MKKS):c.442C>T (p.Gln148Ter)",
- }
- },
- "XRef": {"@ID": "CA117400", "@DB": "ClinGen"},
- },
- "TraitSet": {
- "@Type": "Disease",
- "@ID": "19803",
- "Trait": {
- "@ID": "32093",
- "@Type": "Disease",
- "Name": {
- "ElementValue": {
- "@Type": "Preferred",
- "#text": "Bardet-biedl syndrome 2/6, digenic",
- }
- },
- "XRef": {"@ID": "C4016908", "@DB": "MedGen"},
- },
- },
- }
- ],
-)
-def test_reference_clinvar_assertion_from_json_data(value, snapshot):
- obj = models.ReferenceClinVarAssertion.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- snapshot.assert_match(json.dumps(value, indent=2, default=json_default), "output")
-
-
-@pytest.mark.parametrize(
- "value,expected",
- [
- (
- {
- "@localKey": "604896.0012_BARDET-BIEDL SYNDROME 2/6, DIGENIC",
- "@submitter": "OMIM",
- "@submitterDate": "2017-12-13",
- "@title": "MKKS, GLN147TER_BARDET-BIEDL SYNDROME 2/6, DIGENIC",
- },
- {
- "local_key": "604896.0012_BARDET-BIEDL SYNDROME 2/6, DIGENIC",
- "submitter": "OMIM",
- "submitter_date": "2017-12-13",
- "title": "MKKS, GLN147TER_BARDET-BIEDL SYNDROME 2/6, DIGENIC",
- },
- ),
- ],
-)
-def test_clinvar_submission_id_from_json_data(value, expected):
- obj = models.ClinVarSubmissionId.from_json_data(value)
- value = conversion.remove_empties_from_containers(obj.model_dump(mode="json"))
- assert value == expected