diff --git a/notebooks/STXBP1/STXBP1.ipynb b/notebooks/STXBP1/STXBP1.ipynb new file mode 100644 index 00000000..59c27b18 --- /dev/null +++ b/notebooks/STXBP1/STXBP1.ipynb @@ -0,0 +1,166 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "9dc963e1", + "metadata": {}, + "source": [ + "
todo
" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "492f5c98", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Using genophenocorr version 0.1.1dev\n" + ] + } + ], + "source": [ + "import genophenocorr\n", + "print(f\"Using genophenocorr version {genophenocorr.__version__}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "c0692465", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Loaded HPO v2022-10-05\n" + ] + } + ], + "source": [ + "import hpotk\n", + "hpo_purl = \"/Users/robinp/data/hpo/hp.json\"\n", + "hpo = hpotk.load_minimal_ontology(hpo_purl)\n", + "print(f'Loaded HPO v{hpo.version}')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "77660956-d30f-4c49-a4a0-7fdae1e75b9f", + "metadata": {}, + "outputs": [], + "source": [ + "from genophenocorr.preprocessing import configure_caching_patient_creator\n", + "patient_creator = configure_caching_patient_creator(hpo)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "76967087-8fde-4388-95d2-dba1776bfa08", + "metadata": {}, + "outputs": [], + "source": [ + "from genophenocorr.preprocessing import load_phenopacket_folder" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "3c07a0a5-560a-4970-9f6e-deed8f06fe35", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Expected a result but got an Error for variant: 9_127684372_127684373_A_A_heterozygous\n" + ] + }, + { + "ename": "HTTPError", + "evalue": "400 Client Error: Bad Request for url: https://rest.ensembl.org/vep/human/region/9:127684373-127684373/A?LoF=1&canonical=1&domains=1&hgvs=1&mutfunc=1&numbers=1&protein=1&refseq=1&mane=1&transcript_version=1&variant_class=1", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mHTTPError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[5], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m phenopacket_input_folder \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124minput\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m----> 2\u001b[0m patient_list \u001b[38;5;241m=\u001b[39m \u001b[43mload_phenopacket_folder\u001b[49m\u001b[43m(\u001b[49m\u001b[43mpp_directory\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mphenopacket_input_folder\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpatient_creator\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mpatient_creator\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/GIT/genophenocorr/src/genophenocorr/preprocessing/_phenopacket.py:196\u001b[0m, in \u001b[0;36mload_phenopacket_folder\u001b[0;34m(pp_directory, patient_creator)\u001b[0m\n\u001b[1;32m 193\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNo JSON Phenopackets were found in \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpp_directory\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 195\u001b[0m \u001b[38;5;66;03m# turn phenopackets into patients using patient creator\u001b[39;00m\n\u001b[0;32m--> 196\u001b[0m patients \u001b[38;5;241m=\u001b[39m [patient_creator\u001b[38;5;241m.\u001b[39mcreate_patient(pp) \u001b[38;5;28;01mfor\u001b[39;00m pp \u001b[38;5;129;01min\u001b[39;00m pps]\n\u001b[1;32m 198\u001b[0m \u001b[38;5;66;03m# create cohort from patients\u001b[39;00m\n\u001b[1;32m 199\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m Cohort\u001b[38;5;241m.\u001b[39mfrom_patients(patients)\n", + "File \u001b[0;32m~/GIT/genophenocorr/src/genophenocorr/preprocessing/_phenopacket.py:196\u001b[0m, in \u001b[0;36mThe CohortViewer class offers various methods to create tables and graphics to view the data in the cohort.\n", + "It is still very much in progress
" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1c7c5c1e-8e5e-488a-98ec-85689adff61c", + "metadata": {}, + "outputs": [], + "source": [ + "viewer = CohortViewer(hpo=hpo)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "gpc2venv", + "language": "python", + "name": "gpc2venv" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_102.json b/notebooks/STXBP1/input/PMID_35190816_STX_102.json new file mode 100644 index 00000000..fcceb70a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_102.json @@ -0,0 +1,140 @@ +{ + "id": "STX_102", + "subject": { + "id": "STX_102", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P25Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + } + } + ], + "interpretations": [ + { + "id": "STX_102", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_102", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_QNjawtALouzsBvwKjYXyBdCvT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1501_1519del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127680196_127680214del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127680192", + "ref": "CCCTTATATCTCTACCCGTT", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_129.json b/notebooks/STXBP1/input/PMID_35190816_STX_129.json new file mode 100644 index 00000000..96538b1f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_129.json @@ -0,0 +1,171 @@ +{ + "id": "STX_129", + "subject": { + "id": "STX_129", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0031951", + "label": "Nocturnal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_129", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_129", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_noBAeQZAnrSKbUAeHsBQDsLRK", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.569G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663344G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663344", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_11.json b/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_11.json new file mode 100644 index 00000000..0a88d709 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_11.json @@ -0,0 +1,259 @@ +{ + "id": "STX_18469812_Subject_11", + "subject": { + "id": "STX_18469812_Subject_11", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001266", + "label": "Choreoathetosis" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0006913", + "label": "Frontal cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_18469812_Subject_11", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_18469812_Subject_11", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RknHtklpYHDIGYfpGCqqjstnt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.251T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660034T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660034", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_3.json new file mode 100644 index 00000000..d251b19f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_3.json @@ -0,0 +1,276 @@ +{ + "id": "STX_18469812_Subject_3", + "subject": { + "id": "STX_18469812_Subject_3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P37Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001264", + "label": "Spastic diplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012015", + "label": "EEG with frontal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_18469812_Subject_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_18469812_Subject_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_egmjNOaTVbgzAXsKZLOackxhM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1631G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682489G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682489", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_6.json b/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_6.json new file mode 100644 index 00000000..d003e1bf --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_6.json @@ -0,0 +1,237 @@ +{ + "id": "STX_18469812_Subject_6", + "subject": { + "id": "STX_18469812_Subject_6", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_18469812_Subject_6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_18469812_Subject_6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_pWpyXvgupgnorpZEnOQorMpcT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.539G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663314G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663314", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_7.json b/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_7.json new file mode 100644 index 00000000..ecf44df3 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_18469812_Subject_7.json @@ -0,0 +1,248 @@ +{ + "id": "STX_18469812_Subject_7", + "subject": { + "id": "STX_18469812_Subject_7", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_18469812_Subject_7", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_18469812_Subject_7", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YDBpRWApjmElSBMwZkiQlwnXb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1328T>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676722T>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676722", + "ref": "T", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_19557857_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_19557857_Patient_1.json new file mode 100644 index 00000000..960de898 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_19557857_Patient_1.json @@ -0,0 +1,325 @@ +{ + "id": "STX_19557857_Patient_1", + "subject": { + "id": "STX_19557857_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P27Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002883", + "label": "Hyperventilation" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002172", + "label": "Postural instability" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002307", + "label": "Drooling" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_19557857_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_19557857_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wmrmYoxQetebWVIZhBdjalpss", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.169+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653797G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653797", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_19557857_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_19557857_Patient_2.json new file mode 100644 index 00000000..e9ff5b8c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_19557857_Patient_2.json @@ -0,0 +1,270 @@ +{ + "id": "STX_19557857_Patient_2", + "subject": { + "id": "STX_19557857_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011175", + "label": "Versive seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002307", + "label": "Drooling" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012015", + "label": "EEG with frontal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002172", + "label": "Postural instability" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_19557857_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_19557857_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_1.json new file mode 100644 index 00000000..2bd4fb20 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_1.json @@ -0,0 +1,244 @@ +{ + "id": "STX_20876469_Patient_1", + "subject": { + "id": "STX_20876469_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011166", + "label": "Focal myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20876469_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20876469_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IAiSthEXLjNEnIJEMHYTuSzUI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1434G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678505G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678505", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_2.json new file mode 100644 index 00000000..cbc2c58a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_2.json @@ -0,0 +1,237 @@ +{ + "id": "STX_20876469_Patient_2", + "subject": { + "id": "STX_20876469_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20876469_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20876469_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BaZeKYkFxvSmKAbYOMVSJbzOC", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.893_894del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668178_127668179del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668175", + "ref": "CAG", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_3.json new file mode 100644 index 00000000..caa30c64 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_3.json @@ -0,0 +1,276 @@ +{ + "id": "STX_20876469_Patient_3", + "subject": { + "id": "STX_20876469_Patient_3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20876469_Patient_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20876469_Patient_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_calqrkfQUjjGtrlTMZDKRjMpt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1029+1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672117G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672117", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_6.json b/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_6.json new file mode 100644 index 00000000..45f1a06c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20876469_Patient_6.json @@ -0,0 +1,281 @@ +{ + "id": "STX_20876469_Patient_6", + "subject": { + "id": "STX_20876469_Patient_6", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002599", + "label": "Head titubation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100704", + "label": "Cerebral visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008185", + "label": "Precocious puberty in males" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20876469_Patient_6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20876469_Patient_6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_iBMXFudIxoEqdIJNPYLyHDTbm", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.429+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661206G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661206", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1655.json b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1655.json new file mode 100644 index 00000000..272478de --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1655.json @@ -0,0 +1,260 @@ +{ + "id": "STX_20887364_Subject_1655", + "subject": { + "id": "STX_20887364_Subject_1655", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012016", + "label": "EEG with occipital focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20887364_Subject_1655", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20887364_Subject_1655", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nimzWypILMhFFUxqyznIWXDIS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1694.json b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1694.json new file mode 100644 index 00000000..13b1db0d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1694.json @@ -0,0 +1,226 @@ +{ + "id": "STX_20887364_Subject_1694", + "subject": { + "id": "STX_20887364_Subject_1694", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y5M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20887364_Subject_1694", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20887364_Subject_1694", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wuoxtXYYDEomzFStIKbjaYMor", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.388_389del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661164_127661165del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661161", + "ref": "ACT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1751.json b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1751.json new file mode 100644 index 00000000..181c8038 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1751.json @@ -0,0 +1,259 @@ +{ + "id": "STX_20887364_Subject_1751", + "subject": { + "id": "STX_20887364_Subject_1751", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20887364_Subject_1751", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20887364_Subject_1751", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1792.json b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1792.json new file mode 100644 index 00000000..79d0d46f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1792.json @@ -0,0 +1,270 @@ +{ + "id": "STX_20887364_Subject_1792", + "subject": { + "id": "STX_20887364_Subject_1792", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011175", + "label": "Versive seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002119", + "label": "Ventriculomegaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20887364_Subject_1792", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20887364_Subject_1792", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_dvAShBtOtumPnAjtFtOgdPFov", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.157G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653784G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653784", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1979.json b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1979.json new file mode 100644 index 00000000..f1faf9e8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1979.json @@ -0,0 +1,259 @@ +{ + "id": "STX_20887364_Subject_1979", + "subject": { + "id": "STX_20887364_Subject_1979", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20887364_Subject_1979", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20887364_Subject_1979", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_WqGFTzesPCHXjFgAIHahVFIcA", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.961A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127669956A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127669956", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1989.json b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1989.json new file mode 100644 index 00000000..b01f6f4d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_1989.json @@ -0,0 +1,226 @@ +{ + "id": "STX_20887364_Subject_1989", + "subject": { + "id": "STX_20887364_Subject_1989", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20887364_Subject_1989", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20887364_Subject_1989", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_2103.json b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_2103.json new file mode 100644 index 00000000..4fb7b9df --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_2103.json @@ -0,0 +1,270 @@ +{ + "id": "STX_20887364_Subject_2103", + "subject": { + "id": "STX_20887364_Subject_2103", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y11M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012017", + "label": "EEG with parietal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20887364_Subject_2103", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20887364_Subject_2103", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_XYerZInnhtqymCCUSUevpbjWd", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.747dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666249dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666245", + "ref": "C", + "alt": "CT" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_2123.json b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_2123.json new file mode 100644 index 00000000..104aa8f7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_20887364_Subject_2123.json @@ -0,0 +1,270 @@ +{ + "id": "STX_20887364_Subject_2123", + "subject": { + "id": "STX_20887364_Subject_2123", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006813", + "label": "Hemiclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012017", + "label": "EEG with parietal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006913", + "label": "Frontal cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_20887364_Subject_2123", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_20887364_Subject_2123", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_21204804_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_21204804_Patient_1.json new file mode 100644 index 00000000..ab6f39f1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_21204804_Patient_1.json @@ -0,0 +1,324 @@ +{ + "id": "STX_21204804_Patient_1", + "subject": { + "id": "STX_21204804_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y11M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001622", + "label": "Premature birth" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0100704", + "label": "Cerebral visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0006913", + "label": "Frontal cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_21204804_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_21204804_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_atAwAhGOvxWChPvHhxIOJsfGY", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.232_235del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658437_127658440del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658434", + "ref": "ATCAC", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_21204804_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_21204804_Patient_2.json new file mode 100644 index 00000000..09111b54 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_21204804_Patient_2.json @@ -0,0 +1,193 @@ +{ + "id": "STX_21204804_Patient_2", + "subject": { + "id": "STX_21204804_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006913", + "label": "Frontal cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_21204804_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_21204804_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_zpNymRmZxAHtnFlusxSRKUfhV", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1654T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682512T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682512", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_21762454_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_21762454_Patient_1.json new file mode 100644 index 00000000..01f2cebd --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_21762454_Patient_1.json @@ -0,0 +1,196 @@ +{ + "id": "STX_21762454_Patient_1", + "subject": { + "id": "STX_21762454_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002007", + "label": "Frontal bossing" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_21762454_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_21762454_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_1.json new file mode 100644 index 00000000..6c969031 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_1.json @@ -0,0 +1,436 @@ +{ + "id": "STX_21770924_Patient_1", + "subject": { + "id": "STX_21770924_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0006913", + "label": "Frontal cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002451", + "label": "Limb dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_21770924_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_21770924_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nXTrmAGeBKXZurHMTjUpEdxTd", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.902+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668188G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668188", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_2.json new file mode 100644 index 00000000..98422b16 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_2.json @@ -0,0 +1,324 @@ +{ + "id": "STX_21770924_Patient_2", + "subject": { + "id": "STX_21770924_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P18M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_21770924_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_21770924_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_3.json new file mode 100644 index 00000000..8de91b4e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_3.json @@ -0,0 +1,420 @@ +{ + "id": "STX_21770924_Patient_3", + "subject": { + "id": "STX_21770924_Patient_3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0006913", + "label": "Frontal cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001273", + "label": "Abnormal corpus callosum morphology" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_21770924_Patient_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_21770924_Patient_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_zfrSsptZrhpPHMMUDKoASdaZP", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_003165.6:c.1720A>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127684385A>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127684385", + "ref": "A", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_5.json b/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_5.json new file mode 100644 index 00000000..fbf6dd90 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_21770924_Patient_5.json @@ -0,0 +1,388 @@ +{ + "id": "STX_21770924_Patient_5", + "subject": { + "id": "STX_21770924_Patient_5", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001531", + "label": "Failure to thrive in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_21770924_Patient_5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_21770924_Patient_5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_dZfZbwunqVKqvzFUajHmYCZBO", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.548T>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663323T>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663323", + "ref": "T", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_22596016_Case_Report.json b/notebooks/STXBP1/input/PMID_35190816_STX_22596016_Case_Report.json new file mode 100644 index 00000000..ab041da5 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_22596016_Case_Report.json @@ -0,0 +1,212 @@ +{ + "id": "STX_22596016_Case_Report", + "subject": { + "id": "STX_22596016_Case_Report", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001537", + "label": "Umbilical hernia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_22596016_Case_Report", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_22596016_Case_Report", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FYktDAtgnMTwUWurookshOduV", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.931dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127669926dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127669921", + "ref": "A", + "alt": "AT" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23020937_ES07E0046.json b/notebooks/STXBP1/input/PMID_35190816_STX_23020937_ES07E0046.json new file mode 100644 index 00000000..3bcca996 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23020937_ES07E0046.json @@ -0,0 +1,188 @@ +{ + "id": "STX_23020937_ES07E0046", + "subject": { + "id": "STX_23020937_ES07E0046", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000348", + "label": "High forehead" + } + }, + { + "type": { + "id": "HP:0000582", + "label": "Upslanted palpebral fissure" + } + }, + { + "type": { + "id": "HP:0000160", + "label": "Narrow mouth" + } + }, + { + "type": { + "id": "HP:0000311", + "label": "Round face" + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + } + }, + { + "type": { + "id": "HP:0002120", + "label": "Cerebral cortical atrophy" + } + }, + { + "type": { + "id": "HP:0000248", + "label": "Brachycephaly" + } + }, + { + "type": { + "id": "HP:0001181", + "label": "Adducted thumb" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + } + ], + "interpretations": [ + { + "id": "STX_23020937_ES07E0046", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23020937_ES07E0046", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_jNgVdIhZupPOCUecgjuDlJBAS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.301G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660084G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660084", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23020937_MR_NET001.json b/notebooks/STXBP1/input/PMID_35190816_STX_23020937_MR_NET001.json new file mode 100644 index 00000000..8ff9bebb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23020937_MR_NET001.json @@ -0,0 +1,224 @@ +{ + "id": "STX_23020937_MR_NET001", + "subject": { + "id": "STX_23020937_MR_NET001", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + } + }, + { + "type": { + "id": "HP:0002346", + "label": "Head tremor" + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + } + }, + { + "type": { + "id": "HP:0000720", + "label": "Mood swings" + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + } + }, + { + "type": { + "id": "HP:0012704", + "label": "Widened subarachnoid space" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + } + ], + "interpretations": [ + { + "id": "STX_23020937_MR_NET001", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23020937_MR_NET001", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SAGrgMdjMFtCroGsfmhwVfPWx", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.247-1del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660029del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660028", + "ref": "AG", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23020937_P4276.json b/notebooks/STXBP1/input/PMID_35190816_STX_23020937_P4276.json new file mode 100644 index 00000000..1d77cf7d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23020937_P4276.json @@ -0,0 +1,204 @@ +{ + "id": "STX_23020937_P4276", + "subject": { + "id": "STX_23020937_P4276", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P30M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P30M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P30M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P30M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P30M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P30M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P30M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P30M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23020937_P4276", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23020937_P4276", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FhqUkwwUDStVyBYvFcuyxoljM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.175G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658380G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658380", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_A.json b/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_A.json new file mode 100644 index 00000000..cff696f1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_A.json @@ -0,0 +1,308 @@ +{ + "id": "STX_23409955_Patient_A", + "subject": { + "id": "STX_23409955_Patient_A", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011166", + "label": "Focal myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001531", + "label": "Failure to thrive in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0040288", + "label": "Nasogastric tube feeding" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23409955_Patient_A", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23409955_Patient_A", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_neZemdQjVuZuoCuMpybSjrbFl", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.607C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127665275C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127665275", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_B.json b/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_B.json new file mode 100644 index 00000000..005b1524 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_B.json @@ -0,0 +1,523 @@ +{ + "id": "STX_23409955_Patient_B", + "subject": { + "id": "STX_23409955_Patient_B", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000483", + "label": "Astigmatism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000160", + "label": "Narrow mouth" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0005280", + "label": "Depressed nasal bridge" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000311", + "label": "Round face" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001182", + "label": "Tapered finger" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000582", + "label": "Upslanted palpebral fissure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003186", + "label": "Inverted nipples" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0009062", + "label": "Infantile axial hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000272", + "label": "Malar flattening" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0004324", + "label": "Increased body weight" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000739", + "label": "Anxiety" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002370", + "label": "Poor coordination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0032048", + "label": "Focal cortical dysplasia type Ia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012016", + "label": "EEG with occipital focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000540", + "label": "Hypermetropia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23409955_Patient_B", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23409955_Patient_B", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_tKogWGPqHCpBuDBdpQQPgrytX", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1631G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682489G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682489", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_D.json b/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_D.json new file mode 100644 index 00000000..7ba01058 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_D.json @@ -0,0 +1,303 @@ +{ + "id": "STX_23409955_Patient_D", + "subject": { + "id": "STX_23409955_Patient_D", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003808", + "label": "Abnormal muscle tone" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007328", + "label": "Impaired pain sensation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23409955_Patient_D", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23409955_Patient_D", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_tRmIJZpecUwXVsovRebAxFHqJ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.230T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658435T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658435", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_F.json b/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_F.json new file mode 100644 index 00000000..a670a5c7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23409955_Patient_F.json @@ -0,0 +1,248 @@ +{ + "id": "STX_23409955_Patient_F", + "subject": { + "id": "STX_23409955_Patient_F", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P20Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011155", + "label": "Focal autonomic seizures with altered responsiveness" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23409955_Patient_F", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23409955_Patient_F", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23533165_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_23533165_Patient_1.json new file mode 100644 index 00000000..4425d84f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23533165_Patient_1.json @@ -0,0 +1,340 @@ +{ + "id": "STX_23533165_Patient_1", + "subject": { + "id": "STX_23533165_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001264", + "label": "Spastic diplegia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0031960", + "label": "Arm dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23533165_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23533165_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_DUmecCkdtOtNPPdrxKkwEqjPX", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1462-2A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127680155A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127680155", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23533165_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_23533165_Patient_2.json new file mode 100644 index 00000000..0e5a54e9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23533165_Patient_2.json @@ -0,0 +1,260 @@ +{ + "id": "STX_23533165_Patient_2", + "subject": { + "id": "STX_23533165_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0006829", + "label": "Severe muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23533165_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23533165_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_WOLdAPCXIaVCsxAQKuTCOXRKR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.444del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663219del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663218", + "ref": "AC", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T1266.json b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T1266.json new file mode 100644 index 00000000..3fbdb6b0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T1266.json @@ -0,0 +1,123 @@ +{ + "id": "STX_23708187_T1266", + "subject": { + "id": "STX_23708187_T1266" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_23708187_T1266", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23708187_T1266", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_XusoEWhdaDzbUbuloRzXolGLk", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1630G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682488G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682488", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T22595.json b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T22595.json new file mode 100644 index 00000000..1ed297fa --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T22595.json @@ -0,0 +1,123 @@ +{ + "id": "STX_23708187_T22595", + "subject": { + "id": "STX_23708187_T22595" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_23708187_T22595", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23708187_T22595", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_QofyiGdLjJTKDolPoxFwetUrW", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1157dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675850dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675847", + "ref": "A", + "alt": "AC" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T22856.json b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T22856.json new file mode 100644 index 00000000..ebbaeec5 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T22856.json @@ -0,0 +1,123 @@ +{ + "id": "STX_23708187_T22856", + "subject": { + "id": "STX_23708187_T22856" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_23708187_T22856", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23708187_T22856", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FjcHvxUUGwhKmnwOsIGlTqwhn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1060T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673211T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673211", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23122.json b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23122.json new file mode 100644 index 00000000..94db1591 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23122.json @@ -0,0 +1,123 @@ +{ + "id": "STX_23708187_T23122", + "subject": { + "id": "STX_23708187_T23122" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_23708187_T23122", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23708187_T23122", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23151.json b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23151.json new file mode 100644 index 00000000..39e36e38 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23151.json @@ -0,0 +1,123 @@ +{ + "id": "STX_23708187_T23151", + "subject": { + "id": "STX_23708187_T23151" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_23708187_T23151", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23708187_T23151", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_cNjwHACHQhZGvnyhrqvNUsvcM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.125C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653752C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653752", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23289.json b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23289.json new file mode 100644 index 00000000..a0758285 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23289.json @@ -0,0 +1,123 @@ +{ + "id": "STX_23708187_T23289", + "subject": { + "id": "STX_23708187_T23289" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_23708187_T23289", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23708187_T23289", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SkmnLditqzivDQKXPCZKaeEmI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_003165.6:c.1708=" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127684373=" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127684373", + "ref": "A", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23553.json b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23553.json new file mode 100644 index 00000000..bb766f70 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23708187_T23553.json @@ -0,0 +1,123 @@ +{ + "id": "STX_23708187_T23553", + "subject": { + "id": "STX_23708187_T23553" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_23708187_T23553", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23708187_T23553", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_NUpDzZkzMpfVyFJiHPrQgDmGC", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.238T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658443T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658443", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23934111_cu.json b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_cu.json new file mode 100644 index 00000000..d62020cc --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_cu.json @@ -0,0 +1,221 @@ +{ + "id": "STX_23934111_cu", + "subject": { + "id": "STX_23934111_cu" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23934111_cu", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23934111_cu", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_egmjNOaTVbgzAXsKZLOackxhM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1631G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682489G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682489", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23934111_dl.json b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_dl.json new file mode 100644 index 00000000..918a2252 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_dl.json @@ -0,0 +1,232 @@ +{ + "id": "STX_23934111_dl", + "subject": { + "id": "STX_23934111_dl" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002280", + "label": "Enlarged cisterna magna" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0010844", + "label": "EEG with multifocal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23934111_dl", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23934111_dl", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_CMSKDRMPhkzQugeouAwJuLxXT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1004C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672091C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672091", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23934111_ej.json b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_ej.json new file mode 100644 index 00000000..e17f608b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_ej.json @@ -0,0 +1,199 @@ +{ + "id": "STX_23934111_ej", + "subject": { + "id": "STX_23934111_ej" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23934111_ej", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23934111_ej", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nimzWypILMhFFUxqyznIWXDIS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23934111_fh.json b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_fh.json new file mode 100644 index 00000000..8842f1dc --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_fh.json @@ -0,0 +1,271 @@ +{ + "id": "STX_23934111_fh", + "subject": { + "id": "STX_23934111_fh" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002267", + "label": "Exaggerated startle response" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011191", + "label": "Unilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_23934111_fh", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23934111_fh", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_23934111_jk.json b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_jk.json new file mode 100644 index 00000000..d8cf0153 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_23934111_jk.json @@ -0,0 +1,177 @@ +{ + "id": "STX_23934111_jk", + "subject": { + "id": "STX_23934111_jk" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + } + }, + { + "type": { + "id": "HP:0010847", + "label": "EEG with spike-wave complexes (<2.5 Hz)" + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + } + }, + { + "type": { + "id": "HP:0012762", + "label": "Cerebral white matter atrophy" + } + }, + { + "type": { + "id": "HP:0002120", + "label": "Cerebral cortical atrophy" + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + } + ], + "interpretations": [ + { + "id": "STX_23934111_jk", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_23934111_jk", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_24095819_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_24095819_Patient_1.json new file mode 100644 index 00000000..1a133fc5 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_24095819_Patient_1.json @@ -0,0 +1,303 @@ +{ + "id": "STX_24095819_Patient_1", + "subject": { + "id": "STX_24095819_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0008972", + "label": "Decreased activity of mitochondrial respiratory chain" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001622", + "label": "Premature birth" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002098", + "label": "Respiratory distress" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0012016", + "label": "EEG with occipital focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002120", + "label": "Cerebral cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0100321", + "label": "Abnormality of the dentate nucleus" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_24095819_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_24095819_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_PrbjxTVFDEuSQhcsAnjxsIAcb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.585C>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127665253C>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127665253", + "ref": "C", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_24189369_Patient_7.json b/notebooks/STXBP1/input/PMID_35190816_STX_24189369_Patient_7.json new file mode 100644 index 00000000..69ca9df9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_24189369_Patient_7.json @@ -0,0 +1,226 @@ +{ + "id": "STX_24189369_Patient_7", + "subject": { + "id": "STX_24189369_Patient_7", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006913", + "label": "Frontal cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_24189369_Patient_7", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_24189369_Patient_7", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_eEUuQJuicuxlpRwjeQuxUhzNt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1130dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675823dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675822", + "ref": "G", + "alt": "GA" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_24315539_Patient.json b/notebooks/STXBP1/input/PMID_35190816_STX_24315539_Patient.json new file mode 100644 index 00000000..9f4697cf --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_24315539_Patient.json @@ -0,0 +1,193 @@ +{ + "id": "STX_24315539_Patient", + "subject": { + "id": "STX_24315539_Patient", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_24315539_Patient", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_24315539_Patient", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_24781210_Patient_9.json b/notebooks/STXBP1/input/PMID_35190816_STX_24781210_Patient_9.json new file mode 100644 index 00000000..53c7b493 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_24781210_Patient_9.json @@ -0,0 +1,210 @@ +{ + "id": "STX_24781210_Patient_9", + "subject": { + "id": "STX_24781210_Patient_9" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002120", + "label": "Cerebral cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007183", + "label": "Focal T2 hyperintense basal ganglia lesion" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_24781210_Patient_9", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_24781210_Patient_9", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25131622_Subject_71.json b/notebooks/STXBP1/input/PMID_35190816_STX_25131622_Subject_71.json new file mode 100644 index 00000000..0004fc67 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25131622_Subject_71.json @@ -0,0 +1,146 @@ +{ + "id": "STX_25131622_Subject_71", + "subject": { + "id": "STX_25131622_Subject_71", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0100021", + "label": "Cerebral palsy" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + } + ], + "interpretations": [ + { + "id": "STX_25131622_Subject_71", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25131622_Subject_71", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_tpZaoMPyUwPRuqPbKCHtMownp", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.795-1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668079G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668079", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25418441_case_report.json b/notebooks/STXBP1/input/PMID_35190816_STX_25418441_case_report.json new file mode 100644 index 00000000..16ca5e09 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25418441_case_report.json @@ -0,0 +1,314 @@ +{ + "id": "STX_25418441_case_report", + "subject": { + "id": "STX_25418441_case_report", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002322", + "label": "Resting tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002396", + "label": "Cogwheel rigidity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001300", + "label": "Parkinsonism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007034", + "label": "Generalized hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011923", + "label": "Decreased activity of mitochondrial complex I" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25418441_case_report", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25418441_case_report", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25497044_Patient_4.json b/notebooks/STXBP1/input/PMID_35190816_STX_25497044_Patient_4.json new file mode 100644 index 00000000..9a27a1b2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25497044_Patient_4.json @@ -0,0 +1,292 @@ +{ + "id": "STX_25497044_Patient_4", + "subject": { + "id": "STX_25497044_Patient_4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000154", + "label": "Wide mouth" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25497044_Patient_4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25497044_Patient_4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ZFsqaPObGOBRgwFpfLNfWZFie", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.901C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668186C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668186", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25497044_Patient_5.json b/notebooks/STXBP1/input/PMID_35190816_STX_25497044_Patient_5.json new file mode 100644 index 00000000..82d23bd7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25497044_Patient_5.json @@ -0,0 +1,226 @@ +{ + "id": "STX_25497044_Patient_5", + "subject": { + "id": "STX_25497044_Patient_5", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011407", + "label": "Proportionate tall stature" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000256", + "label": "Macrocephaly" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25497044_Patient_5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25497044_Patient_5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nimzWypILMhFFUxqyznIWXDIS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25533962_258242.json b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_258242.json new file mode 100644 index 00000000..b380e44f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_258242.json @@ -0,0 +1,237 @@ +{ + "id": "STX_25533962_258242", + "subject": { + "id": "STX_25533962_258242", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002002", + "label": "Deep philtrum" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002263", + "label": "Exaggerated cupid's bow" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000256", + "label": "Macrocephaly" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010529", + "label": "Echolalia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000272", + "label": "Malar flattening" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25533962_258242", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25533962_258242", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_giAmEGePKhetIIrVNaWHmvjFV", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.148dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653775dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653774", + "ref": "C", + "alt": "CA" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25533962_258815.json b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_258815.json new file mode 100644 index 00000000..dd7693a7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_258815.json @@ -0,0 +1,281 @@ +{ + "id": "STX_25533962_258815", + "subject": { + "id": "STX_25533962_258815", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P13Y0M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0000494", + "label": "Downslanted palpebral fissures" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0000272", + "label": "Malar flattening" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0000463", + "label": "Anteverted nares" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0000739", + "label": "Anxiety" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P156M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25533962_258815", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25533962_258815", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BYRqxXzlAtJGLikYfHgeDocAJ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.704G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666206G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666206", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25533962_260459.json b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_260459.json new file mode 100644 index 00000000..3e99fc7e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_260459.json @@ -0,0 +1,270 @@ +{ + "id": "STX_25533962_260459", + "subject": { + "id": "STX_25533962_260459", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001182", + "label": "Tapered finger" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25533962_260459", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25533962_260459", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_DTudEbWDmMkNFfcVWnlFFovKJ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.437_438del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663212_127663213del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663211", + "ref": "TCC", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25533962_261234.json b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_261234.json new file mode 100644 index 00000000..cc7bf332 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_261234.json @@ -0,0 +1,292 @@ +{ + "id": "STX_25533962_261234", + "subject": { + "id": "STX_25533962_261234", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P16Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0100543", + "label": "Cognitive impairment" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0001622", + "label": "Premature birth" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0003621", + "label": "Juvenile onset" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0001883", + "label": "Talipes" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0000023", + "label": "Inguinal hernia" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0001762", + "label": "Talipes equinovarus" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P180M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25533962_261234", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25533962_261234", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mYDZvDIdRJWmfebjzhqjFCnpa", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.778G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666280G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666280", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25533962_263903.json b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_263903.json new file mode 100644 index 00000000..c363ecfc --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25533962_263903.json @@ -0,0 +1,224 @@ +{ + "id": "STX_25533962_263903", + "subject": { + "id": "STX_25533962_263903", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001561", + "label": "Polyhydramnios" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0100023", + "label": "Recurrent hand flapping" + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0001620", + "label": "High pitched voice" + } + }, + { + "type": { + "id": "HP:0004879", + "label": "Intermittent hyperventilation" + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + } + }, + { + "type": { + "id": "HP:0002883", + "label": "Hyperventilation" + } + }, + { + "type": { + "id": "HP:0000736", + "label": "Short attention span" + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + } + }, + { + "type": { + "id": "HP:0002378", + "label": "Hand tremor" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + } + } + ], + "interpretations": [ + { + "id": "STX_25533962_263903", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25533962_263903", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IajhOGhGJnyLeckJOMGAWQrSu", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1099C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673250C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673250", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25631041_case_report.json b/notebooks/STXBP1/input/PMID_35190816_STX_25631041_case_report.json new file mode 100644 index 00000000..ea9de317 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25631041_case_report.json @@ -0,0 +1,237 @@ +{ + "id": "STX_25631041_case_report", + "subject": { + "id": "STX_25631041_case_report", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010553", + "label": "Oculogyric crisis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25631041_case_report", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25631041_case_report", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_OZwsIAtBbgQpoDdWZvZdqRjnn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1249+2T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675944T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675944", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25693842_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_25693842_Patient_1.json new file mode 100644 index 00000000..ec8c3abc --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25693842_Patient_1.json @@ -0,0 +1,160 @@ +{ + "id": "STX_25693842_Patient_1", + "subject": { + "id": "STX_25693842_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P18Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25693842_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25693842_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_krTFTtPUsUJwRqsynTVSOrgCQ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.734A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666236A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666236", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25693842_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_25693842_Patient_2.json new file mode 100644 index 00000000..10c93ec0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25693842_Patient_2.json @@ -0,0 +1,204 @@ +{ + "id": "STX_25693842_Patient_2", + "subject": { + "id": "STX_25693842_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011294", + "label": "EEG with frontal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010877", + "label": "Monocular strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003324", + "label": "Generalized muscle weakness" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000431", + "label": "Wide nasal bridge" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000286", + "label": "Epicanthus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25693842_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25693842_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_AJAjXPBRlnfOGduaNvHibVduB", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.754_755del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666256_127666257del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666254", + "ref": "CTA", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25818041_Patient_20.json b/notebooks/STXBP1/input/PMID_35190816_STX_25818041_Patient_20.json new file mode 100644 index 00000000..cfa211f4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25818041_Patient_20.json @@ -0,0 +1,164 @@ +{ + "id": "STX_25818041_Patient_20", + "subject": { + "id": "STX_25818041_Patient_20", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + } + }, + { + "type": { + "id": "HP:0010847", + "label": "EEG with spike-wave complexes (<2.5 Hz)" + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0000707", + "label": "Abnormality of the nervous system" + } + } + ], + "interpretations": [ + { + "id": "STX_25818041_Patient_20", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25818041_Patient_20", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_aXqxIHDdBNyePRIvXkFTqmxYk", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1614_1616del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682472_127682474del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682467", + "ref": "CTCA", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25818041_Patient_21.json b/notebooks/STXBP1/input/PMID_35190816_STX_25818041_Patient_21.json new file mode 100644 index 00000000..8dc82f04 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25818041_Patient_21.json @@ -0,0 +1,182 @@ +{ + "id": "STX_25818041_Patient_21", + "subject": { + "id": "STX_25818041_Patient_21", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010847", + "label": "EEG with spike-wave complexes (<2.5 Hz)" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0030890", + "label": "Hyperintensity of cerebral white matter on MRI" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25818041_Patient_21", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25818041_Patient_21", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ulyvYJpjbWKAIPVVmmOACZQRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.364C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661140C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661140", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25951140_Case_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_25951140_Case_2.json new file mode 100644 index 00000000..6b4320ec --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25951140_Case_2.json @@ -0,0 +1,248 @@ +{ + "id": "STX_25951140_Case_2", + "subject": { + "id": "STX_25951140_Case_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002493", + "label": "Upper motor neuron dysfunction" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100704", + "label": "Cerebral visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001601", + "label": "Laryngomalacia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001508", + "label": "Failure to thrive" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25951140_Case_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25951140_Case_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_REiEjydbbWmOkxbSEAlEpeOZE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.79del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651644del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651639", + "ref": "AG", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_25951140_Case_32.json b/notebooks/STXBP1/input/PMID_35190816_STX_25951140_Case_32.json new file mode 100644 index 00000000..ee8b7b5c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_25951140_Case_32.json @@ -0,0 +1,204 @@ +{ + "id": "STX_25951140_Case_32", + "subject": { + "id": "STX_25951140_Case_32", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_25951140_Case_32", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_25951140_Case_32", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VEjGskFSZdmFHjxHDqTvcfrTQ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.795-2A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668078A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668078", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26212315_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_26212315_Patient_1.json new file mode 100644 index 00000000..f6c2091b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26212315_Patient_1.json @@ -0,0 +1,324 @@ +{ + "id": "STX_26212315_Patient_1", + "subject": { + "id": "STX_26212315_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011169", + "label": "Generalized clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010848", + "label": "EEG with spike-wave complexes (2.5-3.5 Hz)" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002317", + "label": "Unsteady gait" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002406", + "label": "Limb dysmetria" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26212315_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26212315_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_CJTSBDWPgORuuxaLuGYaqWKXO", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.922A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127669917A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127669917", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26350204_UK10K_FINDWGA5411254.json b/notebooks/STXBP1/input/PMID_35190816_STX_26350204_UK10K_FINDWGA5411254.json new file mode 100644 index 00000000..43ca2fbe --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26350204_UK10K_FINDWGA5411254.json @@ -0,0 +1,117 @@ +{ + "id": "STX_26350204_UK10K_FINDWGA5411254", + "subject": { + "id": "STX_26350204_UK10K_FINDWGA5411254" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + } + ], + "interpretations": [ + { + "id": "STX_26350204_UK10K_FINDWGA5411254", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26350204_UK10K_FINDWGA5411254", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SZLXvGqgYStVezgpegfliFyzC", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_1.json new file mode 100644 index 00000000..76f159f8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_1.json @@ -0,0 +1,248 @@ +{ + "id": "STX_26384463_Patient_1", + "subject": { + "id": "STX_26384463_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001622", + "label": "Premature birth" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26384463_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26384463_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_CNTaePicQzWgvmESGDkohfKRZ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.170-12_173del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658363_127658378del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658357", + "ref": "GGTTGTTTTGTTGTCTA", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_2.json new file mode 100644 index 00000000..f28273ae --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_2.json @@ -0,0 +1,193 @@ +{ + "id": "STX_26384463_Patient_2", + "subject": { + "id": "STX_26384463_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26384463_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26384463_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_xzzNSNmtBXYfbRcflWzajaSYX", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.663+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127665332G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127665332", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_3.json new file mode 100644 index 00000000..222687b0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_3.json @@ -0,0 +1,226 @@ +{ + "id": "STX_26384463_Patient_3", + "subject": { + "id": "STX_26384463_Patient_3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011193", + "label": "EEG with focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003429", + "label": "CNS hypomyelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26384463_Patient_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26384463_Patient_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_bdGznjQbFbENNQFBuSixKmqpT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1303G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676697G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676697", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_4.json b/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_4.json new file mode 100644 index 00000000..78daa1f4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26384463_Patient_4.json @@ -0,0 +1,193 @@ +{ + "id": "STX_26384463_Patient_4", + "subject": { + "id": "STX_26384463_Patient_4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26384463_Patient_4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26384463_Patient_4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_cAzorSChjzKddjqPnVaFqVsYt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1347del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676741del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676738", + "ref": "GC", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_1.json new file mode 100644 index 00000000..57d95043 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_1.json @@ -0,0 +1,237 @@ +{ + "id": "STX_26514728_Patient_1", + "subject": { + "id": "STX_26514728_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RncSNkjoxMThEKzGacNKBNkyc", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.16del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127612419del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127612417", + "ref": "GC", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_10.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_10.json new file mode 100644 index 00000000..783b3461 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_10.json @@ -0,0 +1,270 @@ +{ + "id": "STX_26514728_Patient_10", + "subject": { + "id": "STX_26514728_Patient_10", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_10", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_10", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qGyqRZjflYUOrTBgwBzHrrodH", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.734A>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666236A>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666236", + "ref": "A", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_11.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_11.json new file mode 100644 index 00000000..bbf4f172 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_11.json @@ -0,0 +1,193 @@ +{ + "id": "STX_26514728_Patient_11", + "subject": { + "id": "STX_26514728_Patient_11", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_11", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_11", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ERjbdtZIqfcceoAKtQnZsrfme", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1095_1096del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673246_127673247del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673243", + "ref": "ACT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_12.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_12.json new file mode 100644 index 00000000..1af31008 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_12.json @@ -0,0 +1,226 @@ +{ + "id": "STX_26514728_Patient_12", + "subject": { + "id": "STX_26514728_Patient_12", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_12", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_12", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_hmALlIwdjPcQQIHeAgtqAIlBV", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1630G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682488G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682488", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_14.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_14.json new file mode 100644 index 00000000..9a19a0eb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_14.json @@ -0,0 +1,204 @@ +{ + "id": "STX_26514728_Patient_14", + "subject": { + "id": "STX_26514728_Patient_14", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_14", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_14", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FjcHvxUUGwhKmnwOsIGlTqwhn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1060T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673211T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673211", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_15.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_15.json new file mode 100644 index 00000000..5c14145c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_15.json @@ -0,0 +1,215 @@ +{ + "id": "STX_26514728_Patient_15", + "subject": { + "id": "STX_26514728_Patient_15", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_15", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_15", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FjcHvxUUGwhKmnwOsIGlTqwhn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1060T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673211T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673211", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_16.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_16.json new file mode 100644 index 00000000..0981bcd1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_16.json @@ -0,0 +1,215 @@ +{ + "id": "STX_26514728_Patient_16", + "subject": { + "id": "STX_26514728_Patient_16", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P16Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_16", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_16", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_17.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_17.json new file mode 100644 index 00000000..c80946c4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_17.json @@ -0,0 +1,270 @@ +{ + "id": "STX_26514728_Patient_17", + "subject": { + "id": "STX_26514728_Patient_17", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0006808", + "label": "Cerebral hypomyelination" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_17", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_17", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_18.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_18.json new file mode 100644 index 00000000..f50b2f91 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_18.json @@ -0,0 +1,193 @@ +{ + "id": "STX_26514728_Patient_18", + "subject": { + "id": "STX_26514728_Patient_18", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006808", + "label": "Cerebral hypomyelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_18", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_18", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_UphAlsZpmphWQekSPAuIWWAEs", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.83G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651648G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651648", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_19.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_19.json new file mode 100644 index 00000000..e5b8c702 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_19.json @@ -0,0 +1,204 @@ +{ + "id": "STX_26514728_Patient_19", + "subject": { + "id": "STX_26514728_Patient_19", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_19", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_19", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_22.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_22.json new file mode 100644 index 00000000..f6793617 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_22.json @@ -0,0 +1,237 @@ +{ + "id": "STX_26514728_Patient_22", + "subject": { + "id": "STX_26514728_Patient_22", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_22", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_22", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_23.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_23.json new file mode 100644 index 00000000..3942c608 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_23.json @@ -0,0 +1,215 @@ +{ + "id": "STX_26514728_Patient_23", + "subject": { + "id": "STX_26514728_Patient_23", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P18Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_23", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_23", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_xptPZSlMIzzobPGPHYdngOZyf", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.661G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127665329G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127665329", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_24.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_24.json new file mode 100644 index 00000000..3ccb8977 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_24.json @@ -0,0 +1,215 @@ +{ + "id": "STX_26514728_Patient_24", + "subject": { + "id": "STX_26514728_Patient_24", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_24", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_24", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_WMtXvSbRouGtrVHfLnjxZRLJr", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.771dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666273dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666272", + "ref": "T", + "alt": "TG" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_4.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_4.json new file mode 100644 index 00000000..bcb40265 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_4.json @@ -0,0 +1,182 @@ +{ + "id": "STX_26514728_Patient_4", + "subject": { + "id": "STX_26514728_Patient_4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VEjGskFSZdmFHjxHDqTvcfrTQ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.795-2A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668078A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668078", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_8.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_8.json new file mode 100644 index 00000000..0f115be6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_8.json @@ -0,0 +1,237 @@ +{ + "id": "STX_26514728_Patient_8", + "subject": { + "id": "STX_26514728_Patient_8", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_8", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_8", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_yUoKxIEdUeeWMqaRQJvwxyXFM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.308A>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660091A>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660091", + "ref": "A", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_9.json b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_9.json new file mode 100644 index 00000000..f7abf269 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26514728_Patient_9.json @@ -0,0 +1,215 @@ +{ + "id": "STX_26514728_Patient_9", + "subject": { + "id": "STX_26514728_Patient_9", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26514728_Patient_9", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26514728_Patient_9", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26633542_No_ID_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_26633542_No_ID_2.json new file mode 100644 index 00000000..62d57104 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26633542_No_ID_2.json @@ -0,0 +1,117 @@ +{ + "id": "STX_26633542_No_ID_2", + "subject": { + "id": "STX_26633542_No_ID_2" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000707", + "label": "Abnormality of the nervous system" + } + } + ], + "interpretations": [ + { + "id": "STX_26633542_No_ID_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26633542_No_ID_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qAYchdPkpJqgyYaFuhPEUdmCW", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1607G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682465G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682465", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26648591_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_26648591_Patient_2.json new file mode 100644 index 00000000..7f3b1a6f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26648591_Patient_2.json @@ -0,0 +1,281 @@ +{ + "id": "STX_26648591_Patient_2", + "subject": { + "id": "STX_26648591_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000253", + "label": "Progressive microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000490", + "label": "Deeply set eye" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001007", + "label": "Hirsutism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011228", + "label": "Horizontal eyebrow" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26648591_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26648591_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_tToXJopkrBRuyPbTMpLUyhgrL", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.296A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660079A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660079", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26648591_Patient_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_26648591_Patient_3.json new file mode 100644 index 00000000..423b3935 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26648591_Patient_3.json @@ -0,0 +1,292 @@ +{ + "id": "STX_26648591_Patient_3", + "subject": { + "id": "STX_26648591_Patient_3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000496", + "label": "Abnormality of eye movement" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000253", + "label": "Progressive microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002120", + "label": "Cerebral cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26648591_Patient_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26648591_Patient_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26648591_Patient_4.json b/notebooks/STXBP1/input/PMID_35190816_STX_26648591_Patient_4.json new file mode 100644 index 00000000..1d818ad1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26648591_Patient_4.json @@ -0,0 +1,281 @@ +{ + "id": "STX_26648591_Patient_4", + "subject": { + "id": "STX_26648591_Patient_4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011166", + "label": "Focal myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003819", + "label": "Death in childhood" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000253", + "label": "Progressive microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26648591_Patient_4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26648591_Patient_4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_rdfZnmXHXDtDzocEeFfIOlecA", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.236C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658441C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658441", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26740508_Proband_14.json b/notebooks/STXBP1/input/PMID_35190816_STX_26740508_Proband_14.json new file mode 100644 index 00000000..7e0f0871 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26740508_Proband_14.json @@ -0,0 +1,237 @@ +{ + "id": "STX_26740508_Proband_14", + "subject": { + "id": "STX_26740508_Proband_14", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0004879", + "label": "Intermittent hyperventilation" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0007021", + "label": "Pain insensitivity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26740508_Proband_14", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26740508_Proband_14", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_iTOhgHtruRYJKGxfBuqTIBgID", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.538T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663313T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663313", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_1.json new file mode 100644 index 00000000..2b97b00e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_1.json @@ -0,0 +1,347 @@ +{ + "id": "STX_26865513_Patient_1", + "subject": { + "id": "STX_26865513_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P13Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002067", + "label": "Bradykinesia" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0001347", + "label": "Hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0011448", + "label": "Ankle clonus" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HUBziENxKuhnEFMWmpZUsknwX", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1022T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672109T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672109", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_10.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_10.json new file mode 100644 index 00000000..21130feb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_10.json @@ -0,0 +1,435 @@ +{ + "id": "STX_26865513_Patient_10", + "subject": { + "id": "STX_26865513_Patient_10", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011421", + "label": "Death in adolescence" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031475", + "label": "Nonconvulsive status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010844", + "label": "EEG with multifocal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001336", + "label": "Myoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001347", + "label": "Hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003487", + "label": "Babinski sign" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000720", + "label": "Mood swings" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001747", + "label": "Accessory spleen" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012583", + "label": "Unilateral renal hypoplasia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003186", + "label": "Inverted nipples" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0030084", + "label": "Clinodactyly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000580", + "label": "Pigmentary retinopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_10", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_10", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_11.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_11.json new file mode 100644 index 00000000..6e3ae0a7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_11.json @@ -0,0 +1,281 @@ +{ + "id": "STX_26865513_Patient_11", + "subject": { + "id": "STX_26865513_Patient_11", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001622", + "label": "Premature birth" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0002643", + "label": "Neonatal respiratory distress" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0007270", + "label": "Atypical absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + }, + { + "type": { + "id": "HP:0000316", + "label": "Hypertelorism" + }, + "onset": { + "age": { + "iso8601duration": "P22M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_11", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_11", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GWSekcvKxLiCvHchpvnpmFzMt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1438C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_12.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_12.json new file mode 100644 index 00000000..143b8cdd --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_12.json @@ -0,0 +1,325 @@ +{ + "id": "STX_26865513_Patient_12", + "subject": { + "id": "STX_26865513_Patient_12", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P20Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011193", + "label": "EEG with focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011290", + "label": "EEG with frontal sharp slow waves" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002322", + "label": "Resting tremor" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0007311", + "label": "Short stepped shuffling gait" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002067", + "label": "Bradykinesia" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002063", + "label": "Rigidity" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_12", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_12", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ulyvYJpjbWKAIPVVmmOACZQRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.364C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661140C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661140", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_13.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_13.json new file mode 100644 index 00000000..c6bd582c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_13.json @@ -0,0 +1,324 @@ +{ + "id": "STX_26865513_Patient_13", + "subject": { + "id": "STX_26865513_Patient_13", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_13", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_13", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_OepXIbyXPTBKVORWJWdSGreez", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1359+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676754G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676754", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_15.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_15.json new file mode 100644 index 00000000..77d2e615 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_15.json @@ -0,0 +1,164 @@ +{ + "id": "STX_26865513_Patient_15", + "subject": { + "id": "STX_26865513_Patient_15", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + } + }, + { + "type": { + "id": "HP:0000737", + "label": "Irritability" + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_15", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_15", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ulyvYJpjbWKAIPVVmmOACZQRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.364C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661140C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661140", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_16.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_16.json new file mode 100644 index 00000000..c08af251 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_16.json @@ -0,0 +1,380 @@ +{ + "id": "STX_26865513_Patient_16", + "subject": { + "id": "STX_26865513_Patient_16", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006794", + "label": "Loss of ability to walk in first decade" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002371", + "label": "Loss of speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007332", + "label": "Hemifacial seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011154", + "label": "Focal autonomic seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010847", + "label": "EEG with spike-wave complexes (<2.5 Hz)" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002305", + "label": "Athetosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002072", + "label": "Chorea" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002172", + "label": "Postural instability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_16", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_16", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_fvuAHpCwRABdNZLhIBMzUqNzd", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.430-1G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663204G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663204", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_19.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_19.json new file mode 100644 index 00000000..a67a8dc0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_19.json @@ -0,0 +1,226 @@ +{ + "id": "STX_26865513_Patient_19", + "subject": { + "id": "STX_26865513_Patient_19", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y5M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011173", + "label": "Hypokinetic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011296", + "label": "EEG with temporal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002317", + "label": "Unsteady gait" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_19", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_19", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_OpGqNysRLnmXUZTwfUGkLYpIz", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_003165.6:c.1723C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127684388C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127684388", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_20.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_20.json new file mode 100644 index 00000000..3af62a06 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_20.json @@ -0,0 +1,314 @@ +{ + "id": "STX_26865513_Patient_20", + "subject": { + "id": "STX_26865513_Patient_20", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P13Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011289", + "label": "EEG with temporal sharp slow waves" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002179", + "label": "Opisthotonus" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0006808", + "label": "Cerebral hypomyelination" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0004879", + "label": "Intermittent hyperventilation" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_20", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_20", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_KozJobyKqTcdCKypeDpicckrm", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1548_1559delinsAT" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682406_127682417delinsAT" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682406", + "ref": "CGCCCGCTATGG", + "alt": "AT" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_22.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_22.json new file mode 100644 index 00000000..07d75c5d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_22.json @@ -0,0 +1,270 @@ +{ + "id": "STX_26865513_Patient_22", + "subject": { + "id": "STX_26865513_Patient_22", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002141", + "label": "Gait imbalance" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0004879", + "label": "Intermittent hyperventilation" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002104", + "label": "Apnea" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_22", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_22", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_aSmruwXvkRJhtjTLwZNtkjvNA", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.795-2A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668078A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668078", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_23.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_23.json new file mode 100644 index 00000000..b123012a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_23.json @@ -0,0 +1,248 @@ +{ + "id": "STX_26865513_Patient_23", + "subject": { + "id": "STX_26865513_Patient_23", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0007270", + "label": "Atypical absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P35M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_23", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_23", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wuoxtXYYDEomzFStIKbjaYMor", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.388_389del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661164_127661165del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661161", + "ref": "ACT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_25.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_25.json new file mode 100644 index 00000000..0b4d1f43 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_25.json @@ -0,0 +1,281 @@ +{ + "id": "STX_26865513_Patient_25", + "subject": { + "id": "STX_26865513_Patient_25", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P18Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0003621", + "label": "Juvenile onset" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0011174", + "label": "Hyperkinetic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_25", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_25", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_26.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_26.json new file mode 100644 index 00000000..2b4929c4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_26.json @@ -0,0 +1,248 @@ +{ + "id": "STX_26865513_Patient_26", + "subject": { + "id": "STX_26865513_Patient_26", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_26", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_26", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_27.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_27.json new file mode 100644 index 00000000..b1c1d819 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_27.json @@ -0,0 +1,281 @@ +{ + "id": "STX_26865513_Patient_27", + "subject": { + "id": "STX_26865513_Patient_27", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011215", + "label": "Hemihypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012105", + "label": "Occipital cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002281", + "label": "Gray matter heterotopias" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_27", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_27", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_28.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_28.json new file mode 100644 index 00000000..fa539d4a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_28.json @@ -0,0 +1,276 @@ +{ + "id": "STX_26865513_Patient_28", + "subject": { + "id": "STX_26865513_Patient_28", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0000657", + "label": "Oculomotor apraxia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0002104", + "label": "Apnea" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_28", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_28", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mkCyTEJnVODOAFXLylEuXgXfW", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1461G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678532G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678532", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_29.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_29.json new file mode 100644 index 00000000..d747c7c1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_29.json @@ -0,0 +1,170 @@ +{ + "id": "STX_26865513_Patient_29", + "subject": { + "id": "STX_26865513_Patient_29", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + } + }, + { + "type": { + "id": "HP:0002072", + "label": "Chorea" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_29", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_29", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_pVpKmghujTsnsZuBeOYTAFfGF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.17T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127612420T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127612420", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_30.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_30.json new file mode 100644 index 00000000..528be3e0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_30.json @@ -0,0 +1,468 @@ +{ + "id": "STX_26865513_Patient_30", + "subject": { + "id": "STX_26865513_Patient_30", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P18Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0006813", + "label": "Hemiclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002072", + "label": "Chorea" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002487", + "label": "Hyperkinesis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002378", + "label": "Hand tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002061", + "label": "Lower limb spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0410031", + "label": "Submucous cleft of soft and hard palate" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000193", + "label": "Bifid uvula" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_30", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_30", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SSPbBXNUzuWGbXgwJkYqnCYJj", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.518C>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663293C>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663293", + "ref": "C", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_31.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_31.json new file mode 100644 index 00000000..7a083c92 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_31.json @@ -0,0 +1,259 @@ +{ + "id": "STX_26865513_Patient_31", + "subject": { + "id": "STX_26865513_Patient_31", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P56Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0007010", + "label": "Poor fine motor coordination" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0100710", + "label": "Impulsivity" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0002808", + "label": "Kyphosis" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + }, + { + "type": { + "id": "HP:0000470", + "label": "Short neck" + }, + "resolution": { + "age": { + "iso8601duration": "P672M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_31", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_31", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_rvyfYjNaqDUSCfFgUXFaVDkzc", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1110+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673262G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673262", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_32.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_32.json new file mode 100644 index 00000000..896ec8a2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_32.json @@ -0,0 +1,228 @@ +{ + "id": "STX_26865513_Patient_32", + "subject": { + "id": "STX_26865513_Patient_32", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_32", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_32", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nXTrmAGeBKXZurHMTjUpEdxTd", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.902+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668188G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668188", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_33.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_33.json new file mode 100644 index 00000000..d5022672 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_33.json @@ -0,0 +1,325 @@ +{ + "id": "STX_26865513_Patient_33", + "subject": { + "id": "STX_26865513_Patient_33", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P14Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002179", + "label": "Opisthotonus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012172", + "label": "Stereotypical body rocking" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_33", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_33", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IBDsgBXBSBEbcnvGcZlddYQiF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.107T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653734T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653734", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_34.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_34.json new file mode 100644 index 00000000..2d3edeaf --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_34.json @@ -0,0 +1,248 @@ +{ + "id": "STX_26865513_Patient_34", + "subject": { + "id": "STX_26865513_Patient_34", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_34", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_34", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_cVEQovEcwDGprjXahpQrJUMOc", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1565G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682423G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682423", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_36.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_36.json new file mode 100644 index 00000000..6a37d26d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_36.json @@ -0,0 +1,436 @@ +{ + "id": "STX_26865513_Patient_36", + "subject": { + "id": "STX_26865513_Patient_36", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011166", + "label": "Focal myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0006813", + "label": "Hemiclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002172", + "label": "Postural instability" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0100704", + "label": "Cerebral visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000540", + "label": "Hypermetropia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000565", + "label": "Esotropia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P12M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_36", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_36", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FeZKmZDGpxGBpUSqTdzULWzWd", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1672del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682530del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682527", + "ref": "AC", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_37.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_37.json new file mode 100644 index 00000000..86bfdd92 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_37.json @@ -0,0 +1,259 @@ +{ + "id": "STX_26865513_Patient_37", + "subject": { + "id": "STX_26865513_Patient_37", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P24Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0004305", + "label": "Involuntary movements" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0006794", + "label": "Loss of ability to walk in first decade" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0100704", + "label": "Cerebral visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_37", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_37", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_uNNGBbHCDzvRPyZlYMBGlxpim", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1652G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682510G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682510", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_38.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_38.json new file mode 100644 index 00000000..68c03934 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_38.json @@ -0,0 +1,356 @@ +{ + "id": "STX_26865513_Patient_38", + "subject": { + "id": "STX_26865513_Patient_38", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001382", + "label": "Joint hypermobility" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0032046", + "label": "Focal cortical dysplasia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000248", + "label": "Brachycephaly" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0020049", + "label": "Exodeviation" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_38", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_38", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YIjeVYMuexUuafFlOVNIlIuHD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.579-2A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127665245A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127665245", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_40.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_40.json new file mode 100644 index 00000000..661794c7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_40.json @@ -0,0 +1,314 @@ +{ + "id": "STX_26865513_Patient_40", + "subject": { + "id": "STX_26865513_Patient_40", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001583", + "label": "Rotary nystagmus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0005484", + "label": "Postnatal microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_40", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_40", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_42.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_42.json new file mode 100644 index 00000000..ae6bc24a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_42.json @@ -0,0 +1,420 @@ +{ + "id": "STX_26865513_Patient_42", + "subject": { + "id": "STX_26865513_Patient_42", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0011293", + "label": "EEG with central sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0011296", + "label": "EEG with temporal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002070", + "label": "Limb ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002599", + "label": "Head titubation" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0001347", + "label": "Hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0000248", + "label": "Brachycephaly" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0003202", + "label": "Skeletal muscle atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0000826", + "label": "Precocious puberty" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P96M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_42", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_42", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_43.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_43.json new file mode 100644 index 00000000..94c6fc30 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_43.json @@ -0,0 +1,468 @@ +{ + "id": "STX_26865513_Patient_43", + "subject": { + "id": "STX_26865513_Patient_43", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0006913", + "label": "Frontal cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0000126", + "label": "Hydronephrosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0008751", + "label": "Laryngeal cleft" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0004691", + "label": "2-3 toe syndactyly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0000248", + "label": "Brachycephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0000337", + "label": "Broad forehead" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0005469", + "label": "Flat occiput" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0000218", + "label": "High palate" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0000411", + "label": "Protruding ear" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0000378", + "label": "Cupped ear" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0010720", + "label": "Abnormal hair pattern" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_43", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_43", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_UokeFolpoxIrEiIlGvEAKimOE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_44.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_44.json new file mode 100644 index 00000000..e53f182b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_44.json @@ -0,0 +1,188 @@ +{ + "id": "STX_26865513_Patient_44", + "subject": { + "id": "STX_26865513_Patient_44", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + } + }, + { + "type": { + "id": "HP:0002072", + "label": "Chorea" + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0001348", + "label": "Brisk reflexes" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + } + }, + { + "type": { + "id": "HP:0002171", + "label": "Gliosis" + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_44", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_44", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ULQMOztosswhwKsTbktySfXov", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_45.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_45.json new file mode 100644 index 00000000..513e3d51 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_45.json @@ -0,0 +1,206 @@ +{ + "id": "STX_26865513_Patient_45", + "subject": { + "id": "STX_26865513_Patient_45", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + } + }, + { + "type": { + "id": "HP:0002346", + "label": "Head tremor" + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + } + }, + { + "type": { + "id": "HP:0000720", + "label": "Mood swings" + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_45", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_45", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_tpZaoMPyUwPRuqPbKCHtMownp", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.795-1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668079G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668079", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_7.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_7.json new file mode 100644 index 00000000..f37e3060 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_7.json @@ -0,0 +1,404 @@ +{ + "id": "STX_26865513_Patient_7", + "subject": { + "id": "STX_26865513_Patient_7", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0005949", + "label": "Apneic episodes in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0012016", + "label": "EEG with occipital focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002063", + "label": "Rigidity" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0025235", + "label": "Non-rapid eye movement parasomnia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002171", + "label": "Gliosis" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002280", + "label": "Enlarged cisterna magna" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_7", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_7", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_9.json b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_9.json new file mode 100644 index 00000000..126f17d0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26865513_Patient_9.json @@ -0,0 +1,336 @@ +{ + "id": "STX_26865513_Patient_9", + "subject": { + "id": "STX_26865513_Patient_9", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001763", + "label": "Pes planus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003307", + "label": "Hyperlordosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001347", + "label": "Hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000253", + "label": "Progressive microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26865513_Patient_9", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26865513_Patient_9", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IajhOGhGJnyLeckJOMGAWQrSu", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1099C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673250C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673250", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_62.json b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_62.json new file mode 100644 index 00000000..d11c51c3 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_62.json @@ -0,0 +1,144 @@ +{ + "id": "STX_26993267_Case_62", + "subject": { + "id": "STX_26993267_Case_62" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26993267_Case_62", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26993267_Case_62", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_AowaWDMVivdfYHDUZNbidlDTr", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.37+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127612441G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127612441", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_63.json b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_63.json new file mode 100644 index 00000000..34435a8e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_63.json @@ -0,0 +1,123 @@ +{ + "id": "STX_26993267_Case_63", + "subject": { + "id": "STX_26993267_Case_63" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_26993267_Case_63", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26993267_Case_63", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_TOyEizZYaZhmjZUVBiOwRyGwb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.842T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668127T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668127", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_64.json b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_64.json new file mode 100644 index 00000000..2d25fed6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_64.json @@ -0,0 +1,135 @@ +{ + "id": "STX_26993267_Case_64", + "subject": { + "id": "STX_26993267_Case_64" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + } + } + ], + "interpretations": [ + { + "id": "STX_26993267_Case_64", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26993267_Case_64", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_65.json b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_65.json new file mode 100644 index 00000000..b4006942 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_65.json @@ -0,0 +1,166 @@ +{ + "id": "STX_26993267_Case_65", + "subject": { + "id": "STX_26993267_Case_65" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26993267_Case_65", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26993267_Case_65", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mMCNsUWJMHtUXrAZmhDPOWLBr", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1019_1020del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672106_127672107del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672103", + "ref": "AAG", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_66.json b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_66.json new file mode 100644 index 00000000..dba26561 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_26993267_Case_66.json @@ -0,0 +1,166 @@ +{ + "id": "STX_26993267_Case_66", + "subject": { + "id": "STX_26993267_Case_66" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_26993267_Case_66", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_26993267_Case_66", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RyJsznDXtxyGHrWLwBOYoIFPL", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1249+1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675943G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675943", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27069701_case_report.json b/notebooks/STXBP1/input/PMID_35190816_STX_27069701_case_report.json new file mode 100644 index 00000000..3329b0f6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27069701_case_report.json @@ -0,0 +1,369 @@ +{ + "id": "STX_27069701_case_report", + "subject": { + "id": "STX_27069701_case_report", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002131", + "label": "Episodic ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002322", + "label": "Resting tremor" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002371", + "label": "Loss of speech" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002151", + "label": "Increased serum lactate" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0003542", + "label": "Increased serum pyruvate" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0010747", + "label": "Medial flaring of the eyebrow" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011231", + "label": "Prominent eyelashes" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011448", + "label": "Ankle clonus" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_27069701_case_report", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27069701_case_report", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27159321_LD_0358.json b/notebooks/STXBP1/input/PMID_35190816_STX_27159321_LD_0358.json new file mode 100644 index 00000000..64425367 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27159321_LD_0358.json @@ -0,0 +1,193 @@ +{ + "id": "STX_27159321_LD_0358", + "subject": { + "id": "STX_27159321_LD_0358", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000639", + "label": "Nystagmus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0030890", + "label": "Hyperintensity of cerebral white matter on MRI" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_27159321_LD_0358", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27159321_LD_0358", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IajhOGhGJnyLeckJOMGAWQrSu", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1099C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673250C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673250", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27171548_100146.json b/notebooks/STXBP1/input/PMID_35190816_STX_27171548_100146.json new file mode 100644 index 00000000..c70f455b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27171548_100146.json @@ -0,0 +1,182 @@ +{ + "id": "STX_27171548_100146", + "subject": { + "id": "STX_27171548_100146", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P21Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + } + }, + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + } + }, + { + "type": { + "id": "HP:0005957", + "label": "Breathing dysregulation" + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + } + }, + { + "type": { + "id": "HP:0007328", + "label": "Impaired pain sensation" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + } + ], + "interpretations": [ + { + "id": "STX_27171548_100146", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27171548_100146", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27184330_Patient_III.json b/notebooks/STXBP1/input/PMID_35190816_STX_27184330_Patient_III.json new file mode 100644 index 00000000..3d3c04df --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27184330_Patient_III.json @@ -0,0 +1,176 @@ +{ + "id": "STX_27184330_Patient_III", + "subject": { + "id": "STX_27184330_Patient_III", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0000720", + "label": "Mood swings" + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + } + }, + { + "type": { + "id": "HP:0004324", + "label": "Increased body weight" + } + }, + { + "type": { + "id": "HP:0001548", + "label": "Overgrowth" + } + } + ], + "interpretations": [ + { + "id": "STX_27184330_Patient_III", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27184330_Patient_III", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27734276_Patient_9.json b/notebooks/STXBP1/input/PMID_35190816_STX_27734276_Patient_9.json new file mode 100644 index 00000000..5ecf2feb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27734276_Patient_9.json @@ -0,0 +1,248 @@ +{ + "id": "STX_27734276_Patient_9", + "subject": { + "id": "STX_27734276_Patient_9", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011169", + "label": "Generalized clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031986", + "label": "Polyminimyoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0030891", + "label": "Periventricular white matter hyperdensities" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_27734276_Patient_9", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27734276_Patient_9", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qDWFXuMzwOlsTRrCXuiTmnVvP", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1105G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673256G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673256", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27779742_123.json b/notebooks/STXBP1/input/PMID_35190816_STX_27779742_123.json new file mode 100644 index 00000000..cad8b81d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27779742_123.json @@ -0,0 +1,135 @@ +{ + "id": "STX_27779742_123", + "subject": { + "id": "STX_27779742_123" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + } + } + ], + "interpretations": [ + { + "id": "STX_27779742_123", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27779742_123", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27779742_131.json b/notebooks/STXBP1/input/PMID_35190816_STX_27779742_131.json new file mode 100644 index 00000000..06301ca0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27779742_131.json @@ -0,0 +1,135 @@ +{ + "id": "STX_27779742_131", + "subject": { + "id": "STX_27779742_131" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + } + } + ], + "interpretations": [ + { + "id": "STX_27779742_131", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27779742_131", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VWolthRtqPZtHdBOfgcfqgLeL", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27779742_60.json b/notebooks/STXBP1/input/PMID_35190816_STX_27779742_60.json new file mode 100644 index 00000000..760ca7c8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27779742_60.json @@ -0,0 +1,135 @@ +{ + "id": "STX_27779742_60", + "subject": { + "id": "STX_27779742_60" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + } + } + ], + "interpretations": [ + { + "id": "STX_27779742_60", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27779742_60", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27779742_WJL.json b/notebooks/STXBP1/input/PMID_35190816_STX_27779742_WJL.json new file mode 100644 index 00000000..a44849d0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27779742_WJL.json @@ -0,0 +1,135 @@ +{ + "id": "STX_27779742_WJL", + "subject": { + "id": "STX_27779742_WJL" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + } + } + ], + "interpretations": [ + { + "id": "STX_27779742_WJL", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27779742_WJL", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_DNIMaZdNNROeibgOcZocKTVnx", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1661A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682519A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682519", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27864847_017P.json b/notebooks/STXBP1/input/PMID_35190816_STX_27864847_017P.json new file mode 100644 index 00000000..39cb5bd0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27864847_017P.json @@ -0,0 +1,160 @@ +{ + "id": "STX_27864847_017P", + "subject": { + "id": "STX_27864847_017P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_27864847_017P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27864847_017P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_iSWBdLTYWfoszZChItzNGQmIy", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.57_59del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651622_127651624del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651621", + "ref": "TAAA", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_27864847_2138P.json b/notebooks/STXBP1/input/PMID_35190816_STX_27864847_2138P.json new file mode 100644 index 00000000..b0ddc85d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_27864847_2138P.json @@ -0,0 +1,149 @@ +{ + "id": "STX_27864847_2138P", + "subject": { + "id": "STX_27864847_2138P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_27864847_2138P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_27864847_2138P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_cVEQovEcwDGprjXahpQrJUMOc", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1565G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682423G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682423", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28074849_S163.json b/notebooks/STXBP1/input/PMID_35190816_STX_28074849_S163.json new file mode 100644 index 00000000..9d31fcc8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28074849_S163.json @@ -0,0 +1,182 @@ +{ + "id": "STX_28074849_S163", + "subject": { + "id": "STX_28074849_S163", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_28074849_S163", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28074849_S163", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JoLZcbEWkfGMZZYpIzqpHlqOY", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.54del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651619del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651618", + "ref": "TG", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28387369_C0108.json b/notebooks/STXBP1/input/PMID_35190816_STX_28387369_C0108.json new file mode 100644 index 00000000..e37699a7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28387369_C0108.json @@ -0,0 +1,204 @@ +{ + "id": "STX_28387369_C0108", + "subject": { + "id": "STX_28387369_C0108", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0100702", + "label": "Arachnoid cyst" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_28387369_C0108", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28387369_C0108", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28387369_R1007.json b/notebooks/STXBP1/input/PMID_35190816_STX_28387369_R1007.json new file mode 100644 index 00000000..71922661 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28387369_R1007.json @@ -0,0 +1,182 @@ +{ + "id": "STX_28387369_R1007", + "subject": { + "id": "STX_28387369_R1007", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002119", + "label": "Ventriculomegaly" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_28387369_R1007", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28387369_R1007", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28708303_Patient_55.json b/notebooks/STXBP1/input/PMID_35190816_STX_28708303_Patient_55.json new file mode 100644 index 00000000..fa5e5138 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28708303_Patient_55.json @@ -0,0 +1,122 @@ +{ + "id": "STX_28708303_Patient_55", + "subject": { + "id": "STX_28708303_Patient_55", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + } + } + ], + "interpretations": [ + { + "id": "STX_28708303_Patient_55", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28708303_Patient_55", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mjPfVTJDfrhsnmhXTnAlADPjS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1706C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127690778C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127690778", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28708303_Patient_56.json b/notebooks/STXBP1/input/PMID_35190816_STX_28708303_Patient_56.json new file mode 100644 index 00000000..eefe2855 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28708303_Patient_56.json @@ -0,0 +1,140 @@ +{ + "id": "STX_28708303_Patient_56", + "subject": { + "id": "STX_28708303_Patient_56", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P17Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0004324", + "label": "Increased body weight" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0007018", + "label": "Attention deficit hyperactivity disorder" + } + } + ], + "interpretations": [ + { + "id": "STX_28708303_Patient_56", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28708303_Patient_56", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_rwivcHVVnXEGlcaQGMGnIZlxE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1082C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673233C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673233", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28856709_RTT69_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_28856709_RTT69_1.json new file mode 100644 index 00000000..d5c0fbe0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28856709_RTT69_1.json @@ -0,0 +1,140 @@ +{ + "id": "STX_28856709_RTT69_1", + "subject": { + "id": "STX_28856709_RTT69_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + } + }, + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + } + ], + "interpretations": [ + { + "id": "STX_28856709_RTT69_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28856709_RTT69_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28944233_261220.json b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_261220.json new file mode 100644 index 00000000..7b683d7b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_261220.json @@ -0,0 +1,164 @@ +{ + "id": "STX_28944233_261220", + "subject": { + "id": "STX_28944233_261220", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + }, + { + "type": { + "id": "HP:0000411", + "label": "Protruding ear" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + } + }, + { + "type": { + "id": "HP:0001388", + "label": "Joint laxity" + } + } + ], + "interpretations": [ + { + "id": "STX_28944233_261220", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28944233_261220", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_rGKiTShIuYaHiplDbYdLncjfV", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.717del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666219del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666215", + "ref": "AC", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28944233_265950.json b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_265950.json new file mode 100644 index 00000000..a7c1ef0c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_265950.json @@ -0,0 +1,303 @@ +{ + "id": "STX_28944233_265950", + "subject": { + "id": "STX_28944233_265950", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y0M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002370", + "label": "Poor coordination" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0008504", + "label": "Moderate sensorineural hearing impairment" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010465", + "label": "Precocious puberty in females" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000365", + "label": "Hearing impairment" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_28944233_265950", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28944233_265950", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28944233_270001.json b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_270001.json new file mode 100644 index 00000000..2a27ee26 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_270001.json @@ -0,0 +1,224 @@ +{ + "id": "STX_28944233_270001", + "subject": { + "id": "STX_28944233_270001", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y11M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + } + }, + { + "type": { + "id": "HP:0100710", + "label": "Impulsivity" + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + } + }, + { + "type": { + "id": "HP:0002007", + "label": "Frontal bossing" + } + }, + { + "type": { + "id": "HP:0000283", + "label": "Broad face" + } + }, + { + "type": { + "id": "HP:0003196", + "label": "Short nose" + } + }, + { + "type": { + "id": "HP:0005280", + "label": "Depressed nasal bridge" + } + }, + { + "type": { + "id": "HP:0000160", + "label": "Narrow mouth" + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0007021", + "label": "Pain insensitivity" + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + } + }, + { + "type": { + "id": "HP:0001169", + "label": "Broad palm" + } + }, + { + "type": { + "id": "HP:0001182", + "label": "Tapered finger" + } + }, + { + "type": { + "id": "HP:0010055", + "label": "Broad hallux" + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + } + } + ], + "interpretations": [ + { + "id": "STX_28944233_270001", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28944233_270001", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28944233_272650.json b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_272650.json new file mode 100644 index 00000000..0b8908cb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_272650.json @@ -0,0 +1,281 @@ +{ + "id": "STX_28944233_272650", + "subject": { + "id": "STX_28944233_272650", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y11M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001388", + "label": "Joint laxity" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0010780", + "label": "Hyperacusis" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_28944233_272650", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28944233_272650", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_lBBysgipenZeVfFXpIfLzgyzn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.533C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663308C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663308", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_28944233_273873.json b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_273873.json new file mode 100644 index 00000000..2677c2b9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_28944233_273873.json @@ -0,0 +1,164 @@ +{ + "id": "STX_28944233_273873", + "subject": { + "id": "STX_28944233_273873", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y7M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0005469", + "label": "Flat occiput" + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + } + }, + { + "type": { + "id": "HP:0002322", + "label": "Resting tremor" + } + }, + { + "type": { + "id": "HP:0002599", + "label": "Head titubation" + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + } + } + ], + "interpretations": [ + { + "id": "STX_28944233_273873", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_28944233_273873", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29023665_No_ID_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_29023665_No_ID_1.json new file mode 100644 index 00000000..d2c461dc --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29023665_No_ID_1.json @@ -0,0 +1,287 @@ +{ + "id": "STX_29023665_No_ID_1", + "subject": { + "id": "STX_29023665_No_ID_1" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0005957", + "label": "Breathing dysregulation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003808", + "label": "Abnormal muscle tone" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001510", + "label": "Growth delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0200055", + "label": "Small hand" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001773", + "label": "Short foot" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007328", + "label": "Impaired pain sensation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29023665_No_ID_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29023665_No_ID_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JsAeRTIdubYnUZVLgiMxXxcBb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1061G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673212G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673212", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29056246_Patient_53.json b/notebooks/STXBP1/input/PMID_35190816_STX_29056246_Patient_53.json new file mode 100644 index 00000000..b1f19e4d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29056246_Patient_53.json @@ -0,0 +1,129 @@ +{ + "id": "STX_29056246_Patient_53", + "subject": { + "id": "STX_29056246_Patient_53" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + } + ], + "interpretations": [ + { + "id": "STX_29056246_Patient_53", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29056246_Patient_53", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_calqrkfQUjjGtrlTMZDKRjMpt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1029+1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672117G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672117", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29056246_Patient_54.json b/notebooks/STXBP1/input/PMID_35190816_STX_29056246_Patient_54.json new file mode 100644 index 00000000..70922dfc --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29056246_Patient_54.json @@ -0,0 +1,129 @@ +{ + "id": "STX_29056246_Patient_54", + "subject": { + "id": "STX_29056246_Patient_54" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_29056246_Patient_54", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29056246_Patient_54", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ulyvYJpjbWKAIPVVmmOACZQRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.364C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661140C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661140", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29056246_Patient_56.json b/notebooks/STXBP1/input/PMID_35190816_STX_29056246_Patient_56.json new file mode 100644 index 00000000..00fceb4a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29056246_Patient_56.json @@ -0,0 +1,153 @@ +{ + "id": "STX_29056246_Patient_56", + "subject": { + "id": "STX_29056246_Patient_56" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0100021", + "label": "Cerebral palsy" + } + } + ], + "interpretations": [ + { + "id": "STX_29056246_Patient_56", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29056246_Patient_56", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BYRqxXzlAtJGLikYfHgeDocAJ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.704G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666206G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666206", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_2.json new file mode 100644 index 00000000..168a1b75 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_2.json @@ -0,0 +1,159 @@ +{ + "id": "STX_29264391_Patient_2", + "subject": { + "id": "STX_29264391_Patient_2" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + } + }, + { + "type": { + "id": "HP:0031960", + "label": "Arm dystonia" + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + } + } + ], + "interpretations": [ + { + "id": "STX_29264391_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29264391_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_jlnZJCTiLBWCXdLBevZHwmBCt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.663+1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127665332G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127665332", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_3.json new file mode 100644 index 00000000..8b2eba8b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_3.json @@ -0,0 +1,259 @@ +{ + "id": "STX_29264391_Patient_3", + "subject": { + "id": "STX_29264391_Patient_3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002346", + "label": "Head tremor" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002378", + "label": "Hand tremor" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29264391_Patient_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29264391_Patient_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_4.json b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_4.json new file mode 100644 index 00000000..2db7cdcb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_4.json @@ -0,0 +1,193 @@ +{ + "id": "STX_29264391_Patient_4", + "subject": { + "id": "STX_29264391_Patient_4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011400", + "label": "Abnormal CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29264391_Patient_4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29264391_Patient_4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IajhOGhGJnyLeckJOMGAWQrSu", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1099C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673250C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673250", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_6.json b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_6.json new file mode 100644 index 00000000..c47c411a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_6.json @@ -0,0 +1,147 @@ +{ + "id": "STX_29264391_Patient_6", + "subject": { + "id": "STX_29264391_Patient_6" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + } + } + ], + "interpretations": [ + { + "id": "STX_29264391_Patient_6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29264391_Patient_6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_dCHxMOgcOyCjDMZqzgqXirtjp", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1578_1579del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682436_127682437del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682435", + "ref": "AGG", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_7.json b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_7.json new file mode 100644 index 00000000..6bac6da3 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29264391_Patient_7.json @@ -0,0 +1,232 @@ +{ + "id": "STX_29264391_Patient_7", + "subject": { + "id": "STX_29264391_Patient_7" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29264391_Patient_7", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29264391_Patient_7", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_jzMJjqWjfEagzoeYYMVQarpHL", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.755T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666257T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666257", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29314583_Case_235.json b/notebooks/STXBP1/input/PMID_35190816_STX_29314583_Case_235.json new file mode 100644 index 00000000..a2ab50c1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29314583_Case_235.json @@ -0,0 +1,171 @@ +{ + "id": "STX_29314583_Case_235", + "subject": { + "id": "STX_29314583_Case_235", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29314583_Case_235", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29314583_Case_235", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HWWMcnKStqLfcFyYmrkDVjiwJ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.187A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658392A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658392", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29314583_Case_243.json b/notebooks/STXBP1/input/PMID_35190816_STX_29314583_Case_243.json new file mode 100644 index 00000000..da8f374d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29314583_Case_243.json @@ -0,0 +1,160 @@ +{ + "id": "STX_29314583_Case_243", + "subject": { + "id": "STX_29314583_Case_243", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29314583_Case_243", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29314583_Case_243", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29390993_Patient_P1.json b/notebooks/STXBP1/input/PMID_35190816_STX_29390993_Patient_P1.json new file mode 100644 index 00000000..b332eec3 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29390993_Patient_P1.json @@ -0,0 +1,171 @@ +{ + "id": "STX_29390993_Patient_P1", + "subject": { + "id": "STX_29390993_Patient_P1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29390993_Patient_P1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29390993_Patient_P1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_MKTzWVbTiskQhPxMYjCliygDJ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.733C>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666235C>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666235", + "ref": "C", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29544889_Patient.json b/notebooks/STXBP1/input/PMID_35190816_STX_29544889_Patient.json new file mode 100644 index 00000000..ff61648e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29544889_Patient.json @@ -0,0 +1,292 @@ +{ + "id": "STX_29544889_Patient", + "subject": { + "id": "STX_29544889_Patient", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002793", + "label": "Abnormal pattern of respiration" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0003808", + "label": "Abnormal muscle tone" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29544889_Patient", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29544889_Patient", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SMgyHxLwTOAMNodwGIdjhAOPK", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.60del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651625del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651624", + "ref": "AG", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29718889_Case.json b/notebooks/STXBP1/input/PMID_35190816_STX_29718889_Case.json new file mode 100644 index 00000000..adf14061 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29718889_Case.json @@ -0,0 +1,182 @@ +{ + "id": "STX_29718889_Case", + "subject": { + "id": "STX_29718889_Case", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002375", + "label": "Hypokinesia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29718889_Case", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29718889_Case", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wNZKMpIwelboXaASPtGhCvuHx", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.904G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127669899G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127669899", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29761117_Case_12.json b/notebooks/STXBP1/input/PMID_35190816_STX_29761117_Case_12.json new file mode 100644 index 00000000..7d5cd8e2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29761117_Case_12.json @@ -0,0 +1,152 @@ +{ + "id": "STX_29761117_Case_12", + "subject": { + "id": "STX_29761117_Case_12", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0040083", + "label": "Toe walking" + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + } + ], + "interpretations": [ + { + "id": "STX_29761117_Case_12", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29761117_Case_12", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ULQMOztosswhwKsTbktySfXov", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29778030_No_ID.json b/notebooks/STXBP1/input/PMID_35190816_STX_29778030_No_ID.json new file mode 100644 index 00000000..23223105 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29778030_No_ID.json @@ -0,0 +1,146 @@ +{ + "id": "STX_29778030_No_ID", + "subject": { + "id": "STX_29778030_No_ID", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001264", + "label": "Spastic diplegia" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_29778030_No_ID", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29778030_No_ID", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P1.json b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P1.json new file mode 100644 index 00000000..db63dd9a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P1.json @@ -0,0 +1,237 @@ +{ + "id": "STX_29896790_P1", + "subject": { + "id": "STX_29896790_P1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29896790_P1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29896790_P1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HrkCVYhGAfOGcSXYJcCLzmpvv", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1157del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675850del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675847", + "ref": "AC", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P2.json b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P2.json new file mode 100644 index 00000000..4d27e299 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P2.json @@ -0,0 +1,237 @@ +{ + "id": "STX_29896790_P2", + "subject": { + "id": "STX_29896790_P2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29896790_P2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29896790_P2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_pqGzNwcnkXqfrhOFgKXpjKBXX", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1030-1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673180G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673180", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P3.json b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P3.json new file mode 100644 index 00000000..f8ab7285 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P3.json @@ -0,0 +1,193 @@ +{ + "id": "STX_29896790_P3", + "subject": { + "id": "STX_29896790_P3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0004305", + "label": "Involuntary movements" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000735", + "label": "Impaired social interactions" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29896790_P3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29896790_P3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_kIcHhisloPVGEYSUhEaeKQJDt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.217G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658422G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658422", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P4.json b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P4.json new file mode 100644 index 00000000..e6c1eec9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P4.json @@ -0,0 +1,237 @@ +{ + "id": "STX_29896790_P4", + "subject": { + "id": "STX_29896790_P4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y5M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0004305", + "label": "Involuntary movements" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29896790_P4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29896790_P4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgTGPCnMwWDiJNBmGiTQwEHxo", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.268G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660051G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660051", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P5.json b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P5.json new file mode 100644 index 00000000..c2fe28ba --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P5.json @@ -0,0 +1,204 @@ +{ + "id": "STX_29896790_P5", + "subject": { + "id": "STX_29896790_P5", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29896790_P5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29896790_P5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P6.json b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P6.json new file mode 100644 index 00000000..af4c8ce0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P6.json @@ -0,0 +1,215 @@ +{ + "id": "STX_29896790_P6", + "subject": { + "id": "STX_29896790_P6", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29896790_P6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29896790_P6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P7.json b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P7.json new file mode 100644 index 00000000..63f99f5d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P7.json @@ -0,0 +1,215 @@ +{ + "id": "STX_29896790_P7", + "subject": { + "id": "STX_29896790_P7", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002372", + "label": "Normal interictal EEG" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000735", + "label": "Impaired social interactions" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29896790_P7", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29896790_P7", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_rBGFDBlcDLWjdSzVgmclCXxcS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1482dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127680177dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127680175", + "ref": "C", + "alt": "CT" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P8.json b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P8.json new file mode 100644 index 00000000..db1876ed --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P8.json @@ -0,0 +1,215 @@ +{ + "id": "STX_29896790_P8", + "subject": { + "id": "STX_29896790_P8", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000735", + "label": "Impaired social interactions" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29896790_P8", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29896790_P8", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P9.json b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P9.json new file mode 100644 index 00000000..671a28fa --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29896790_P9.json @@ -0,0 +1,226 @@ +{ + "id": "STX_29896790_P9", + "subject": { + "id": "STX_29896790_P9", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0100702", + "label": "Arachnoid cyst" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012766", + "label": "Widened cerebral subarachnoid space" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000735", + "label": "Impaired social interactions" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29896790_P9", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29896790_P9", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29929108_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_29929108_Patient_1.json new file mode 100644 index 00000000..38909733 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29929108_Patient_1.json @@ -0,0 +1,292 @@ +{ + "id": "STX_29929108_Patient_1", + "subject": { + "id": "STX_29929108_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011171", + "label": "Simple febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002267", + "label": "Exaggerated startle response" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000473", + "label": "Torticollis" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002067", + "label": "Bradykinesia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002392", + "label": "EEG with polyspike wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000720", + "label": "Mood swings" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0100710", + "label": "Impulsivity" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002367", + "label": "Visual hallucinations" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29929108_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29929108_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29933521_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_29933521_Patient_1.json new file mode 100644 index 00000000..5321f447 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29933521_Patient_1.json @@ -0,0 +1,128 @@ +{ + "id": "STX_29933521_Patient_1", + "subject": { + "id": "STX_29933521_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + } + } + ], + "interpretations": [ + { + "id": "STX_29933521_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29933521_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29933521_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_29933521_Patient_2.json new file mode 100644 index 00000000..fd223904 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29933521_Patient_2.json @@ -0,0 +1,122 @@ +{ + "id": "STX_29933521_Patient_2", + "subject": { + "id": "STX_29933521_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + } + } + ], + "interpretations": [ + { + "id": "STX_29933521_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29933521_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29933521_Patient_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_29933521_Patient_3.json new file mode 100644 index 00000000..5152b94f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29933521_Patient_3.json @@ -0,0 +1,122 @@ +{ + "id": "STX_29933521_Patient_3", + "subject": { + "id": "STX_29933521_Patient_3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + } + } + ], + "interpretations": [ + { + "id": "STX_29933521_Patient_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29933521_Patient_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qmaOwheXTpjYeipOikRBljqTE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1030T>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673181T>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673181", + "ref": "T", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29997391_09NG001.json b/notebooks/STXBP1/input/PMID_35190816_STX_29997391_09NG001.json new file mode 100644 index 00000000..9ceaf64c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29997391_09NG001.json @@ -0,0 +1,204 @@ +{ + "id": "STX_29997391_09NG001", + "subject": { + "id": "STX_29997391_09NG001", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29997391_09NG001", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29997391_09NG001", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29997391_10NG006.json b/notebooks/STXBP1/input/PMID_35190816_STX_29997391_10NG006.json new file mode 100644 index 00000000..3888c222 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29997391_10NG006.json @@ -0,0 +1,158 @@ +{ + "id": "STX_29997391_10NG006", + "subject": { + "id": "STX_29997391_10NG006", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + } + } + ], + "interpretations": [ + { + "id": "STX_29997391_10NG006", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29997391_10NG006", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29997391_11NG001.json b/notebooks/STXBP1/input/PMID_35190816_STX_29997391_11NG001.json new file mode 100644 index 00000000..feb28cd1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29997391_11NG001.json @@ -0,0 +1,158 @@ +{ + "id": "STX_29997391_11NG001", + "subject": { + "id": "STX_29997391_11NG001", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0000256", + "label": "Macrocephaly" + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + } + } + ], + "interpretations": [ + { + "id": "STX_29997391_11NG001", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29997391_11NG001", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_pdBVVhHZFQWlkuGaSCGtKkXOb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1206T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675899T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675899", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_29997391_P6.json b/notebooks/STXBP1/input/PMID_35190816_STX_29997391_P6.json new file mode 100644 index 00000000..8bdf042f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_29997391_P6.json @@ -0,0 +1,237 @@ +{ + "id": "STX_29997391_P6", + "subject": { + "id": "STX_29997391_P6", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_29997391_P6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_29997391_P6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mZiJwflEFIXkwgvtZocQWhuCA", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.560del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663335del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663332", + "ref": "AC", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30109124_Subject_11.json b/notebooks/STXBP1/input/PMID_35190816_STX_30109124_Subject_11.json new file mode 100644 index 00000000..e6f9ebcd --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30109124_Subject_11.json @@ -0,0 +1,232 @@ +{ + "id": "STX_30109124_Subject_11", + "subject": { + "id": "STX_30109124_Subject_11" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0004324", + "label": "Increased body weight" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011197", + "label": "EEG with focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0030891", + "label": "Periventricular white matter hyperdensities" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30109124_Subject_11", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30109124_Subject_11", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_aBHeZvwsfAKWVJNNgwllUOcFb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1151dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675844dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675842", + "ref": "C", + "alt": "CA" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30182498_Patient_068.json b/notebooks/STXBP1/input/PMID_35190816_STX_30182498_Patient_068.json new file mode 100644 index 00000000..a954c11f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30182498_Patient_068.json @@ -0,0 +1,204 @@ +{ + "id": "STX_30182498_Patient_068", + "subject": { + "id": "STX_30182498_Patient_068", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y5M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30182498_Patient_068", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30182498_Patient_068", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30182498_Patient_091.json b/notebooks/STXBP1/input/PMID_35190816_STX_30182498_Patient_091.json new file mode 100644 index 00000000..485fc332 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30182498_Patient_091.json @@ -0,0 +1,160 @@ +{ + "id": "STX_30182498_Patient_091", + "subject": { + "id": "STX_30182498_Patient_091", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002372", + "label": "Normal interictal EEG" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30182498_Patient_091", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30182498_Patient_091", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_DJMiGRsxWEmvDJYOYCFqhQHdv", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1696_1697delinsA" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682554_127682555delinsA" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682554", + "ref": "CT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30185235_Case_151.json b/notebooks/STXBP1/input/PMID_35190816_STX_30185235_Case_151.json new file mode 100644 index 00000000..ee5374db --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30185235_Case_151.json @@ -0,0 +1,182 @@ +{ + "id": "STX_30185235_Case_151", + "subject": { + "id": "STX_30185235_Case_151", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012704", + "label": "Widened subarachnoid space" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30185235_Case_151", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30185235_Case_151", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_QACrWqoNbQXzPKPwfemphfvuK", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.748C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666250C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666250", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30185235_Case_90.json b/notebooks/STXBP1/input/PMID_35190816_STX_30185235_Case_90.json new file mode 100644 index 00000000..cb76e24d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30185235_Case_90.json @@ -0,0 +1,182 @@ +{ + "id": "STX_30185235_Case_90", + "subject": { + "id": "STX_30185235_Case_90", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y11M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30185235_Case_90", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30185235_Case_90", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ulyvYJpjbWKAIPVVmmOACZQRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.364C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661140C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661140", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30283815_Patient_16.json b/notebooks/STXBP1/input/PMID_35190816_STX_30283815_Patient_16.json new file mode 100644 index 00000000..ba23609f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30283815_Patient_16.json @@ -0,0 +1,140 @@ +{ + "id": "STX_30283815_Patient_16", + "subject": { + "id": "STX_30283815_Patient_16", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_30283815_Patient_16", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30283815_Patient_16", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_KwToRJLAnzQJFvxcgOOxrxLMa", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1249+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675943G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675943", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_1.json new file mode 100644 index 00000000..f5f90bfe --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_1.json @@ -0,0 +1,314 @@ +{ + "id": "STX_30654231_Patient_1", + "subject": { + "id": "STX_30654231_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P33Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010821", + "label": "Gelastic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001266", + "label": "Choreoathetosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0004373", + "label": "Focal dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002267", + "label": "Exaggerated startle response" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031986", + "label": "Polyminimyoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001156", + "label": "Brachydactyly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002283", + "label": "Global brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30654231_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30654231_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VKiJkhCSMXDhETkRLPNnVbaMb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1702+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682561G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682561", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_2.json new file mode 100644 index 00000000..02803adb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_2.json @@ -0,0 +1,358 @@ +{ + "id": "STX_30654231_Patient_2", + "subject": { + "id": "STX_30654231_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P45Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002346", + "label": "Head tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002322", + "label": "Resting tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002174", + "label": "Postural tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002396", + "label": "Cogwheel rigidity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000322", + "label": "Short philtrum" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000160", + "label": "Narrow mouth" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002942", + "label": "Thoracic kyphosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007351", + "label": "Upper limb postural tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006986", + "label": "Upper limb spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002061", + "label": "Lower limb spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100952", + "label": "Enlarged sylvian cistern" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30654231_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30654231_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_3.json new file mode 100644 index 00000000..b31d95e6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_3.json @@ -0,0 +1,237 @@ +{ + "id": "STX_30654231_Patient_3", + "subject": { + "id": "STX_30654231_Patient_3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0001265", + "label": "Hyporeflexia" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0031951", + "label": "Nocturnal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0012443", + "label": "Abnormality of brain morphology" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30654231_Patient_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30654231_Patient_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_jzMJjqWjfEagzoeYYMVQarpHL", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.755T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666257T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666257", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_5.json b/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_5.json new file mode 100644 index 00000000..393a8a6f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30654231_Patient_5.json @@ -0,0 +1,347 @@ +{ + "id": "STX_30654231_Patient_5", + "subject": { + "id": "STX_30654231_Patient_5", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P46Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002322", + "label": "Resting tremor" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002396", + "label": "Cogwheel rigidity" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0025403", + "label": "Stooped posture" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002172", + "label": "Postural instability" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0007311", + "label": "Short stepped shuffling gait" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0007351", + "label": "Upper limb postural tremor" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0011193", + "label": "EEG with focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + }, + { + "type": { + "id": "HP:0002283", + "label": "Global brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P96M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30654231_Patient_5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30654231_Patient_5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JsAeRTIdubYnUZVLgiMxXxcBb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1061G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673212G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673212", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30776697_Patient_70.json b/notebooks/STXBP1/input/PMID_35190816_STX_30776697_Patient_70.json new file mode 100644 index 00000000..6abc02ce --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30776697_Patient_70.json @@ -0,0 +1,127 @@ +{ + "id": "STX_30776697_Patient_70", + "subject": { + "id": "STX_30776697_Patient_70", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_30776697_Patient_70", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30776697_Patient_70", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wuoxtXYYDEomzFStIKbjaYMor", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.388_389del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661164_127661165del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661161", + "ref": "ACT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30842224_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_30842224_Patient_2.json new file mode 100644 index 00000000..b438adc1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30842224_Patient_2.json @@ -0,0 +1,147 @@ +{ + "id": "STX_30842224_Patient_2", + "subject": { + "id": "STX_30842224_Patient_2" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + } + }, + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + } + }, + { + "type": { + "id": "HP:0000748", + "label": "Inappropriate laughter" + } + } + ], + "interpretations": [ + { + "id": "STX_30842224_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30842224_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30842224_Patient_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_30842224_Patient_3.json new file mode 100644 index 00000000..6e823722 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30842224_Patient_3.json @@ -0,0 +1,123 @@ +{ + "id": "STX_30842224_Patient_3", + "subject": { + "id": "STX_30842224_Patient_3" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + } + } + ], + "interpretations": [ + { + "id": "STX_30842224_Patient_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30842224_Patient_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_pdBVVhHZFQWlkuGaSCGtKkXOb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1206T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675899T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675899", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30842224_Patient_5.json b/notebooks/STXBP1/input/PMID_35190816_STX_30842224_Patient_5.json new file mode 100644 index 00000000..818ac927 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30842224_Patient_5.json @@ -0,0 +1,129 @@ +{ + "id": "STX_30842224_Patient_5", + "subject": { + "id": "STX_30842224_Patient_5" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012171", + "label": "Stereotypical hand wringing" + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + } + ], + "interpretations": [ + { + "id": "STX_30842224_Patient_5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30842224_Patient_5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nXTrmAGeBKXZurHMTjUpEdxTd", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.902+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668188G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668188", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30842647_Patient_45969.json b/notebooks/STXBP1/input/PMID_35190816_STX_30842647_Patient_45969.json new file mode 100644 index 00000000..7be910ef --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30842647_Patient_45969.json @@ -0,0 +1,176 @@ +{ + "id": "STX_30842647_Patient_45969", + "subject": { + "id": "STX_30842647_Patient_45969", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + } + }, + { + "type": { + "id": "HP:0004879", + "label": "Intermittent hyperventilation" + } + }, + { + "type": { + "id": "HP:0100710", + "label": "Impulsivity" + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + } + ], + "interpretations": [ + { + "id": "STX_30842647_Patient_45969", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30842647_Patient_45969", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ulyvYJpjbWKAIPVVmmOACZQRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.364C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661140C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661140", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_30945278_Patient_DD18003965.json b/notebooks/STXBP1/input/PMID_35190816_STX_30945278_Patient_DD18003965.json new file mode 100644 index 00000000..7bac8b2a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_30945278_Patient_DD18003965.json @@ -0,0 +1,140 @@ +{ + "id": "STX_30945278_Patient_DD18003965", + "subject": { + "id": "STX_30945278_Patient_DD18003965", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + } + ], + "interpretations": [ + { + "id": "STX_30945278_Patient_DD18003965", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_30945278_Patient_DD18003965", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IxrIIKMfGPauaMSZzhgWGpsQv", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.88-1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653714G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653714", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31054490_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_31054490_Patient_2.json new file mode 100644 index 00000000..8ff95818 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31054490_Patient_2.json @@ -0,0 +1,138 @@ +{ + "id": "STX_31054490_Patient_2", + "subject": { + "id": "STX_31054490_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31054490_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31054490_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-0657.json b/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-0657.json new file mode 100644 index 00000000..96df1d3b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-0657.json @@ -0,0 +1,152 @@ +{ + "id": "STX_31130284_UPN-0657", + "subject": { + "id": "STX_31130284_UPN-0657", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y11M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001510", + "label": "Growth delay" + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + } + }, + { + "type": { + "id": "HP:0002194", + "label": "Delayed gross motor development" + } + }, + { + "type": { + "id": "HP:0010862", + "label": "Delayed fine motor development" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + } + ], + "interpretations": [ + { + "id": "STX_31130284_UPN-0657", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31130284_UPN-0657", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_noBAeQZAnrSKbUAeHsBQDsLRK", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.569G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663344G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663344", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-0843.json b/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-0843.json new file mode 100644 index 00000000..c8467aab --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-0843.json @@ -0,0 +1,182 @@ +{ + "id": "STX_31130284_UPN-0843", + "subject": { + "id": "STX_31130284_UPN-0843", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y5M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002194", + "label": "Delayed gross motor development" + } + }, + { + "type": { + "id": "HP:0010862", + "label": "Delayed fine motor development" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + } + }, + { + "type": { + "id": "HP:0004349", + "label": "Reduced bone mineral density" + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + }, + { + "type": { + "id": "HP:0012448", + "label": "Delayed myelination" + } + } + ], + "interpretations": [ + { + "id": "STX_31130284_UPN-0843", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31130284_UPN-0843", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-1176.json b/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-1176.json new file mode 100644 index 00000000..43648be8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-1176.json @@ -0,0 +1,134 @@ +{ + "id": "STX_31130284_UPN-1176", + "subject": { + "id": "STX_31130284_UPN-1176", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + } + } + ], + "interpretations": [ + { + "id": "STX_31130284_UPN-1176", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31130284_UPN-1176", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-1751.json b/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-1751.json new file mode 100644 index 00000000..71a3fb0d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31130284_UPN-1751.json @@ -0,0 +1,128 @@ +{ + "id": "STX_31130284_UPN-1751", + "subject": { + "id": "STX_31130284_UPN-1751", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y0M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + } + ], + "interpretations": [ + { + "id": "STX_31130284_UPN-1751", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31130284_UPN-1751", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FjcHvxUUGwhKmnwOsIGlTqwhn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1060T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673211T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673211", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31164858_Patient_018P.json b/notebooks/STXBP1/input/PMID_35190816_STX_31164858_Patient_018P.json new file mode 100644 index 00000000..b9d5321b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31164858_Patient_018P.json @@ -0,0 +1,215 @@ +{ + "id": "STX_31164858_Patient_018P", + "subject": { + "id": "STX_31164858_Patient_018P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0040168", + "label": "Focal seizures, afebril" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000271", + "label": "Abnormality of the face" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0009062", + "label": "Infantile axial hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000505", + "label": "Visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31164858_Patient_018P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31164858_Patient_018P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_kseczmnHxQthAKZXLFMfsqCqD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1029+1_1029+2delinsAA" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672117_127672118delinsAA" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672117", + "ref": "GT", + "alt": "AA" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31164858_Patient_106.json b/notebooks/STXBP1/input/PMID_35190816_STX_31164858_Patient_106.json new file mode 100644 index 00000000..8ad2f6ce --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31164858_Patient_106.json @@ -0,0 +1,204 @@ +{ + "id": "STX_31164858_Patient_106", + "subject": { + "id": "STX_31164858_Patient_106", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P17Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0040168", + "label": "Focal seizures, afebril" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0100021", + "label": "Cerebral palsy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000577", + "label": "Exotropia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31164858_Patient_106", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31164858_Patient_106", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nzIlCWNnriwlZeWakLuCbQlSZ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.41T>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651606T>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651606", + "ref": "T", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31171384_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_31171384_Patient_1.json new file mode 100644 index 00000000..20c08c87 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31171384_Patient_1.json @@ -0,0 +1,138 @@ +{ + "id": "STX_31171384_Patient_1", + "subject": { + "id": "STX_31171384_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011169", + "label": "Generalized clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31171384_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31171384_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient1.json b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient1.json new file mode 100644 index 00000000..a7542398 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient1.json @@ -0,0 +1,325 @@ +{ + "id": "STX_31344879_Patient1", + "subject": { + "id": "STX_31344879_Patient1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P18Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0002317", + "label": "Unsteady gait" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0006979", + "label": "Sleep-wake cycle disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0002938", + "label": "Lumbar hyperlordosis" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0000748", + "label": "Inappropriate laughter" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0012703", + "label": "Abnormality of the subarachnoid space" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0001336", + "label": "Myoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0007166", + "label": "Paroxysmal dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0001959", + "label": "Polydipsia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31344879_Patient1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31344879_Patient1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient2.json b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient2.json new file mode 100644 index 00000000..08bc15df --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient2.json @@ -0,0 +1,259 @@ +{ + "id": "STX_31344879_Patient2", + "subject": { + "id": "STX_31344879_Patient2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0002793", + "label": "Abnormal pattern of respiration" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0011195", + "label": "EEG with focal sharp slow waves" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31344879_Patient2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31344879_Patient2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IajhOGhGJnyLeckJOMGAWQrSu", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1099C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673250C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673250", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient3.json b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient3.json new file mode 100644 index 00000000..4c5dcdb8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient3.json @@ -0,0 +1,259 @@ +{ + "id": "STX_31344879_Patient3", + "subject": { + "id": "STX_31344879_Patient3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31344879_Patient3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31344879_Patient3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_yqJMBIkENwcDPeqgxwOeSRDXr", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.169+2T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653798T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653798", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient4.json b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient4.json new file mode 100644 index 00000000..e83c4682 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient4.json @@ -0,0 +1,226 @@ +{ + "id": "STX_31344879_Patient4", + "subject": { + "id": "STX_31344879_Patient4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P29Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31344879_Patient4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31344879_Patient4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BorUxawhmhsTmdbgApiXoopHV", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.767T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666269T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666269", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient5.json b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient5.json new file mode 100644 index 00000000..c3a53e43 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient5.json @@ -0,0 +1,270 @@ +{ + "id": "STX_31344879_Patient5", + "subject": { + "id": "STX_31344879_Patient5", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006979", + "label": "Sleep-wake cycle disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000748", + "label": "Inappropriate laughter" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002015", + "label": "Dysphagia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31344879_Patient5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31344879_Patient5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VKiJkhCSMXDhETkRLPNnVbaMb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1702+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682561G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682561", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient6.json b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient6.json new file mode 100644 index 00000000..56b57fa9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31344879_Patient6.json @@ -0,0 +1,303 @@ +{ + "id": "STX_31344879_Patient6", + "subject": { + "id": "STX_31344879_Patient6", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0012703", + "label": "Abnormality of the subarachnoid space" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31344879_Patient6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926f", + "label": "Atypical Rett Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31344879_Patient6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31387522_Patient_9.json b/notebooks/STXBP1/input/PMID_35190816_STX_31387522_Patient_9.json new file mode 100644 index 00000000..fab2263b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31387522_Patient_9.json @@ -0,0 +1,261 @@ +{ + "id": "STX_31387522_Patient_9", + "subject": { + "id": "STX_31387522_Patient_9", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P14Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001557", + "label": "Prenatal movement abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001943", + "label": "Hypoglycemia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0025190", + "label": "Generalized tonic-clonic seizures without focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "No Sleep disturbance" + }, + "excluded": true, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003474", + "label": "No Sensory impairment" + }, + "excluded": true, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31387522_Patient_9", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31387522_Patient_9", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_edzYnNWbhTfiCqvweKxvzkdJp", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.827dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668112dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668111", + "ref": "G", + "alt": "GT" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31394400_P1.json b/notebooks/STXBP1/input/PMID_35190816_STX_31394400_P1.json new file mode 100644 index 00000000..f19eaa18 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31394400_P1.json @@ -0,0 +1,265 @@ +{ + "id": "STX_31394400_P1", + "subject": { + "id": "STX_31394400_P1" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0011170", + "label": "Myoclonic atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0003739", + "label": "Myoclonic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31394400_P1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31394400_P1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_KTNYgndZryzatpNRbKXMHAggU", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.122T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653749T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653749", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31487502_Patient_55.json b/notebooks/STXBP1/input/PMID_35190816_STX_31487502_Patient_55.json new file mode 100644 index 00000000..6f206ac1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31487502_Patient_55.json @@ -0,0 +1,171 @@ +{ + "id": "STX_31487502_Patient_55", + "subject": { + "id": "STX_31487502_Patient_55", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0007376", + "label": "Abnormality of the choroid plexus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011196", + "label": "EEG with focal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011193", + "label": "EEG with focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31487502_Patient_55", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31487502_Patient_55", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31487502_Patient_56.json b/notebooks/STXBP1/input/PMID_35190816_STX_31487502_Patient_56.json new file mode 100644 index 00000000..978c9c6f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31487502_Patient_56.json @@ -0,0 +1,204 @@ +{ + "id": "STX_31487502_Patient_56", + "subject": { + "id": "STX_31487502_Patient_56", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011196", + "label": "EEG with focal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006970", + "label": "Periventricular leukomalacia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31487502_Patient_56", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31487502_Patient_56", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31623504_Case_16.json b/notebooks/STXBP1/input/PMID_35190816_STX_31623504_Case_16.json new file mode 100644 index 00000000..577be89f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31623504_Case_16.json @@ -0,0 +1,141 @@ +{ + "id": "STX_31623504_Case_16", + "subject": { + "id": "STX_31623504_Case_16" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_31623504_Case_16", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31623504_Case_16", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_MKTzWVbTiskQhPxMYjCliygDJ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.733C>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666235C>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666235", + "ref": "C", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31780880_Patient1214.json b/notebooks/STXBP1/input/PMID_35190816_STX_31780880_Patient1214.json new file mode 100644 index 00000000..ca0463ec --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31780880_Patient1214.json @@ -0,0 +1,171 @@ +{ + "id": "STX_31780880_Patient1214", + "subject": { + "id": "STX_31780880_Patient1214", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31780880_Patient1214", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31780880_Patient1214", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31780880_Patient1233.json b/notebooks/STXBP1/input/PMID_35190816_STX_31780880_Patient1233.json new file mode 100644 index 00000000..e5d43e37 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31780880_Patient1233.json @@ -0,0 +1,160 @@ +{ + "id": "STX_31780880_Patient1233", + "subject": { + "id": "STX_31780880_Patient1233", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_31780880_Patient1233", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31780880_Patient1233", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VRwmMcMJJmCElzQpEuFaIXvTh", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1548-2A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682404A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682404", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_31780880_Patient598.json b/notebooks/STXBP1/input/PMID_35190816_STX_31780880_Patient598.json new file mode 100644 index 00000000..70414ea4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_31780880_Patient598.json @@ -0,0 +1,146 @@ +{ + "id": "STX_31780880_Patient598", + "subject": { + "id": "STX_31780880_Patient598", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_31780880_Patient598", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_31780880_Patient598", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32105008_case_report.json b/notebooks/STXBP1/input/PMID_35190816_STX_32105008_case_report.json new file mode 100644 index 00000000..c2186492 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32105008_case_report.json @@ -0,0 +1,251 @@ +{ + "id": "STX_32105008_case_report", + "subject": { + "id": "STX_32105008_case_report", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P17Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0012443", + "label": "No Abnormality of brain morphology" + }, + "excluded": true, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0004879", + "label": "Intermittent hyperventilation" + }, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0000718", + "label": "No Aggressive behavior" + }, + "excluded": true, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + }, + { + "type": { + "id": "HP:0000240", + "label": "No Abnormality of skull size" + }, + "excluded": true, + "onset": { + "age": { + "iso8601duration": "P144M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32105008_case_report", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32105008_case_report", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_oANDNKFCVIuUxdzgrIVxSylkI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.9_13del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127612412_127612416del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127612411", + "ref": "CCATTG", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Infantile12.json b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Infantile12.json new file mode 100644 index 00000000..7d67abc0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Infantile12.json @@ -0,0 +1,160 @@ +{ + "id": "STX_32139178_Patient_Infantile12", + "subject": { + "id": "STX_32139178_Patient_Infantile12", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32139178_Patient_Infantile12", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32139178_Patient_Infantile12", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Infantile22.json b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Infantile22.json new file mode 100644 index 00000000..0395c926 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Infantile22.json @@ -0,0 +1,160 @@ +{ + "id": "STX_32139178_Patient_Infantile22", + "subject": { + "id": "STX_32139178_Patient_Infantile22", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32139178_Patient_Infantile22", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32139178_Patient_Infantile22", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_MCZgylWXydawqMwHKewMZGUTt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.578+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663354G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663354", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal11.json b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal11.json new file mode 100644 index 00000000..3572b031 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal11.json @@ -0,0 +1,160 @@ +{ + "id": "STX_32139178_Patient_Neonatal11", + "subject": { + "id": "STX_32139178_Patient_Neonatal11", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y10M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006970", + "label": "Periventricular leukomalacia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32139178_Patient_Neonatal11", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32139178_Patient_Neonatal11", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal23.json b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal23.json new file mode 100644 index 00000000..b2f16023 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal23.json @@ -0,0 +1,160 @@ +{ + "id": "STX_32139178_Patient_Neonatal23", + "subject": { + "id": "STX_32139178_Patient_Neonatal23", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32139178_Patient_Neonatal23", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32139178_Patient_Neonatal23", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_cPtmeLIMgupgsngtVuWbqrGLz", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.84G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651649G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651649", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal26.json b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal26.json new file mode 100644 index 00000000..6583ad30 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal26.json @@ -0,0 +1,160 @@ +{ + "id": "STX_32139178_Patient_Neonatal26", + "subject": { + "id": "STX_32139178_Patient_Neonatal26", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y7M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32139178_Patient_Neonatal26", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32139178_Patient_Neonatal26", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_tKogWGPqHCpBuDBdpQQPgrytX", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1631G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682489G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682489", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal8.json b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal8.json new file mode 100644 index 00000000..c9cfbd4f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32139178_Patient_Neonatal8.json @@ -0,0 +1,171 @@ +{ + "id": "STX_32139178_Patient_Neonatal8", + "subject": { + "id": "STX_32139178_Patient_Neonatal8", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32139178_Patient_Neonatal8", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32139178_Patient_Neonatal8", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nimzWypILMhFFUxqyznIWXDIS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32411386_Case_8.json b/notebooks/STXBP1/input/PMID_35190816_STX_32411386_Case_8.json new file mode 100644 index 00000000..dd50e5cf --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32411386_Case_8.json @@ -0,0 +1,134 @@ +{ + "id": "STX_32411386_Case_8", + "subject": { + "id": "STX_32411386_Case_8", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y0M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0001629", + "label": "Ventricular septal defect" + } + }, + { + "type": { + "id": "HP:0030875", + "label": "Abnormality of pulmonary circulation" + } + } + ], + "interpretations": [ + { + "id": "STX_32411386_Case_8", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32411386_Case_8", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_rhStBmnPIDusjANtAXhcXqewD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.326-1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661101G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661101", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32429945_Patient_23.json b/notebooks/STXBP1/input/PMID_35190816_STX_32429945_Patient_23.json new file mode 100644 index 00000000..329a017e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32429945_Patient_23.json @@ -0,0 +1,140 @@ +{ + "id": "STX_32429945_Patient_23", + "subject": { + "id": "STX_32429945_Patient_23", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_32429945_Patient_23", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32429945_Patient_23", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_DdSCELsBroNIFvAWVYuUTtOnS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.536T>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663311T>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663311", + "ref": "T", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P1.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P1.json new file mode 100644 index 00000000..84bc2cd8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P1.json @@ -0,0 +1,188 @@ +{ + "id": "STX_32521962_P1", + "subject": { + "id": "STX_32521962_P1" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P13M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_jUpSWRjsnMZvZpqarxABKFQCw", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.758G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666260G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666260", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P10.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P10.json new file mode 100644 index 00000000..a3b7e462 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P10.json @@ -0,0 +1,199 @@ +{ + "id": "STX_32521962_P10", + "subject": { + "id": "STX_32521962_P10" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001274", + "label": "Agenesis of corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P10", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P10", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P11.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P11.json new file mode 100644 index 00000000..5c29575b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P11.json @@ -0,0 +1,188 @@ +{ + "id": "STX_32521962_P11", + "subject": { + "id": "STX_32521962_P11" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011169", + "label": "Generalized clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P11", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P11", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SihgHWksNNeFciTIBDaxESmxm", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.172del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658377del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658376", + "ref": "TG", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P12.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P12.json new file mode 100644 index 00000000..057bf3f4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P12.json @@ -0,0 +1,177 @@ +{ + "id": "STX_32521962_P12", + "subject": { + "id": "STX_32521962_P12" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P12", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P12", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YLSdgCQjJkyievTyjaaazJlhU", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.99_100delinsTC" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653726_127653727delinsTC" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653726", + "ref": "GG", + "alt": "TC" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P13.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P13.json new file mode 100644 index 00000000..b6d930f3 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P13.json @@ -0,0 +1,177 @@ +{ + "id": "STX_32521962_P13", + "subject": { + "id": "STX_32521962_P13" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P13", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P13", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_vccVVtnKjuqzkyMJXcZpeZNJM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1193A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675886A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675886", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P14.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P14.json new file mode 100644 index 00000000..eb0e567f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P14.json @@ -0,0 +1,166 @@ +{ + "id": "STX_32521962_P14", + "subject": { + "id": "STX_32521962_P14" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011147", + "label": "Typical absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011289", + "label": "EEG with temporal sharp slow waves" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P14", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P14", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P2.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P2.json new file mode 100644 index 00000000..58bb5573 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P2.json @@ -0,0 +1,188 @@ +{ + "id": "STX_32521962_P2", + "subject": { + "id": "STX_32521962_P2" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011291", + "label": "EEG with central sharp slow waves" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011288", + "label": "EEG with parietal sharp slow waves" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YIeYizEWDjwMXVaFvwNtNuWtO", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1094T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673245T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673245", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P3.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P3.json new file mode 100644 index 00000000..31a6378c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P3.json @@ -0,0 +1,188 @@ +{ + "id": "STX_32521962_P3", + "subject": { + "id": "STX_32521962_P3" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0012747", + "label": "Abnormal brainstem MRI signal intensity" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P4.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P4.json new file mode 100644 index 00000000..e2fe9565 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P4.json @@ -0,0 +1,188 @@ +{ + "id": "STX_32521962_P4", + "subject": { + "id": "STX_32521962_P4" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0002372", + "label": "Normal interictal EEG" + }, + "onset": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0006956", + "label": "Dilation of lateral ventricles" + }, + "onset": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P19M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wuoxtXYYDEomzFStIKbjaYMor", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.388_389del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661164_127661165del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661161", + "ref": "ACT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P5.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P5.json new file mode 100644 index 00000000..e4799343 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P5.json @@ -0,0 +1,177 @@ +{ + "id": "STX_32521962_P5", + "subject": { + "id": "STX_32521962_P5" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VmNXEIhcLTkWrWcwsfgdlraIc", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.296A>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660079A>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660079", + "ref": "A", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P6.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P6.json new file mode 100644 index 00000000..dc56e692 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P6.json @@ -0,0 +1,177 @@ +{ + "id": "STX_32521962_P6", + "subject": { + "id": "STX_32521962_P6" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_CNfscbMYnAIrgmUOkTGcQJyMT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1038_1039del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673189_127673190del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673187", + "ref": "ACC", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P7.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P7.json new file mode 100644 index 00000000..8a0844df --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P7.json @@ -0,0 +1,177 @@ +{ + "id": "STX_32521962_P7", + "subject": { + "id": "STX_32521962_P7" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P7", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P7", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_sicsEQGGLMEQFzmgISEosoIjx", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.74del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651639del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651637", + "ref": "GA", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P8.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P8.json new file mode 100644 index 00000000..566f0ac4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P8.json @@ -0,0 +1,166 @@ +{ + "id": "STX_32521962_P8", + "subject": { + "id": "STX_32521962_P8" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P8", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P8", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_NEEVLhmqYWJVZIrxAWGCSsuUT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1315A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676709A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676709", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P9.json b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P9.json new file mode 100644 index 00000000..54a7df91 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_32521962_P9.json @@ -0,0 +1,199 @@ +{ + "id": "STX_32521962_P9", + "subject": { + "id": "STX_32521962_P9" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0040329", + "label": "Multifocal hyperintensity of cerebral white matter on MRI" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_32521962_P9", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_32521962_P9", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JnxvlosYmCrfZONVxZEOzrqPG", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_003165.6:c.1769C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127684434C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127684434", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_58.json b/notebooks/STXBP1/input/PMID_35190816_STX_58.json new file mode 100644 index 00000000..a8bf4a4a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_58.json @@ -0,0 +1,146 @@ +{ + "id": "STX_58", + "subject": { + "id": "STX_58", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y7M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + } + }, + { + "type": { + "id": "HP:0000929", + "label": "Abnormality of the skull" + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + } + }, + { + "type": { + "id": "HP:0031135", + "label": "Triggered by physical trauma" + } + } + ], + "interpretations": [ + { + "id": "STX_58", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_58", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ulyvYJpjbWKAIPVVmmOACZQRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.364C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661140C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661140", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_001.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_001.json new file mode 100644 index 00000000..9da99d0b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_001.json @@ -0,0 +1,281 @@ +{ + "id": "STX_BCH_001", + "subject": { + "id": "STX_BCH_001", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_001", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_001", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_002.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_002.json new file mode 100644 index 00000000..53db9a4a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_002.json @@ -0,0 +1,193 @@ +{ + "id": "STX_BCH_002", + "subject": { + "id": "STX_BCH_002", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y10M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_002", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_002", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_tumzqyQaVsrNPypTPmQfTIHWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.901del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668186del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668183", + "ref": "TC", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_004.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_004.json new file mode 100644 index 00000000..fcb66479 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_004.json @@ -0,0 +1,237 @@ +{ + "id": "STX_BCH_004", + "subject": { + "id": "STX_BCH_004", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y0M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_004", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_004", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JjGnSpoxzcCfUoHCdUgtMDOQe", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.794+1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666297G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666297", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_005.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_005.json new file mode 100644 index 00000000..e0cbdbae --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_005.json @@ -0,0 +1,182 @@ +{ + "id": "STX_BCH_005", + "subject": { + "id": "STX_BCH_005", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0012000", + "label": "EEG with generalized spikes" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0012001", + "label": "EEG with generalized polyspikes" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0012434", + "label": "Delayed social development" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_005", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_005", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_bnTEFSFqDBZENOzGaMMMMESFR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_003165.6:c.1708A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127684373A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127684373", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_006.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_006.json new file mode 100644 index 00000000..dffacca5 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_006.json @@ -0,0 +1,146 @@ +{ + "id": "STX_BCH_006", + "subject": { + "id": "STX_BCH_006", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_006", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_006", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JYbeWlfCKsFjwAGUJOAJbeeqw", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.464del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663239del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663238", + "ref": "AG", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_007.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_007.json new file mode 100644 index 00000000..ab8481d4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_007.json @@ -0,0 +1,204 @@ +{ + "id": "STX_BCH_007", + "subject": { + "id": "STX_BCH_007", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P16Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_007", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_007", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_uNNGBbHCDzvRPyZlYMBGlxpim", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1652G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682510G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682510", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_008.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_008.json new file mode 100644 index 00000000..0f341e6c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_008.json @@ -0,0 +1,193 @@ +{ + "id": "STX_BCH_008", + "subject": { + "id": "STX_BCH_008", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011188", + "label": "Focal EEG discharges with secondary generalization" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0012016", + "label": "EEG with occipital focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0007018", + "label": "Attention deficit hyperactivity disorder" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_008", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_008", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YSAjFjfBUKRDXLQoKWpvlZBtE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.847G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668132G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668132", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_009.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_009.json new file mode 100644 index 00000000..3c7e66db --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_009.json @@ -0,0 +1,204 @@ +{ + "id": "STX_BCH_009", + "subject": { + "id": "STX_BCH_009", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_009", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_009", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_egxXoZVqhVRORTSupyvLBqGSS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.430-1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663204G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663204", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_010.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_010.json new file mode 100644 index 00000000..fcb3ed6c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_010.json @@ -0,0 +1,171 @@ +{ + "id": "STX_BCH_010", + "subject": { + "id": "STX_BCH_010", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011196", + "label": "EEG with focal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_010", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_010", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nimzWypILMhFFUxqyznIWXDIS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_011.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_011.json new file mode 100644 index 00000000..6b95d432 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_011.json @@ -0,0 +1,182 @@ +{ + "id": "STX_BCH_011", + "subject": { + "id": "STX_BCH_011", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0032046", + "label": "Focal cortical dysplasia" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0007018", + "label": "Attention deficit hyperactivity disorder" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_011", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_011", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_yrjyveWDEbFohuEvzjlhpvOQl", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1643A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682501A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682501", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_012.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_012.json new file mode 100644 index 00000000..ebc19c1c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_012.json @@ -0,0 +1,193 @@ +{ + "id": "STX_BCH_012", + "subject": { + "id": "STX_BCH_012", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000938", + "label": "Osteopenia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_012", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_012", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_BCH_014.json b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_014.json new file mode 100644 index 00000000..70c0f81c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_BCH_014.json @@ -0,0 +1,182 @@ +{ + "id": "STX_BCH_014", + "subject": { + "id": "STX_BCH_014", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_BCH_014", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_BCH_014", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RdCkRaelqOPNmlTQNqpGIuneS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1659del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682517del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682515", + "ref": "GC", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_01.json b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_01.json new file mode 100644 index 00000000..c6aa124d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_01.json @@ -0,0 +1,228 @@ +{ + "id": "STX_CHCO_01", + "subject": { + "id": "STX_CHCO_01", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001298", + "label": "Encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0007240", + "label": "Progressive gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P11M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_CHCO_01", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_CHCO_01", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_dbUyRegHzTqdWUExaaoEDEvxk", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.578+1dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663354dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663349", + "ref": "C", + "alt": "CG" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_02.json b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_02.json new file mode 100644 index 00000000..ea5576d6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_02.json @@ -0,0 +1,204 @@ +{ + "id": "STX_CHCO_02", + "subject": { + "id": "STX_CHCO_02", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y7M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100543", + "label": "Cognitive impairment" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007015", + "label": "Poor gross motor coordination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0030765", + "label": "Sleep terror" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012012", + "label": "EEG with parietal focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_CHCO_02", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_CHCO_02", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_bjpahApPsRLQlWrnRBBkhDjpN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.586A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127665254A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127665254", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_03.json b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_03.json new file mode 100644 index 00000000..11a59e9a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_03.json @@ -0,0 +1,226 @@ +{ + "id": "STX_CHCO_03", + "subject": { + "id": "STX_CHCO_03", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001513", + "label": "Obesity" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0100785", + "label": "Insomnia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000670", + "label": "Carious teeth" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012001", + "label": "EEG with generalized polyspikes" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_CHCO_03", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_CHCO_03", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_gLHZDKLJtiBPguWZJGKxQpKdH", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1197C>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675890C>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675890", + "ref": "C", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_05.json b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_05.json new file mode 100644 index 00000000..cd58d243 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_05.json @@ -0,0 +1,248 @@ +{ + "id": "STX_CHCO_05", + "subject": { + "id": "STX_CHCO_05", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001336", + "label": "Myoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011215", + "label": "Hemihypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0004374", + "label": "Hemiplegia/hemiparesis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001298", + "label": "Encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011196", + "label": "EEG with focal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_CHCO_05", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_CHCO_05", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_07.json b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_07.json new file mode 100644 index 00000000..f551d919 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_07.json @@ -0,0 +1,226 @@ +{ + "id": "STX_CHCO_07", + "subject": { + "id": "STX_CHCO_07", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011179", + "label": "Beta-EEG" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001298", + "label": "Encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_CHCO_07", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_CHCO_07", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_08.json b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_08.json new file mode 100644 index 00000000..1435ce8b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_08.json @@ -0,0 +1,182 @@ +{ + "id": "STX_CHCO_08", + "subject": { + "id": "STX_CHCO_08", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001298", + "label": "Encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_CHCO_08", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_CHCO_08", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_09.json b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_09.json new file mode 100644 index 00000000..b377bc10 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_CHCO_09.json @@ -0,0 +1,215 @@ +{ + "id": "STX_CHCO_09", + "subject": { + "id": "STX_CHCO_09", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y10M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011166", + "label": "Focal myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001298", + "label": "Encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_CHCO_09", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_CHCO_09", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_hmALlIwdjPcQQIHeAgtqAIlBV", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1630G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682488G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682488", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0086P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0086P.json new file mode 100644 index 00000000..4409192e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0086P.json @@ -0,0 +1,388 @@ +{ + "id": "STX_EG0086P", + "subject": { + "id": "STX_EG0086P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0000540", + "label": "Hypermetropia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0000483", + "label": "Astigmatism" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0001508", + "label": "Failure to thrive" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0001623", + "label": "Breech presentation" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P31M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0086P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0086P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_DHlUlAuOEbVpKiLbUzoZqFEUd", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.224A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658429A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658429", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0169P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0169P.json new file mode 100644 index 00000000..75850b68 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0169P.json @@ -0,0 +1,308 @@ +{ + "id": "STX_EG0169P", + "subject": { + "id": "STX_EG0169P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0002392", + "label": "EEG with polyspike wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P25M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0169P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0169P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_QACrWqoNbQXzPKPwfemphfvuK", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.748C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666250C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666250", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0219P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0219P.json new file mode 100644 index 00000000..2e90afa2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0219P.json @@ -0,0 +1,146 @@ +{ + "id": "STX_EG0219P", + "subject": { + "id": "STX_EG0219P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0000473", + "label": "Torticollis" + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + } + } + ], + "interpretations": [ + { + "id": "STX_EG0219P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0219P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_uboZSbbOaprAeoZOcxTTkZyjc", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.124T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653751T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653751", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0226P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0226P.json new file mode 100644 index 00000000..6effc6e1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0226P.json @@ -0,0 +1,292 @@ +{ + "id": "STX_EG0226P", + "subject": { + "id": "STX_EG0226P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002406", + "label": "Limb dysmetria" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0226P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0226P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nimzWypILMhFFUxqyznIWXDIS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0239P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0239P.json new file mode 100644 index 00000000..33da55ec --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0239P.json @@ -0,0 +1,182 @@ +{ + "id": "STX_EG0239P", + "subject": { + "id": "STX_EG0239P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0030147", + "label": "Truncal titubation" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + } + }, + { + "type": { + "id": "HP:0000639", + "label": "Nystagmus" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + } + } + ], + "interpretations": [ + { + "id": "STX_EG0239P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0239P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_tpZaoMPyUwPRuqPbKCHtMownp", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.795-1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668079G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668079", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0317P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0317P.json new file mode 100644 index 00000000..16a59e2b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0317P.json @@ -0,0 +1,356 @@ +{ + "id": "STX_EG0317P", + "subject": { + "id": "STX_EG0317P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P48M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0317P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0317P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wuoxtXYYDEomzFStIKbjaYMor", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.388_389del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661164_127661165del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661161", + "ref": "ACT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0337P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0337P.json new file mode 100644 index 00000000..5dfce6a9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0337P.json @@ -0,0 +1,356 @@ +{ + "id": "STX_EG0337P", + "subject": { + "id": "STX_EG0337P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000639", + "label": "Nystagmus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0009062", + "label": "Infantile axial hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001537", + "label": "Umbilical hernia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0030147", + "label": "Truncal titubation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0006986", + "label": "Upper limb spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011196", + "label": "EEG with focal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000565", + "label": "Esotropia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0337P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0337P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0394P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0394P.json new file mode 100644 index 00000000..e210fb26 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0394P.json @@ -0,0 +1,314 @@ +{ + "id": "STX_EG0394P", + "subject": { + "id": "STX_EG0394P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000707", + "label": "Abnormality of the nervous system" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0007270", + "label": "Atypical absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0004755", + "label": "Supraventricular tachycardia" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0011296", + "label": "EEG with temporal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0000639", + "label": "Nystagmus" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0002362", + "label": "Shuffling gait" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0031491", + "label": "Continuous spike and waves during slow sleep" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0000034", + "label": "Hydrocele testis" + }, + "onset": { + "age": { + "iso8601duration": "P36M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0394P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0394P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qRRIDXMXLpMmOjziDUlmfoJYT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.897_898del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668182_127668183del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668179", + "ref": "GGT", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0395P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0395P.json new file mode 100644 index 00000000..bc400348 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0395P.json @@ -0,0 +1,226 @@ +{ + "id": "STX_EG0395P", + "subject": { + "id": "STX_EG0395P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0395P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0395P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0451P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0451P.json new file mode 100644 index 00000000..f78238fa --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0451P.json @@ -0,0 +1,176 @@ +{ + "id": "STX_EG0451P", + "subject": { + "id": "STX_EG0451P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0001508", + "label": "Failure to thrive" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0030187", + "label": "Titubation" + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + } + }, + { + "type": { + "id": "HP:0004482", + "label": "Relative macrocephaly" + } + } + ], + "interpretations": [ + { + "id": "STX_EG0451P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0451P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ahWNUnTEGLjaMxZAfbqJJjcsi", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.736G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666238G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666238", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0469P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0469P.json new file mode 100644 index 00000000..760d460b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0469P.json @@ -0,0 +1,308 @@ +{ + "id": "STX_EG0469P", + "subject": { + "id": "STX_EG0469P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P42Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0001385", + "label": "Hip dysplasia" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0008843", + "label": "Hip osteoarthritis" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0000938", + "label": "Osteopenia" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P432M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P504M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0469P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0469P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YSAjFjfBUKRDXLQoKWpvlZBtE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.847G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668132G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668132", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0519P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0519P.json new file mode 100644 index 00000000..954c2e51 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0519P.json @@ -0,0 +1,182 @@ +{ + "id": "STX_EG0519P", + "subject": { + "id": "STX_EG0519P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + } + }, + { + "type": { + "id": "HP:0002070", + "label": "Limb ataxia" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + } + }, + { + "type": { + "id": "HP:0000473", + "label": "Torticollis" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + } + ], + "interpretations": [ + { + "id": "STX_EG0519P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0519P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_sjwGnwueMQLSYBOFoCRWsQxPI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.88-2A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653713A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653713", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0542P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0542P.json new file mode 100644 index 00000000..bb6a15f2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0542P.json @@ -0,0 +1,324 @@ +{ + "id": "STX_EG0542P", + "subject": { + "id": "STX_EG0542P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0009062", + "label": "Infantile axial hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011196", + "label": "EEG with focal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0004482", + "label": "Relative macrocephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0542P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0542P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ugNPEXaTzEEDtiMVSATnhePYT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.663+1G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127665332G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127665332", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0549P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0549P.json new file mode 100644 index 00000000..bef93818 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0549P.json @@ -0,0 +1,340 @@ +{ + "id": "STX_EG0549P", + "subject": { + "id": "STX_EG0549P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0006813", + "label": "Hemiclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0002061", + "label": "Lower limb spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0031491", + "label": "Continuous spike and waves during slow sleep" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P44M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0549P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0549P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0573P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0573P.json new file mode 100644 index 00000000..3b21e3d1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0573P.json @@ -0,0 +1,308 @@ +{ + "id": "STX_EG0573P", + "subject": { + "id": "STX_EG0573P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001537", + "label": "Umbilical hernia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0100814", + "label": "Blue nevus" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0009062", + "label": "Infantile axial hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0573P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0573P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YxmTRDxdsNQlbwTHCpnVtGMNA", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.867dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668152dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668151", + "ref": "T", + "alt": "TA" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0598P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0598P.json new file mode 100644 index 00000000..8da188c4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0598P.json @@ -0,0 +1,356 @@ +{ + "id": "STX_EG0598P", + "subject": { + "id": "STX_EG0598P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011199", + "label": "EEG with generalized sharp slow waves" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001357", + "label": "Plagiocephaly" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0000297", + "label": "Facial hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011169", + "label": "Generalized clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0598P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0598P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_dRJpKGLcGqmzkdRxvynTBMwue", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.989dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672076dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672075", + "ref": "A", + "alt": "AT" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0661P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0661P.json new file mode 100644 index 00000000..61e131f4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0661P.json @@ -0,0 +1,147 @@ +{ + "id": "STX_EG0661P", + "subject": { + "id": "STX_EG0661P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "No Seizures" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + } + } + ], + "interpretations": [ + { + "id": "STX_EG0661P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0661P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_OEYRbPOgrlaGhSzWPXktxOgvn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1709C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127690781C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127690781", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0685P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0685P.json new file mode 100644 index 00000000..6af15fcb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0685P.json @@ -0,0 +1,127 @@ +{ + "id": "STX_EG0685P", + "subject": { + "id": "STX_EG0685P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P39M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0685P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0685P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0699P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0699P.json new file mode 100644 index 00000000..6da751d6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0699P.json @@ -0,0 +1,270 @@ +{ + "id": "STX_EG0699P", + "subject": { + "id": "STX_EG0699P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0001266", + "label": "Choreoathetosis" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P42M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0699P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0699P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FepnSptmReaYdQGMkCNbedquO", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1275del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676669del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676666", + "ref": "CA", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0720P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0720P.json new file mode 100644 index 00000000..c36f7c1a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0720P.json @@ -0,0 +1,182 @@ +{ + "id": "STX_EG0720P", + "subject": { + "id": "STX_EG0720P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + } + }, + { + "type": { + "id": "HP:0011210", + "label": "EEG with occipital slowing" + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + } + ], + "interpretations": [ + { + "id": "STX_EG0720P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0720P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IwBRbECWIXBqPZNhqNBHdNfQv", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.167C>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653794C>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653794", + "ref": "C", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0721P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0721P.json new file mode 100644 index 00000000..4fbe1c08 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0721P.json @@ -0,0 +1,226 @@ +{ + "id": "STX_EG0721P", + "subject": { + "id": "STX_EG0721P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0721P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0721P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0731P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0731P.json new file mode 100644 index 00000000..2fae994f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0731P.json @@ -0,0 +1,183 @@ +{ + "id": "STX_EG0731P", + "subject": { + "id": "STX_EG0731P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0003474", + "label": "Sensory impairment" + } + }, + { + "type": { + "id": "HP:0007057", + "label": "Poor hand-eye coordination" + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + } + }, + { + "type": { + "id": "HP:0020036", + "label": "Upper limb dysmetria" + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "No Seizures" + }, + "excluded": true + } + ], + "interpretations": [ + { + "id": "STX_EG0731P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0731P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_jQiBLWzGPNQCAvsecBcGAFNTd", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0752P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0752P.json new file mode 100644 index 00000000..75a011e6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0752P.json @@ -0,0 +1,185 @@ +{ + "id": "STX_EG0752P", + "subject": { + "id": "STX_EG0752P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002474", + "label": "Expressive language delay" + } + }, + { + "type": { + "id": "HP:0002317", + "label": "Unsteady gait" + } + }, + { + "type": { + "id": "HP:0002172", + "label": "Postural instability" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0002353", + "label": "No EEG abnormality" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0012443", + "label": "No Abnormality of brain morphology" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0002275", + "label": "Poor motor coordination" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "No Seizures" + }, + "excluded": true + } + ], + "interpretations": [ + { + "id": "STX_EG0752P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0752P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_xWnRyNjHmjHVIWixvZOlakxGz", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.37+1_37+2del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127612441_127612442del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127612440", + "ref": "AGT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0810P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0810P.json new file mode 100644 index 00000000..6f5d5970 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0810P.json @@ -0,0 +1,158 @@ +{ + "id": "STX_EG0810P", + "subject": { + "id": "STX_EG0810P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001357", + "label": "Plagiocephaly" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0000639", + "label": "Nystagmus" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + } + ], + "interpretations": [ + { + "id": "STX_EG0810P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0810P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ERjbdtZIqfcceoAKtQnZsrfme", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1095_1096del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673246_127673247del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673243", + "ref": "ACT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0863P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0863P.json new file mode 100644 index 00000000..bee9a2ee --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0863P.json @@ -0,0 +1,260 @@ +{ + "id": "STX_EG0863P", + "subject": { + "id": "STX_EG0863P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0863P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0863P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ZJpabUqOemSWPGSVeASROKXxE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.295_299delinsGAC" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660078_127660082delinsGAC" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660078", + "ref": "TACCG", + "alt": "GAC" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0893P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0893P.json new file mode 100644 index 00000000..dc642faa --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0893P.json @@ -0,0 +1,155 @@ +{ + "id": "STX_EG0893P", + "subject": { + "id": "STX_EG0893P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0025234", + "label": "Parasomnia" + } + }, + { + "type": { + "id": "HP:0002353", + "label": "No EEG abnormality" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0000736", + "label": "Short attention span" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "No Seizures" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0011342", + "label": "Mild global developmental delay" + } + }, + { + "type": { + "id": "HP:0012443", + "label": "No Abnormality of brain morphology" + }, + "excluded": true + } + ], + "interpretations": [ + { + "id": "STX_EG0893P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0893P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ZOfpIjnJTfSlWEKqYsqrjKYAe", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.679C>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666181C>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666181", + "ref": "C", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0898P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0898P.json new file mode 100644 index 00000000..bc07dc97 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0898P.json @@ -0,0 +1,176 @@ +{ + "id": "STX_EG0898P", + "subject": { + "id": "STX_EG0898P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + } + }, + { + "type": { + "id": "HP:0002427", + "label": "Motor aphasia" + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + } + }, + { + "type": { + "id": "HP:0000964", + "label": "Eczema" + } + }, + { + "type": { + "id": "HP:0000364", + "label": "Hearing abnormality" + } + }, + { + "type": { + "id": "HP:0000602", + "label": "Ophthalmoplegia" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + } + ], + "interpretations": [ + { + "id": "STX_EG0898P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0898P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_lpWpUtJvjFZfCTjyRAsSrJTCE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1194T>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675887T>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675887", + "ref": "T", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0906P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0906P.json new file mode 100644 index 00000000..db70717a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0906P.json @@ -0,0 +1,140 @@ +{ + "id": "STX_EG0906P", + "subject": { + "id": "STX_EG0906P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0011443", + "label": "Abnormality of coordination" + } + } + ], + "interpretations": [ + { + "id": "STX_EG0906P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0906P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_LSUBWztrWhhivgfjcKQYuwKrc", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1261G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676655G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676655", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0907P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0907P.json new file mode 100644 index 00000000..cc0d0492 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0907P.json @@ -0,0 +1,237 @@ +{ + "id": "STX_EG0907P", + "subject": { + "id": "STX_EG0907P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000821", + "label": "Hypothyroidism" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001601", + "label": "Laryngomalacia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0907P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0907P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_krTFTtPUsUJwRqsynTVSOrgCQ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.734A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666236A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666236", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0931P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0931P.json new file mode 100644 index 00000000..9bf6e850 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0931P.json @@ -0,0 +1,244 @@ +{ + "id": "STX_EG0931P", + "subject": { + "id": "STX_EG0931P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0931P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0931P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_TITMMZRmKaZSNbPuRexDsnzdA", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1656C>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682514C>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682514", + "ref": "C", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG0939P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG0939P.json new file mode 100644 index 00000000..4d746d7c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG0939P.json @@ -0,0 +1,457 @@ +{ + "id": "STX_EG0939P", + "subject": { + "id": "STX_EG0939P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012014", + "label": "EEG with central focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012172", + "label": "Stereotypical body rocking" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001488", + "label": "Bilateral ptosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007010", + "label": "Poor fine motor coordination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007015", + "label": "Poor gross motor coordination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003327", + "label": "Axial muscle weakness" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006808", + "label": "Cerebral hypomyelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002194", + "label": "Delayed gross motor development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000805", + "label": "Enuresis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG0939P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG0939P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_PRyXCetfKEgVfiKuzoNIeiSpG", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1277T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676671T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676671", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1010P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1010P.json new file mode 100644 index 00000000..30e740ba --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1010P.json @@ -0,0 +1,188 @@ +{ + "id": "STX_EG1010P", + "subject": { + "id": "STX_EG1010P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0002194", + "label": "Delayed gross motor development" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0012000", + "label": "EEG with generalized spikes" + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + } + }, + { + "type": { + "id": "HP:0010536", + "label": "Central sleep apnea" + } + }, + { + "type": { + "id": "HP:0030186", + "label": "Kinetic tremor" + } + }, + { + "type": { + "id": "HP:0200048", + "label": "Cyanotic episode" + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + } + } + ], + "interpretations": [ + { + "id": "STX_EG1010P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1010P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_zxnuxeVZtxokRpyggSumSnoqu", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.551del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663326del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663324", + "ref": "GA", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1074P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1074P.json new file mode 100644 index 00000000..6901159b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1074P.json @@ -0,0 +1,356 @@ +{ + "id": "STX_EG1074P", + "subject": { + "id": "STX_EG1074P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002392", + "label": "EEG with polyspike wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003324", + "label": "Generalized muscle weakness" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1074P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1074P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VKiJkhCSMXDhETkRLPNnVbaMb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1702+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682561G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682561", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1141P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1141P.json new file mode 100644 index 00000000..6a63827f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1141P.json @@ -0,0 +1,292 @@ +{ + "id": "STX_EG1141P", + "subject": { + "id": "STX_EG1141P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0001264", + "label": "Spastic diplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0002474", + "label": "Expressive language delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P180M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1141P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1141P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BJZffdUwIiPnwfyCwdlioFObH", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1569_1570del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682427_127682428del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682425", + "ref": "CAT", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1184P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1184P.json new file mode 100644 index 00000000..71633f11 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1184P.json @@ -0,0 +1,347 @@ +{ + "id": "STX_EG1184P", + "subject": { + "id": "STX_EG1184P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P21Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002317", + "label": "Unsteady gait" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011099", + "label": "Spastic hemiparesis" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011196", + "label": "EEG with focal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010993", + "label": "Abnormality of the cerebral subcortex" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011193", + "label": "EEG with focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1184P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1184P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mJqypnuEajLFkuhqvgZelPAGT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.62_64del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651627_127651629del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651626", + "ref": "AAGG", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1188P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1188P.json new file mode 100644 index 00000000..13af2f33 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1188P.json @@ -0,0 +1,204 @@ +{ + "id": "STX_EG1188P", + "subject": { + "id": "STX_EG1188P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1188P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1188P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1190P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1190P.json new file mode 100644 index 00000000..8302ea8c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1190P.json @@ -0,0 +1,276 @@ +{ + "id": "STX_EG1190P", + "subject": { + "id": "STX_EG1190P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0100704", + "label": "Cerebral visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000737", + "label": "Irritability" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1190P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1190P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_vbZwGOYxzAJcpWUPdmYsAWvaI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.685C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666187C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666187", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1192P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1192P.json new file mode 100644 index 00000000..6cd103da --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1192P.json @@ -0,0 +1,347 @@ +{ + "id": "STX_EG1192P", + "subject": { + "id": "STX_EG1192P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P13Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001508", + "label": "Failure to thrive" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002579", + "label": "Gastrointestinal dysmotility" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002578", + "label": "Gastroparesis" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000938", + "label": "Osteopenia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012378", + "label": "Fatigue" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0009716", + "label": "Subependymal nodules" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0006999", + "label": "Basal ganglia gliosis" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0430022", + "label": "Abnormality of the sphenoid sinus" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011296", + "label": "EEG with temporal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011210", + "label": "EEG with occipital slowing" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1192P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1192P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1269P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1269P.json new file mode 100644 index 00000000..b627cfc4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1269P.json @@ -0,0 +1,212 @@ +{ + "id": "STX_EG1269P", + "subject": { + "id": "STX_EG1269P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0000504", + "label": "Abnormality of vision" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0011166", + "label": "Focal myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1269P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1269P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_uNNGBbHCDzvRPyZlYMBGlxpim", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1652G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682510G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682510", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1299P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1299P.json new file mode 100644 index 00000000..0f8f1e08 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1299P.json @@ -0,0 +1,152 @@ +{ + "id": "STX_EG1299P", + "subject": { + "id": "STX_EG1299P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0002078", + "label": "Truncal ataxia" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0011210", + "label": "EEG with occipital slowing" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + } + } + ], + "interpretations": [ + { + "id": "STX_EG1299P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1299P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nimzWypILMhFFUxqyznIWXDIS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1322P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1322P.json new file mode 100644 index 00000000..c14b8888 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1322P.json @@ -0,0 +1,244 @@ +{ + "id": "STX_EG1322P", + "subject": { + "id": "STX_EG1322P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0000737", + "label": "Irritability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P36M" + } + } + }, + { + "type": { + "id": "HP:0002349", + "label": "Focal aware seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P36M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1322P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1322P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1324P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1324P.json new file mode 100644 index 00000000..a18ca04f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1324P.json @@ -0,0 +1,308 @@ +{ + "id": "STX_EG1324P", + "subject": { + "id": "STX_EG1324P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0002392", + "label": "EEG with polyspike wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + }, + { + "type": { + "id": "HP:0001622", + "label": "Premature birth" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P13M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1324P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1324P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_zabPeZLqDZlAXCOZbmqUAoGBx", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1420C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678491C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678491", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1368P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1368P.json new file mode 100644 index 00000000..e3e50157 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1368P.json @@ -0,0 +1,152 @@ +{ + "id": "STX_EG1368P", + "subject": { + "id": "STX_EG1368P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + } + ], + "interpretations": [ + { + "id": "STX_EG1368P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1368P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_TYpsGxJeYBSmeoEnQItgtjAUS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.170-2A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658373A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658373", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1379P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1379P.json new file mode 100644 index 00000000..db8dfe05 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1379P.json @@ -0,0 +1,212 @@ +{ + "id": "STX_EG1379P", + "subject": { + "id": "STX_EG1379P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001601", + "label": "Laryngomalacia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1379P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1379P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1399P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1399P.json new file mode 100644 index 00000000..fe6ff20b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1399P.json @@ -0,0 +1,141 @@ +{ + "id": "STX_EG1399P", + "subject": { + "id": "STX_EG1399P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001324", + "label": "Muscle weakness" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "No Seizures" + }, + "excluded": true + } + ], + "interpretations": [ + { + "id": "STX_EG1399P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1399P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JsAeRTIdubYnUZVLgiMxXxcBb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1061G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673212G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673212", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1414P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1414P.json new file mode 100644 index 00000000..c632179e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1414P.json @@ -0,0 +1,248 @@ +{ + "id": "STX_EG1414P", + "subject": { + "id": "STX_EG1414P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0100704", + "label": "Cerebral visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0100702", + "label": "Arachnoid cyst" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0007069", + "label": "Profound static encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1414P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1414P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1494P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1494P.json new file mode 100644 index 00000000..07ffa8c4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1494P.json @@ -0,0 +1,277 @@ +{ + "id": "STX_EG1494P", + "subject": { + "id": "STX_EG1494P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0012016", + "label": "EEG with occipital focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0012443", + "label": "No Abnormality of brain morphology" + }, + "excluded": true, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1494P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1494P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1570P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1570P.json new file mode 100644 index 00000000..d85f49cf --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1570P.json @@ -0,0 +1,204 @@ +{ + "id": "STX_EG1570P", + "subject": { + "id": "STX_EG1570P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0100543", + "label": "Cognitive impairment" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1570P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1570P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1634P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1634P.json new file mode 100644 index 00000000..98d63b83 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1634P.json @@ -0,0 +1,152 @@ +{ + "id": "STX_EG1634P", + "subject": { + "id": "STX_EG1634P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0100543", + "label": "Cognitive impairment" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + } + } + ], + "interpretations": [ + { + "id": "STX_EG1634P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1634P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_UhsZwiSJverJJWIjlhfnGzlmn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1360-1_1360insC" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678430_127678431insC" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678430", + "ref": "G", + "alt": "GC" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1643P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1643P.json new file mode 100644 index 00000000..6343ade5 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1643P.json @@ -0,0 +1,270 @@ +{ + "id": "STX_EG1643P", + "subject": { + "id": "STX_EG1643P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100543", + "label": "Cognitive impairment" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011206", + "label": "EEG with generalized slow activity grade 1" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_EG1643P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1643P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_EG1684P.json b/notebooks/STXBP1/input/PMID_35190816_STX_EG1684P.json new file mode 100644 index 00000000..26964831 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_EG1684P.json @@ -0,0 +1,182 @@ +{ + "id": "STX_EG1684P", + "subject": { + "id": "STX_EG1684P", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P13Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + } + }, + { + "type": { + "id": "HP:0002061", + "label": "Lower limb spasticity" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + } + }, + { + "type": { + "id": "HP:0002141", + "label": "Gait imbalance" + } + } + ], + "interpretations": [ + { + "id": "STX_EG1684P", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_EG1684P", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_cPtmeLIMgupgsngtVuWbqrGLz", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.84G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651649G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651649", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Fila_1_EG_CB.json b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_1_EG_CB.json new file mode 100644 index 00000000..142ca28f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_1_EG_CB.json @@ -0,0 +1,248 @@ +{ + "id": "STX_Fila_1_EG_CB", + "subject": { + "id": "STX_Fila_1_EG_CB", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P28Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0007301", + "label": "Oromotor apraxia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002463", + "label": "Language impairment" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Fila_1_EG_CB", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Fila_1_EG_CB", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Fila_2_EG_CB.json b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_2_EG_CB.json new file mode 100644 index 00000000..f6849d97 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_2_EG_CB.json @@ -0,0 +1,364 @@ +{ + "id": "STX_Fila_2_EG_CB", + "subject": { + "id": "STX_Fila_2_EG_CB" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002141", + "label": "Gait imbalance" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002463", + "label": "Language impairment" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0009830", + "label": "Peripheral neuropathy" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002099", + "label": "Asthma" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012387", + "label": "Bronchitis" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0003121", + "label": "Limb joint contracture" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0004322", + "label": "Short stature" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000077", + "label": "Abnormality of the kidney" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Fila_2_EG_CB", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Fila_2_EG_CB", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wsxsfnveSwZlzNzqPMcKBJmgi", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1334A>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676728A>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676728", + "ref": "A", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Fila_4_EG_CB.json b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_4_EG_CB.json new file mode 100644 index 00000000..d849c4a2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_4_EG_CB.json @@ -0,0 +1,287 @@ +{ + "id": "STX_Fila_4_EG_CB", + "subject": { + "id": "STX_Fila_4_EG_CB" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002141", + "label": "Gait imbalance" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002381", + "label": "Aphasia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0006919", + "label": "Abnormal aggressive, impulsive or violent behavior" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0020045", + "label": "Esodeviation" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000286", + "label": "Epicanthus" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Fila_4_EG_CB", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Fila_4_EG_CB", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_XPqokWVGnoMWFbjdGIqVzKdvf", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1387G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678458G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678458", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Fila_5_EG_CB.json b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_5_EG_CB.json new file mode 100644 index 00000000..a5460a01 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_5_EG_CB.json @@ -0,0 +1,281 @@ +{ + "id": "STX_Fila_5_EG_CB", + "subject": { + "id": "STX_Fila_5_EG_CB", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P25Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002372", + "label": "Normal interictal EEG" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002322", + "label": "Resting tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003202", + "label": "Skeletal muscle atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0009027", + "label": "Foot dorsiflexor weakness" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002463", + "label": "Language impairment" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007302", + "label": "Bipolar affective disorder" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100279", + "label": "Ulcerative colitis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000011", + "label": "Neurogenic bladder" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Fila_5_EG_CB", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Fila_5_EG_CB", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Fila_6_EG_CB.json b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_6_EG_CB.json new file mode 100644 index 00000000..15f743a0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_6_EG_CB.json @@ -0,0 +1,270 @@ +{ + "id": "STX_Fila_6_EG_CB", + "subject": { + "id": "STX_Fila_6_EG_CB", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P26Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011175", + "label": "Versive seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0031491", + "label": "Continuous spike and waves during slow sleep" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002463", + "label": "Language impairment" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Fila_6_EG_CB", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Fila_6_EG_CB", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BKrplTcVupEORHRivHcNpsYTR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.874C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668159C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668159", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Fila_7_EG_CB.json b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_7_EG_CB.json new file mode 100644 index 00000000..af7d4d6a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_7_EG_CB.json @@ -0,0 +1,298 @@ +{ + "id": "STX_Fila_7_EG_CB", + "subject": { + "id": "STX_Fila_7_EG_CB" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011169", + "label": "Generalized clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0031951", + "label": "Nocturnal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002463", + "label": "Language impairment" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Fila_7_EG_CB", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Fila_7_EG_CB", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_LqvYtwtjLhXXLjMHuWDSAESLq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1431_1448delinsAT" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678502_127678519delinsAT" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678502", + "ref": "GTGGACTCCGATTATCAA", + "alt": "AT" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Fila_8_EG_CB.json b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_8_EG_CB.json new file mode 100644 index 00000000..ccdb8980 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Fila_8_EG_CB.json @@ -0,0 +1,237 @@ +{ + "id": "STX_Fila_8_EG_CB", + "subject": { + "id": "STX_Fila_8_EG_CB", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P20Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0025097", + "label": "Eyelid myoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011155", + "label": "Focal autonomic seizures with altered responsiveness" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002378", + "label": "Hand tremor" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002463", + "label": "Language impairment" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012393", + "label": "Allergy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Fila_8_EG_CB", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Fila_8_EG_CB", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_jUpSWRjsnMZvZpqarxABKFQCw", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.758G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666260G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666260", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G2_P1.json b/notebooks/STXBP1/input/PMID_35190816_STX_G2_P1.json new file mode 100644 index 00000000..119f49c2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G2_P1.json @@ -0,0 +1,215 @@ +{ + "id": "STX_G2_P1", + "subject": { + "id": "STX_G2_P1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000726", + "label": "Dementia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G2_P1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G2_P1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_StGVTmVzRfkzTMDacdrHBaFPX", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.142del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653769del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653768", + "ref": "GA", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G2_P2.json b/notebooks/STXBP1/input/PMID_35190816_STX_G2_P2.json new file mode 100644 index 00000000..c4e0130f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G2_P2.json @@ -0,0 +1,248 @@ +{ + "id": "STX_G2_P2", + "subject": { + "id": "STX_G2_P2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002194", + "label": "Delayed gross motor development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010862", + "label": "Delayed fine motor development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000726", + "label": "Dementia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100512", + "label": "Vitamin D deficiency" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G2_P2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G2_P2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G2_P3.json b/notebooks/STXBP1/input/PMID_35190816_STX_G2_P3.json new file mode 100644 index 00000000..88c48878 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G2_P3.json @@ -0,0 +1,182 @@ +{ + "id": "STX_G2_P3", + "subject": { + "id": "STX_G2_P3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002194", + "label": "Delayed gross motor development" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010862", + "label": "Delayed fine motor development" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G2_P3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G2_P3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G2_P4.json b/notebooks/STXBP1/input/PMID_35190816_STX_G2_P4.json new file mode 100644 index 00000000..adaf6246 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G2_P4.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G2_P4", + "subject": { + "id": "STX_G2_P4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002194", + "label": "Delayed gross motor development" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000726", + "label": "Dementia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G2_P4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G2_P4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YSAjFjfBUKRDXLQoKWpvlZBtE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.847G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668132G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668132", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P10.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P10.json new file mode 100644 index 00000000..47f1c8c8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P10.json @@ -0,0 +1,228 @@ +{ + "id": "STX_G3_P10", + "subject": { + "id": "STX_G3_P10", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002120", + "label": "Cerebral cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P10", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P10", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_CNfscbMYnAIrgmUOkTGcQJyMT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1038_1039del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673189_127673190del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673187", + "ref": "ACC", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P11.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P11.json new file mode 100644 index 00000000..341bf7fe --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P11.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P11", + "subject": { + "id": "STX_G3_P11", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P11", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P11", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P12.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P12.json new file mode 100644 index 00000000..cd631bbe --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P12.json @@ -0,0 +1,180 @@ +{ + "id": "STX_G3_P12", + "subject": { + "id": "STX_G3_P12", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P12", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P12", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_OZwuaiaHAliQpCvOzdCnAQcGb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1249G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675942G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675942", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P13.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P13.json new file mode 100644 index 00000000..fa2a44ac --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P13.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P13", + "subject": { + "id": "STX_G3_P13", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P7M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P13", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P13", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_cxdWeStUtPOpDtvvfiXbJIRAY", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1495_1497del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127680190_127680192del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127680187", + "ref": "CACT", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P14.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P14.json new file mode 100644 index 00000000..c4728464 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P14.json @@ -0,0 +1,193 @@ +{ + "id": "STX_G3_P14", + "subject": { + "id": "STX_G3_P14", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y11M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011166", + "label": "Focal myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0006989", + "label": "Dysplastic corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P14", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P14", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P15.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P15.json new file mode 100644 index 00000000..6ba617ef --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P15.json @@ -0,0 +1,180 @@ +{ + "id": "STX_G3_P15", + "subject": { + "id": "STX_G3_P15", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P48M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P48M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0011147", + "label": "Typical absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P48M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P48M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P72M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P15", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P15", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P16.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P16.json new file mode 100644 index 00000000..07a7f5b9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P16.json @@ -0,0 +1,215 @@ +{ + "id": "STX_G3_P16", + "subject": { + "id": "STX_G3_P16", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y5M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P16", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P16", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ulyvYJpjbWKAIPVVmmOACZQRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.364C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661140C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661140", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P17.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P17.json new file mode 100644 index 00000000..7680cbea --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P17.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P17", + "subject": { + "id": "STX_G3_P17", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P17", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P17", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P18.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P18.json new file mode 100644 index 00000000..82fee325 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P18.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P18", + "subject": { + "id": "STX_G3_P18", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y11M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P18", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P18", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P19.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P19.json new file mode 100644 index 00000000..0eea6b45 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P19.json @@ -0,0 +1,193 @@ +{ + "id": "STX_G3_P19", + "subject": { + "id": "STX_G3_P19", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0002120", + "label": "Cerebral cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P19", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P19", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_valgfVAyiQsvwuCimzyoAAmzU", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.548T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663323T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663323", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P2.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P2.json new file mode 100644 index 00000000..77573455 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P2.json @@ -0,0 +1,193 @@ +{ + "id": "STX_G3_P2", + "subject": { + "id": "STX_G3_P2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y5M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P21.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P21.json new file mode 100644 index 00000000..a9232ae7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P21.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P21", + "subject": { + "id": "STX_G3_P21", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P21", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P21", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_faQlRrEbNducoOBHjLtcsfYTA", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1381_1390dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678452_127678461dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678443", + "ref": "C", + "alt": "CGCCGGAGCAA" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P23.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P23.json new file mode 100644 index 00000000..de461676 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P23.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P23", + "subject": { + "id": "STX_G3_P23", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P23", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P23", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_noBAeQZAnrSKbUAeHsBQDsLRK", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.569G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663344G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663344", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P25.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P25.json new file mode 100644 index 00000000..919e9d14 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P25.json @@ -0,0 +1,160 @@ +{ + "id": "STX_G3_P25", + "subject": { + "id": "STX_G3_P25", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P25", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P25", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_gxgzQbEgKvzDsCLfmOXeALMmA", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1627G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682485G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682485", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P26.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P26.json new file mode 100644 index 00000000..27dfdcf6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P26.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P26", + "subject": { + "id": "STX_G3_P26", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + }, + { + "type": { + "id": "HP:0025190", + "label": "Generalized tonic-clonic seizures without focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P20M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P26", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P26", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_NIauBCvpRjuXEPqFlFSftgwEi", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.795-1G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668079G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668079", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P27.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P27.json new file mode 100644 index 00000000..aa6aacb6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P27.json @@ -0,0 +1,164 @@ +{ + "id": "STX_G3_P27", + "subject": { + "id": "STX_G3_P27", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y0M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P17M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P27", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P27", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_MmdcTyPiNSqvqmaJWkrJlGzrN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.731T>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666233T>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666233", + "ref": "T", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P28.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P28.json new file mode 100644 index 00000000..83fcf18b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P28.json @@ -0,0 +1,149 @@ +{ + "id": "STX_G3_P28", + "subject": { + "id": "STX_G3_P28", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y5M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P28", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P28", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P29.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P29.json new file mode 100644 index 00000000..3922928e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P29.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P29", + "subject": { + "id": "STX_G3_P29", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y5M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P29", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P29", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SGzhZDKXYcLjoCVVHAqAzvUNQ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.956del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127669951del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127669949", + "ref": "TG", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P3.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P3.json new file mode 100644 index 00000000..55db29b9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P3.json @@ -0,0 +1,182 @@ +{ + "id": "STX_G3_P3", + "subject": { + "id": "STX_G3_P3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y0M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ZfJikGhduKpSBIqRVBGIwyquu", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.430G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663205G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663205", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P30.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P30.json new file mode 100644 index 00000000..df29ceef --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P30.json @@ -0,0 +1,244 @@ +{ + "id": "STX_G3_P30", + "subject": { + "id": "STX_G3_P30", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0002120", + "label": "Cerebral cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P15M" + } + } + }, + { + "type": { + "id": "HP:0006989", + "label": "Dysplastic corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P15M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P30", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P30", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mCiNZkpdNEtxsohPGABFikGjD", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1439C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678510C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678510", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P31.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P31.json new file mode 100644 index 00000000..3b8c26aa --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P31.json @@ -0,0 +1,182 @@ +{ + "id": "STX_G3_P31", + "subject": { + "id": "STX_G3_P31", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P31", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P31", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_jUpSWRjsnMZvZpqarxABKFQCw", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.758G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666260G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666260", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P32.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P32.json new file mode 100644 index 00000000..4c633e87 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P32.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P32", + "subject": { + "id": "STX_G3_P32", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P32", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P32", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_vwwUMBjKtSyIXJTSNZMFescVo", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.167C>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653794C>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653794", + "ref": "C", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P33.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P33.json new file mode 100644 index 00000000..5ed1dbeb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P33.json @@ -0,0 +1,196 @@ +{ + "id": "STX_G3_P33", + "subject": { + "id": "STX_G3_P33", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P27M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P27M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P27M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P27M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P27M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P33", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P33", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wNZKMpIwelboXaASPtGhCvuHx", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.904G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127669899G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127669899", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P34.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P34.json new file mode 100644 index 00000000..227412a1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P34.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P34", + "subject": { + "id": "STX_G3_P34", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P34", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P34", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_AgmbhleOfRPAjYAbVGcIOHWVP", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.429+1G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661206G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661206", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P35.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P35.json new file mode 100644 index 00000000..f2c2daf4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P35.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P35", + "subject": { + "id": "STX_G3_P35", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P35", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P35", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_mYrnLWEGeyTtoGlUjgaJUZwgy", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.164T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653791T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653791", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P36.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P36.json new file mode 100644 index 00000000..5406ffc8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P36.json @@ -0,0 +1,149 @@ +{ + "id": "STX_G3_P36", + "subject": { + "id": "STX_G3_P36", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y0M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P36", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P36", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HvLWUbjovVkMZyUlbDcEhsQLq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1250-2A>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676642A>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676642", + "ref": "A", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P37.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P37.json new file mode 100644 index 00000000..6af731a1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P37.json @@ -0,0 +1,196 @@ +{ + "id": "STX_G3_P37", + "subject": { + "id": "STX_G3_P37", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y0M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P5M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P37", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P37", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JNwMbMVFBofBXCXINIlQTWWJp", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1642A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682500A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682500", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P38.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P38.json new file mode 100644 index 00000000..a646bae4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P38.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P38", + "subject": { + "id": "STX_G3_P38", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P38", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P38", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GXRPGIkPMnRMhjhEwCjfkwjcL", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1547+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127680243G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127680243", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P39.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P39.json new file mode 100644 index 00000000..f6585b3d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P39.json @@ -0,0 +1,196 @@ +{ + "id": "STX_G3_P39", + "subject": { + "id": "STX_G3_P39", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P39", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P39", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P4.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P4.json new file mode 100644 index 00000000..928977d7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P4.json @@ -0,0 +1,182 @@ +{ + "id": "STX_G3_P4", + "subject": { + "id": "STX_G3_P4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P5.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P5.json new file mode 100644 index 00000000..670762dc --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P5.json @@ -0,0 +1,171 @@ +{ + "id": "STX_G3_P5", + "subject": { + "id": "STX_G3_P5", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P11Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_noBAeQZAnrSKbUAeHsBQDsLRK", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.569G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663344G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663344", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P6.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P6.json new file mode 100644 index 00000000..d3edbef8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P6.json @@ -0,0 +1,160 @@ +{ + "id": "STX_G3_P6", + "subject": { + "id": "STX_G3_P6", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y3M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P8.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P8.json new file mode 100644 index 00000000..22fb0f57 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P8.json @@ -0,0 +1,128 @@ +{ + "id": "STX_G3_P8", + "subject": { + "id": "STX_G3_P8", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P8", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P8", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_gECHmQLGtIwlzoGdRNdhbQgox", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.353T>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661129T>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661129", + "ref": "T", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_G3_P9.json b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P9.json new file mode 100644 index 00000000..0b43d55c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_G3_P9.json @@ -0,0 +1,193 @@ +{ + "id": "STX_G3_P9", + "subject": { + "id": "STX_G3_P9", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P4M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_G3_P9", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_G3_P9", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_1.json new file mode 100644 index 00000000..6d5ed5f2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_1.json @@ -0,0 +1,270 @@ +{ + "id": "STX_HSJD_Patient_1", + "subject": { + "id": "STX_HSJD_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P16Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012172", + "label": "Stereotypical body rocking" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002451", + "label": "Limb dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0025387", + "label": "Pill-rolling tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011451", + "label": "Congenital microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012450", + "label": "Chronic constipation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_10.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_10.json new file mode 100644 index 00000000..c327682e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_10.json @@ -0,0 +1,226 @@ +{ + "id": "STX_HSJD_Patient_10", + "subject": { + "id": "STX_HSJD_Patient_10", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_10", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_10", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JafLPMdObtPfZPcWqffGQOGea", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1105G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673256G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673256", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_12.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_12.json new file mode 100644 index 00000000..91333043 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_12.json @@ -0,0 +1,193 @@ +{ + "id": "STX_HSJD_Patient_12", + "subject": { + "id": "STX_HSJD_Patient_12", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_12", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_12", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_13.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_13.json new file mode 100644 index 00000000..f9261815 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_13.json @@ -0,0 +1,182 @@ +{ + "id": "STX_HSJD_Patient_13", + "subject": { + "id": "STX_HSJD_Patient_13", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001622", + "label": "Premature birth" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_13", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_13", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_RBdXjpFFwtjXcIkeVFvAJaWQF", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.416C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661192C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661192", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_14.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_14.json new file mode 100644 index 00000000..2ce1e24f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_14.json @@ -0,0 +1,248 @@ +{ + "id": "STX_HSJD_Patient_14", + "subject": { + "id": "STX_HSJD_Patient_14", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002451", + "label": "Limb dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003121", + "label": "Limb joint contracture" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_14", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_14", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JgRemqNWEJRzJdZNaZvSNcsKk", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.325+1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660109G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660109", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_15.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_15.json new file mode 100644 index 00000000..80f20a2d --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_15.json @@ -0,0 +1,193 @@ +{ + "id": "STX_HSJD_Patient_15", + "subject": { + "id": "STX_HSJD_Patient_15", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_15", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_15", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_OGyldykljagEoOTXLWlMWUSTN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.998_1000del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672085_127672087del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672079", + "ref": "TGAA", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_16.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_16.json new file mode 100644 index 00000000..72824ea5 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_16.json @@ -0,0 +1,215 @@ +{ + "id": "STX_HSJD_Patient_16", + "subject": { + "id": "STX_HSJD_Patient_16", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100710", + "label": "Impulsivity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_16", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_16", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_CTbUqkQDlDjeEzytfAeHvDdQZ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1380_1381dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678451_127678452dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678450", + "ref": "G", + "alt": "GCA" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_17.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_17.json new file mode 100644 index 00000000..ee5d4718 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_17.json @@ -0,0 +1,215 @@ +{ + "id": "STX_HSJD_Patient_17", + "subject": { + "id": "STX_HSJD_Patient_17", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_17", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_17", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SDWbihkYzUNwGkdNifdTEJuOe", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.389del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661165del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661164", + "ref": "CT", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_2.json new file mode 100644 index 00000000..2d7d15e3 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_2.json @@ -0,0 +1,226 @@ +{ + "id": "STX_HSJD_Patient_2", + "subject": { + "id": "STX_HSJD_Patient_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012172", + "label": "Stereotypical body rocking" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012450", + "label": "Chronic constipation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002372", + "label": "Normal interictal EEG" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_uVSbqewaTVQnvsXofVxPoQiII", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.164T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653791T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653791", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_5.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_5.json new file mode 100644 index 00000000..d0cfae4e --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_5.json @@ -0,0 +1,237 @@ +{ + "id": "STX_HSJD_Patient_5", + "subject": { + "id": "STX_HSJD_Patient_5", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002451", + "label": "Limb dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002015", + "label": "Dysphagia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FOqiTGeuTTOLVQlmgsTHDEDtH", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.87+1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651653G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651653", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_6.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_6.json new file mode 100644 index 00000000..926c991b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_6.json @@ -0,0 +1,237 @@ +{ + "id": "STX_HSJD_Patient_6", + "subject": { + "id": "STX_HSJD_Patient_6", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012172", + "label": "Stereotypical body rocking" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0009062", + "label": "Infantile axial hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0025160", + "label": "Abnormal temper tantrums" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_LkfoJUfEplqLJmexeIBnCeEcE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.714C>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666216C>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666216", + "ref": "C", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_7.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_7.json new file mode 100644 index 00000000..ce98bdef --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_7.json @@ -0,0 +1,226 @@ +{ + "id": "STX_HSJD_Patient_7", + "subject": { + "id": "STX_HSJD_Patient_7", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P18Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_7", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_7", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qjFxWPUfagYNjAqeolyMFdjYv", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1359+1G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676754G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676754", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_8.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_8.json new file mode 100644 index 00000000..a2507a52 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_8.json @@ -0,0 +1,182 @@ +{ + "id": "STX_HSJD_Patient_8", + "subject": { + "id": "STX_HSJD_Patient_8", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y7M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_8", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_8", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_9.json b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_9.json new file mode 100644 index 00000000..26bf7129 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_HSJD_Patient_9.json @@ -0,0 +1,248 @@ +{ + "id": "STX_HSJD_Patient_9", + "subject": { + "id": "STX_HSJD_Patient_9", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000639", + "label": "Nystagmus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0005484", + "label": "Postnatal microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0025160", + "label": "Abnormal temper tantrums" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_HSJD_Patient_9", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_HSJD_Patient_9", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_OZwsIAtBbgQpoDdWZvZdqRjnn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1249+2T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675944T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675944", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_01.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_01.json new file mode 100644 index 00000000..41970a47 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_01.json @@ -0,0 +1,404 @@ +{ + "id": "STX_P_01", + "subject": { + "id": "STX_P_01", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012010", + "label": "EEG with frontal focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0007018", + "label": "Attention deficit hyperactivity disorder" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0006913", + "label": "Frontal cortical atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002312", + "label": "Clumsiness" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002317", + "label": "Unsteady gait" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_01", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_01", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BYRqxXzlAtJGLikYfHgeDocAJ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.704G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666206G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666206", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_02.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_02.json new file mode 100644 index 00000000..93f30ea5 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_02.json @@ -0,0 +1,452 @@ +{ + "id": "STX_P_02", + "subject": { + "id": "STX_P_02", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008872", + "label": "Feeding difficulties in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012010", + "label": "EEG with frontal focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011210", + "label": "EEG with occipital slowing" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_02", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_02", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_03.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_03.json new file mode 100644 index 00000000..e5a31b20 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_03.json @@ -0,0 +1,388 @@ +{ + "id": "STX_P_03", + "subject": { + "id": "STX_P_03", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y2M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0008872", + "label": "Feeding difficulties in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011343", + "label": "Moderate global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P6M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_03", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_03", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_CJTSBDWPgORuuxaLuGYaqWKXO", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.922A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127669917A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127669917", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_04.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_04.json new file mode 100644 index 00000000..bbbc3c2f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_04.json @@ -0,0 +1,391 @@ +{ + "id": "STX_P_04", + "subject": { + "id": "STX_P_04", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P20Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006813", + "label": "Hemiclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010847", + "label": "EEG with spike-wave complexes (<2.5 Hz)" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002396", + "label": "Cogwheel rigidity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007076", + "label": "Extrapyramidal muscular rigidity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012010", + "label": "EEG with frontal focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_04", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_04", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_05.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_05.json new file mode 100644 index 00000000..c0ecb090 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_05.json @@ -0,0 +1,336 @@ +{ + "id": "STX_P_05", + "subject": { + "id": "STX_P_05", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y7M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001522", + "label": "Death in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007183", + "label": "Focal T2 hyperintense basal ganglia lesion" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011968", + "label": "Feeding difficulties" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_05", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_05", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_baXYaFfXeIIyAMDcnOcOotoYz", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1075C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673226C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673226", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_06.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_06.json new file mode 100644 index 00000000..16a8b72b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_06.json @@ -0,0 +1,270 @@ +{ + "id": "STX_P_06", + "subject": { + "id": "STX_P_06", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011189", + "label": "Bilateral multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0006794", + "label": "Loss of ability to walk in first decade" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002371", + "label": "Loss of speech" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_06", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_06", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_eCJSIKMdCeAKENFGiLgWyKssU", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.751G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666253G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666253", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_07.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_07.json new file mode 100644 index 00000000..961189b0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_07.json @@ -0,0 +1,308 @@ +{ + "id": "STX_P_07", + "subject": { + "id": "STX_P_07", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011196", + "label": "EEG with focal sharp waves" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011342", + "label": "Mild global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011155", + "label": "Focal autonomic seizures with altered responsiveness" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_07", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_07", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_eYDvcRfPpWQXdLFExOOpBQFZq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.430_432delinsAGA" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663205_127663207delinsAGA" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663205", + "ref": "GTC", + "alt": "AGA" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_08.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_08.json new file mode 100644 index 00000000..72b8cca5 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_08.json @@ -0,0 +1,259 @@ +{ + "id": "STX_P_08", + "subject": { + "id": "STX_P_08", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y4M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011166", + "label": "Focal myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0031491", + "label": "Continuous spike and waves during slow sleep" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0031535", + "label": "Increased theta frequency activity in EEG" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0032049", + "label": "Focal cortical dysplasia type Ib" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0032054", + "label": "Focal cortical dysplasia type III" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_08", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_08", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_iSWBdLTYWfoszZChItzNGQmIy", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.57_59del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651622_127651624del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651621", + "ref": "TAAA", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_09.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_09.json new file mode 100644 index 00000000..23902328 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_09.json @@ -0,0 +1,281 @@ +{ + "id": "STX_P_09", + "subject": { + "id": "STX_P_09", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012015", + "label": "EEG with frontal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002273", + "label": "Tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_09", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_09", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_zftpHcOXWpZGbdsZjEwKXLAhl", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1265del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676659del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676655", + "ref": "GA", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_12.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_12.json new file mode 100644 index 00000000..7b1b4744 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_12.json @@ -0,0 +1,199 @@ +{ + "id": "STX_P_12", + "subject": { + "id": "STX_P_12" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_12", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_12", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_LmvkKOEFjTyIcQfndMGgZCeVy", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1249G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675942G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675942", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_13.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_13.json new file mode 100644 index 00000000..802ec0e9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_13.json @@ -0,0 +1,303 @@ +{ + "id": "STX_P_13", + "subject": { + "id": "STX_P_13", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012010", + "label": "EEG with frontal focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012557", + "label": "EEG with centrotemporal focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_13", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_13", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_IajhOGhGJnyLeckJOMGAWQrSu", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1099C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673250C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673250", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_14.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_14.json new file mode 100644 index 00000000..3fb54f2a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_14.json @@ -0,0 +1,303 @@ +{ + "id": "STX_P_14", + "subject": { + "id": "STX_P_14", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P12Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011193", + "label": "EEG with focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002372", + "label": "Normal interictal EEG" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001336", + "label": "Myoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001999", + "label": "Abnormal facial shape" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_14", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_14", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_15.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_15.json new file mode 100644 index 00000000..6ed44cd2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_15.json @@ -0,0 +1,237 @@ +{ + "id": "STX_P_15", + "subject": { + "id": "STX_P_15", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001285", + "label": "Spastic tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_15", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_15", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_16.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_16.json new file mode 100644 index 00000000..46d536c8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_16.json @@ -0,0 +1,226 @@ +{ + "id": "STX_P_16", + "subject": { + "id": "STX_P_16", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011166", + "label": "Focal myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_16", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_16", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_QvGmbdQDDpMWxWIBpUTCwWSLM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1058_1061del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673209_127673212del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673207", + "ref": "GGACT", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_17.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_17.json new file mode 100644 index 00000000..f4806279 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_17.json @@ -0,0 +1,281 @@ +{ + "id": "STX_P_17", + "subject": { + "id": "STX_P_17", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y8M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0012557", + "label": "EEG with centrotemporal focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0001272", + "label": "Cerebellar atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P17M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_17", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_17", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_iSWBdLTYWfoszZChItzNGQmIy", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.57_59del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651622_127651624del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651621", + "ref": "TAAA", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_18.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_18.json new file mode 100644 index 00000000..f9e4dd75 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_18.json @@ -0,0 +1,281 @@ +{ + "id": "STX_P_18", + "subject": { + "id": "STX_P_18", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P21Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011155", + "label": "Focal autonomic seizures with altered responsiveness" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001999", + "label": "Abnormal facial shape" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011154", + "label": "Focal autonomic seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_18", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_18", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_20.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_20.json new file mode 100644 index 00000000..82dedd16 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_20.json @@ -0,0 +1,270 @@ +{ + "id": "STX_P_20", + "subject": { + "id": "STX_P_20", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002273", + "label": "Tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000639", + "label": "Nystagmus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_20", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_20", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_agWqoecBAKRyrfjBcZjZfgpjo", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.466T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663241T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663241", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_21.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_21.json new file mode 100644 index 00000000..68d8716a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_21.json @@ -0,0 +1,303 @@ +{ + "id": "STX_P_21", + "subject": { + "id": "STX_P_21", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012557", + "label": "EEG with centrotemporal focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011193", + "label": "EEG with focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_21", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_21", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JhBpOeMpmSROWfXizalgavACV", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.998_1000del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672085_127672087del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672079", + "ref": "TGAA", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_22.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_22.json new file mode 100644 index 00000000..75042372 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_22.json @@ -0,0 +1,182 @@ +{ + "id": "STX_P_22", + "subject": { + "id": "STX_P_22", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_22", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_22", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_QqmoNURwkIVILIEvcehQzjwxj", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1702+1G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682561G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682561", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_24.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_24.json new file mode 100644 index 00000000..e99d7b58 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_24.json @@ -0,0 +1,237 @@ +{ + "id": "STX_P_24", + "subject": { + "id": "STX_P_24", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002079", + "label": "Hypoplasia of the corpus callosum" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002445", + "label": "Tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_24", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_24", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_kSOQctjLOXiyedTLKbISkQnpt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.17T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127612420T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127612420", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_25.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_25.json new file mode 100644 index 00000000..638d9892 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_25.json @@ -0,0 +1,303 @@ +{ + "id": "STX_P_25", + "subject": { + "id": "STX_P_25", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P13Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002317", + "label": "Unsteady gait" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011173", + "label": "Hypokinetic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0003785", + "label": "Decreased CSF homovanillic acid" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0025455", + "label": "Decreased CSF 5-hydroxyindolacetic acid" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P24M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_25", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_25", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_dRBMgpsxhBDCnKOquVBiMIKPt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1324A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676718A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676718", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_26.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_26.json new file mode 100644 index 00000000..96806324 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_26.json @@ -0,0 +1,215 @@ +{ + "id": "STX_P_26", + "subject": { + "id": "STX_P_26", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0012001", + "label": "EEG with generalized polyspikes" + }, + "onset": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P33M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_26", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_26", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_27.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_27.json new file mode 100644 index 00000000..2aa3dc60 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_27.json @@ -0,0 +1,248 @@ +{ + "id": "STX_P_27", + "subject": { + "id": "STX_P_27", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012001", + "label": "EEG with generalized polyspikes" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002372", + "label": "Normal interictal EEG" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001513", + "label": "Obesity" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_27", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_27", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_bVYBlefkkWYzaEWsZFmswcWAr", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1408G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678479G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678479", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_28.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_28.json new file mode 100644 index 00000000..61491e12 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_28.json @@ -0,0 +1,303 @@ +{ + "id": "STX_P_28", + "subject": { + "id": "STX_P_28", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P28Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0011463", + "label": "Childhood onset" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0011195", + "label": "EEG with focal sharp slow waves" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + }, + { + "type": { + "id": "HP:0002463", + "label": "Language impairment" + }, + "onset": { + "age": { + "iso8601duration": "P72M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_28", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_28", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_OepXIbyXPTBKVORWJWdSGreez", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1359+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676754G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676754", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_29.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_29.json new file mode 100644 index 00000000..55e4ff6c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_29.json @@ -0,0 +1,270 @@ +{ + "id": "STX_P_29", + "subject": { + "id": "STX_P_29", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P35Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0031535", + "label": "Increased theta frequency activity in EEG" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001276", + "label": "Hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002463", + "label": "Language impairment" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_29", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_29", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_kxXAwbcbkcObDVHHfwzIzUhPk", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.88-1G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653714G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653714", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_31.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_31.json new file mode 100644 index 00000000..55afaab8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_31.json @@ -0,0 +1,259 @@ +{ + "id": "STX_P_31", + "subject": { + "id": "STX_P_31", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0007281", + "label": "Developmental stagnation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012010", + "label": "EEG with frontal focal spike waves" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_31", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_31", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ERjbdtZIqfcceoAKtQnZsrfme", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1095_1096del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673246_127673247del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673243", + "ref": "ACT", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_32.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_32.json new file mode 100644 index 00000000..09acb9a7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_32.json @@ -0,0 +1,303 @@ +{ + "id": "STX_P_32", + "subject": { + "id": "STX_P_32", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y7M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007281", + "label": "Developmental stagnation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001522", + "label": "Death in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002283", + "label": "Global brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012707", + "label": "Elevated brain lactate level by MRS" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_32", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_32", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wCmFSWzkbUJsTtBtaKpxwTpee", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1461G>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678532G>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678532", + "ref": "G", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_33.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_33.json new file mode 100644 index 00000000..bdfb55a2 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_33.json @@ -0,0 +1,171 @@ +{ + "id": "STX_P_33", + "subject": { + "id": "STX_P_33", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y9M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011342", + "label": "Mild global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_33", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_33", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_cLOZfSkfqzIhmRWURSPagmhNm", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.794+2dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666298dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666297", + "ref": "G", + "alt": "GT" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_34.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_34.json new file mode 100644 index 00000000..53c80d65 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_34.json @@ -0,0 +1,237 @@ +{ + "id": "STX_P_34", + "subject": { + "id": "STX_P_34", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P14Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0030724", + "label": "Central nervous system cyst" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011344", + "label": "Severe global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0004879", + "label": "Intermittent hyperventilation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_34", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_34", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_UphAlsZpmphWQekSPAuIWWAEs", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.83G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127651648G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127651648", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_35.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_35.json new file mode 100644 index 00000000..c2082f58 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_35.json @@ -0,0 +1,237 @@ +{ + "id": "STX_P_35", + "subject": { + "id": "STX_P_35", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y6M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012736", + "label": "Profound global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031849", + "label": "Sleep-wake inversion" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_35", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_35", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_36.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_36.json new file mode 100644 index 00000000..8659b614 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_36.json @@ -0,0 +1,270 @@ +{ + "id": "STX_P_36", + "subject": { + "id": "STX_P_36", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P13Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0002465", + "label": "Poor speech" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0002273", + "label": "Tetraparesis" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0100785", + "label": "Insomnia" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0001999", + "label": "Abnormal facial shape" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_36", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_36", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_37.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_37.json new file mode 100644 index 00000000..4a8c9bd6 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_37.json @@ -0,0 +1,171 @@ +{ + "id": "STX_P_37", + "subject": { + "id": "STX_P_37", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y1M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0011168", + "label": "Eyelid myoclonias" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0002372", + "label": "Normal interictal EEG" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P10M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_37", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_37", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_uNNGBbHCDzvRPyZlYMBGlxpim", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1652G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682510G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682510", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_38.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_38.json new file mode 100644 index 00000000..a50ea38f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_38.json @@ -0,0 +1,292 @@ +{ + "id": "STX_P_38", + "subject": { + "id": "STX_P_38", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P9Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002349", + "label": "Focal aware seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002355", + "label": "Difficulty walking" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001999", + "label": "Abnormal facial shape" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000505", + "label": "Visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000252", + "label": "Microcephaly" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002072", + "label": "Chorea" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011154", + "label": "Focal autonomic seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_38", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_38", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_cxjJkdolAAcgoLSnWWhHJBsuo", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.420T>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661196T>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661196", + "ref": "T", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_39.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_39.json new file mode 100644 index 00000000..7e68557b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_39.json @@ -0,0 +1,215 @@ +{ + "id": "STX_P_39", + "subject": { + "id": "STX_P_39", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002372", + "label": "Normal interictal EEG" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002188", + "label": "Delayed CNS myelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_39", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_39", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_43.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_43.json new file mode 100644 index 00000000..77edb495 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_43.json @@ -0,0 +1,215 @@ +{ + "id": "STX_P_43", + "subject": { + "id": "STX_P_43", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0002392", + "label": "EEG with polyspike wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0030051", + "label": "Tip-toe gait" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P16M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_43", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_43", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ajtQsthYixYgdpsXVftZokMjO", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1652G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682510G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682510", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_44.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_44.json new file mode 100644 index 00000000..8d583b96 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_44.json @@ -0,0 +1,270 @@ +{ + "id": "STX_P_44", + "subject": { + "id": "STX_P_44", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P18Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001388", + "label": "Joint laxity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001347", + "label": "Hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0031375", + "label": "Refractory" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_44", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_44", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_HHNtFHFneasGkALhuPHndOvWN", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1162C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675855C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675855", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_P_45.json b/notebooks/STXBP1/input/PMID_35190816_STX_P_45.json new file mode 100644 index 00000000..2ae28f8f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_P_45.json @@ -0,0 +1,237 @@ +{ + "id": "STX_P_45", + "subject": { + "id": "STX_P_45", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0011205", + "label": "EEG with intermittent slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001388", + "label": "Joint laxity" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001347", + "label": "Hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_P_45", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_P_45", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_GCCxCofEoPFIhUHPllgotJtnI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.875G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668160G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668160", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S002.json b/notebooks/STXBP1/input/PMID_35190816_STX_S002.json new file mode 100644 index 00000000..fbc1bc58 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S002.json @@ -0,0 +1,243 @@ +{ + "id": "STX_S002", + "subject": { + "id": "STX_S002", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + } + }, + { + "type": { + "id": "HP:0000964", + "label": "Eczema" + } + }, + { + "type": { + "id": "HP:0006297", + "label": "Hypoplasia of dental enamel" + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + } + }, + { + "type": { + "id": "HP:0012743", + "label": "Abdominal obesity" + } + }, + { + "type": { + "id": "HP:0001212", + "label": "Prominent fingertip pads" + } + }, + { + "type": { + "id": "HP:0001382", + "label": "Joint hypermobility" + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + } + }, + { + "type": { + "id": "HP:0000736", + "label": "Short attention span" + } + }, + { + "type": { + "id": "HP:0000403", + "label": "Recurrent otitis media" + } + }, + { + "type": { + "id": "HP:0012450", + "label": "Chronic constipation" + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + } + }, + { + "type": { + "id": "HP:0011201", + "label": "EEG with changes in voltage" + } + }, + { + "type": { + "id": "HP:0100738", + "label": "Abnormal eating behavior" + } + }, + { + "type": { + "id": "HP:0000684", + "label": "Delayed eruption of teeth" + } + }, + { + "type": { + "id": "HP:0002060", + "label": "No Abnormality of the cerebrum" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0010804", + "label": "Tented upper lip vermilion" + } + } + ], + "interpretations": [ + { + "id": "STX_S002", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S002", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_izsWWHyEbRZvYTnydGRnUpfwy", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.620A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127665288A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127665288", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S003.json b/notebooks/STXBP1/input/PMID_35190816_STX_S003.json new file mode 100644 index 00000000..ff351eae --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S003.json @@ -0,0 +1,556 @@ +{ + "id": "STX_S003", + "subject": { + "id": "STX_S003", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P13Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011470", + "label": "Nasogastric tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011412", + "label": "Ventouse delivery" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002395", + "label": "Lower limb hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0006834", + "label": "Developmental stagnation at onset of seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0100023", + "label": "Recurrent hand flapping" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0012448", + "label": "Delayed myelination" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002119", + "label": "Ventriculomegaly" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0006532", + "label": "Recurrent pneumonia" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0006979", + "label": "Sleep-wake cycle disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001212", + "label": "Prominent fingertip pads" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001238", + "label": "Slender finger" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001382", + "label": "Joint hypermobility" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002061", + "label": "Lower limb spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0003487", + "label": "Babinski sign" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001347", + "label": "Hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0100738", + "label": "Abnormal eating behavior" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001265", + "label": "Hyporeflexia" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0007328", + "label": "Impaired pain sensation" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0025373", + "label": "Interictal EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0012018", + "label": "EEG with temporal focal spikes" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0012658", + "label": "Abnormal brain FDG positron emission tomography" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000964", + "label": "Eczema" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_S003", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S003", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S004.json b/notebooks/STXBP1/input/PMID_35190816_STX_S004.json new file mode 100644 index 00000000..2c8f2f7a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S004.json @@ -0,0 +1,218 @@ +{ + "id": "STX_S004", + "subject": { + "id": "STX_S004", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0031437", + "label": "Pregnancy exposure" + } + }, + { + "type": { + "id": "HP:0008071", + "label": "Maternal hypertension" + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0003487", + "label": "Babinski sign" + } + }, + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0000177", + "label": "Abnormality of upper lip" + } + }, + { + "type": { + "id": "HP:0001015", + "label": "Prominent superficial veins" + } + }, + { + "type": { + "id": "HP:0010648", + "label": "Dermal translucency" + } + }, + { + "type": { + "id": "HP:0001238", + "label": "Slender finger" + } + }, + { + "type": { + "id": "HP:0008386", + "label": "Aplasia/Hypoplasia of the nails" + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + } + }, + { + "type": { + "id": "HP:0000736", + "label": "Short attention span" + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + } + }, + { + "type": { + "id": "HP:0000735", + "label": "Impaired social interactions" + } + }, + { + "type": { + "id": "HP:0002312", + "label": "Clumsiness" + } + } + ], + "interpretations": [ + { + "id": "STX_S004", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S004", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_MCZgylWXydawqMwHKewMZGUTt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.578+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663354G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663354", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S005.json b/notebooks/STXBP1/input/PMID_35190816_STX_S005.json new file mode 100644 index 00000000..37617393 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S005.json @@ -0,0 +1,548 @@ +{ + "id": "STX_S005", + "subject": { + "id": "STX_S005", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011471", + "label": "Gastrostomy tube feeding in infancy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0012450", + "label": "Chronic constipation" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0030148", + "label": "Heart murmur" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0000682", + "label": "Abnormality of dental enamel" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0000177", + "label": "Abnormality of upper lip" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0000366", + "label": "Abnormality of the nose" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001212", + "label": "Prominent fingertip pads" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001382", + "label": "Joint hypermobility" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0003487", + "label": "Babinski sign" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001319", + "label": "Neonatal hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001290", + "label": "Generalized hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001347", + "label": "Hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0010576", + "label": "Intracranial cystic lesion" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0012448", + "label": "Delayed myelination" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_S005", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S005", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_rMDebIeaxytRgJoCckVxudvFn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.721del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666223del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666222", + "ref": "CT", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S007.json b/notebooks/STXBP1/input/PMID_35190816_STX_S007.json new file mode 100644 index 00000000..309bd502 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S007.json @@ -0,0 +1,391 @@ +{ + "id": "STX_S007", + "subject": { + "id": "STX_S007", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P33Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000505", + "label": "Visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012786", + "label": "Recurrent cystitis" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003487", + "label": "Babinski sign" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000365", + "label": "Hearing impairment" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003202", + "label": "Skeletal muscle atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001773", + "label": "Short foot" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000977", + "label": "Soft skin" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002509", + "label": "Limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000739", + "label": "Anxiety" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000735", + "label": "Impaired social interactions" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0007328", + "label": "Impaired pain sensation" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_S007", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S007", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_nimzWypILMhFFUxqyznIWXDIS", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.703C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666205C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666205", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S009.json b/notebooks/STXBP1/input/PMID_35190816_STX_S009.json new file mode 100644 index 00000000..2df6a0e5 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S009.json @@ -0,0 +1,435 @@ +{ + "id": "STX_S009", + "subject": { + "id": "STX_S009", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0031437", + "label": "Pregnancy exposure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012420", + "label": "Meconium stained amniotic fluid" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0100704", + "label": "Cerebral visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000684", + "label": "Delayed eruption of teeth" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000964", + "label": "Eczema" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002019", + "label": "Constipation" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0100738", + "label": "Abnormal eating behavior" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001741", + "label": "Phimosis" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0030043", + "label": "Hip subluxation" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012741", + "label": "Unilateral cryptorchidism" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000414", + "label": "Bulbous nose" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000527", + "label": "Long eyelashes" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001212", + "label": "Prominent fingertip pads" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0006895", + "label": "Lower limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002395", + "label": "Lower limb hyperreflexia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003487", + "label": "Babinski sign" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002061", + "label": "Lower limb spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011154", + "label": "Focal autonomic seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0010850", + "label": "EEG with spike-wave complexes" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0006979", + "label": "Sleep-wake cycle disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001762", + "label": "Talipes equinovarus" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_S009", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S009", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_MXszSoDIEvzYRFRHZGHiTXSDG", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1606del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682464del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682459", + "ref": "GC", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S011.json b/notebooks/STXBP1/input/PMID_35190816_STX_S011.json new file mode 100644 index 00000000..b3f95050 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S011.json @@ -0,0 +1,225 @@ +{ + "id": "STX_S011", + "subject": { + "id": "STX_S011", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011410", + "label": "Caesarian section" + } + }, + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + } + }, + { + "type": { + "id": "HP:0002795", + "label": "Functional respiratory abnormality" + } + }, + { + "type": { + "id": "HP:0010803", + "label": "Everted upper lip vermilion" + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + } + }, + { + "type": { + "id": "HP:0003487", + "label": "Babinski sign" + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + } + }, + { + "type": { + "id": "HP:0006895", + "label": "Lower limb hypertonia" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + } + }, + { + "type": { + "id": "HP:0002060", + "label": "No Abnormality of the cerebrum" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0001763", + "label": "Pes planus" + } + }, + { + "type": { + "id": "HP:0000964", + "label": "Eczema" + } + } + ], + "interpretations": [ + { + "id": "STX_S011", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S011", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S012.json b/notebooks/STXBP1/input/PMID_35190816_STX_S012.json new file mode 100644 index 00000000..81a89fc9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S012.json @@ -0,0 +1,402 @@ +{ + "id": "STX_S012", + "subject": { + "id": "STX_S012", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P7Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011098", + "label": "Speech apraxia" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0010511", + "label": "Long toe" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001238", + "label": "Slender finger" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000736", + "label": "Short attention span" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0001256", + "label": "Intellectual disability, mild" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000732", + "label": "Inflexible adherence to routines or rituals" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0100710", + "label": "Impulsivity" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0007166", + "label": "Paroxysmal dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0030081", + "label": "Punctate periventricular T2 hyperintense foci" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P12M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_S012", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S012", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YSAjFjfBUKRDXLQoKWpvlZBtE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.847G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668132G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668132", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S013.json b/notebooks/STXBP1/input/PMID_35190816_STX_S013.json new file mode 100644 index 00000000..cbb831ca --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S013.json @@ -0,0 +1,250 @@ +{ + "id": "STX_S013", + "subject": { + "id": "STX_S013", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011410", + "label": "Caesarian section" + } + }, + { + "type": { + "id": "HP:0012420", + "label": "Meconium stained amniotic fluid" + } + }, + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + } + }, + { + "type": { + "id": "HP:0000248", + "label": "Brachycephaly" + } + }, + { + "type": { + "id": "HP:0005469", + "label": "Flat occiput" + } + }, + { + "type": { + "id": "HP:0000492", + "label": "Abnormal eyelid morphology" + } + }, + { + "type": { + "id": "HP:0000356", + "label": "Abnormality of the outer ear" + } + }, + { + "type": { + "id": "HP:0000256", + "label": "Macrocephaly" + } + }, + { + "type": { + "id": "HP:0001212", + "label": "Prominent fingertip pads" + } + }, + { + "type": { + "id": "HP:0003487", + "label": "Babinski sign" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + }, + { + "type": { + "id": "HP:0000739", + "label": "Anxiety" + } + }, + { + "type": { + "id": "HP:0100022", + "label": "Abnormality of movement" + } + }, + { + "type": { + "id": "HP:0002353", + "label": "No EEG abnormality" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0002060", + "label": "No Abnormality of the cerebrum" + }, + "excluded": true + } + ], + "interpretations": [ + { + "id": "STX_S013", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S013", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_oqkDxMAGyOWOmMOdqvOoFLAWW", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.227T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127658432T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127658432", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S014.json b/notebooks/STXBP1/input/PMID_35190816_STX_S014.json new file mode 100644 index 00000000..fa72f68b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S014.json @@ -0,0 +1,358 @@ +{ + "id": "STX_S014", + "subject": { + "id": "STX_S014", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0012450", + "label": "Chronic constipation" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000817", + "label": "Poor eye contact" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002020", + "label": "Gastroesophageal reflux" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001382", + "label": "Joint hypermobility" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000218", + "label": "High palate" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001212", + "label": "Prominent fingertip pads" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0030084", + "label": "Clinodactyly" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0008936", + "label": "Muscular hypotonia of the trunk" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011174", + "label": "Hyperkinetic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011154", + "label": "Focal autonomic seizure" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011204", + "label": "EEG with continuous slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002500", + "label": "Abnormality of the cerebral white matter" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_S014", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S014", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_S016.json b/notebooks/STXBP1/input/PMID_35190816_STX_S016.json new file mode 100644 index 00000000..8c5392d4 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_S016.json @@ -0,0 +1,147 @@ +{ + "id": "STX_S016", + "subject": { + "id": "STX_S016", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0011220", + "label": "Prominent forehead" + } + }, + { + "type": { + "id": "HP:0000582", + "label": "Upslanted palpebral fissure" + } + }, + { + "type": { + "id": "HP:0002136", + "label": "Broad-based gait" + } + }, + { + "type": { + "id": "HP:0002060", + "label": "No Abnormality of the cerebrum" + }, + "excluded": true + } + ], + "interpretations": [ + { + "id": "STX_S016", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_S016", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_krTFTtPUsUJwRqsynTVSOrgCQ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.734A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666236A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666236", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_SP_B.json b/notebooks/STXBP1/input/PMID_35190816_STX_SP_B.json new file mode 100644 index 00000000..90705440 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_SP_B.json @@ -0,0 +1,276 @@ +{ + "id": "STX_SP_B", + "subject": { + "id": "STX_SP_B", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P33M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_SP_B", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_SP_B", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_OkVYjPLHNddYNTugIJeKtMzlt", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.987del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672074del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672073", + "ref": "AG", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_SP_C.json b/notebooks/STXBP1/input/PMID_35190816_STX_SP_C.json new file mode 100644 index 00000000..b78aebef --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_SP_C.json @@ -0,0 +1,228 @@ +{ + "id": "STX_SP_C", + "subject": { + "id": "STX_SP_C", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P228M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_SP_C", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_SP_C", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_NwTgQKhSISbUvwlPqMyCmTGiE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.268G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127660051G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127660051", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_SP_E.json b/notebooks/STXBP1/input/PMID_35190816_STX_SP_E.json new file mode 100644 index 00000000..be6017f0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_SP_E.json @@ -0,0 +1,276 @@ +{ + "id": "STX_SP_E", + "subject": { + "id": "STX_SP_E", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P13Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0002333", + "label": "Motor deterioration" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0004305", + "label": "Involuntary movements" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P156M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_SP_E", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_SP_E", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_iZEuRrtcsuugZkzQRxXAxYkTC", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.725del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666227del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666223", + "ref": "TC", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_SP_L.json b/notebooks/STXBP1/input/PMID_35190816_STX_SP_L.json new file mode 100644 index 00000000..13c07395 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_SP_L.json @@ -0,0 +1,228 @@ +{ + "id": "STX_SP_L", + "subject": { + "id": "STX_SP_L", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P8Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001305", + "label": "Dandy-Walker malformation" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0010841", + "label": "Multifocal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_SP_L", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_SP_L", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt1.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt1.json new file mode 100644 index 00000000..54415b8c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt1.json @@ -0,0 +1,259 @@ +{ + "id": "STX_STXBP1adult_Pt1", + "subject": { + "id": "STX_STXBP1adult_Pt1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P56Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0025190", + "label": "Generalized tonic-clonic seizures without focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0031951", + "label": "Nocturnal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0011188", + "label": "Focal EEG discharges with secondary generalization" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0000709", + "label": "Psychosis" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002396", + "label": "Cogwheel rigidity" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + }, + { + "type": { + "id": "HP:0002067", + "label": "Bradykinesia" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_NEEVLhmqYWJVZIrxAWGCSsuUT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1315A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676709A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676709", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt11.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt11.json new file mode 100644 index 00000000..064ff72b --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt11.json @@ -0,0 +1,340 @@ +{ + "id": "STX_STXBP1adult_Pt11", + "subject": { + "id": "STX_STXBP1adult_Pt11", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0200049", + "label": "Upper limb hypertonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0002530", + "label": "Axial dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P84M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt11", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt11", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_vXXxEeiTFZrQrsBAZcrSwpvUV", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1282del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676676del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676674", + "ref": "TC", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt16.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt16.json new file mode 100644 index 00000000..20126d02 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt16.json @@ -0,0 +1,303 @@ +{ + "id": "STX_STXBP1adult_Pt16", + "subject": { + "id": "STX_STXBP1adult_Pt16", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0000826", + "label": "Precocious puberty" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt16", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt16", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_YSAjFjfBUKRDXLQoKWpvlZBtE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.847G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668132G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668132", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt2.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt2.json new file mode 100644 index 00000000..9b0feece --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt2.json @@ -0,0 +1,325 @@ +{ + "id": "STX_STXBP1adult_Pt2", + "subject": { + "id": "STX_STXBP1adult_Pt2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P58Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0025190", + "label": "Generalized tonic-clonic seizures without focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0031951", + "label": "Nocturnal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002342", + "label": "Intellectual disability, moderate" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0008765", + "label": "Auditory hallucinations" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000752", + "label": "Hyperactivity" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002322", + "label": "Resting tremor" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002174", + "label": "Postural tremor" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002080", + "label": "Intention tremor" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002396", + "label": "Cogwheel rigidity" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + }, + { + "type": { + "id": "HP:0002067", + "label": "Bradykinesia" + }, + "onset": { + "age": { + "iso8601duration": "P11M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_NEEVLhmqYWJVZIrxAWGCSsuUT", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1315A>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676709A>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676709", + "ref": "A", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt3.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt3.json new file mode 100644 index 00000000..d85cbd35 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt3.json @@ -0,0 +1,237 @@ +{ + "id": "STX_STXBP1adult_Pt3", + "subject": { + "id": "STX_STXBP1adult_Pt3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P31Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0025190", + "label": "Generalized tonic-clonic seizures without focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0100716", + "label": "Self-injurious behavior" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_EyMxWSFwkRtXptCkhJQEuHyoa", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.701A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666203A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666203", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt32.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt32.json new file mode 100644 index 00000000..e111bcaf --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt32.json @@ -0,0 +1,325 @@ +{ + "id": "STX_STXBP1adult_Pt32", + "subject": { + "id": "STX_STXBP1adult_Pt32", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P30Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0007334", + "label": "Generalized tonic-clonic seizures with focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0000729", + "label": "Autistic behavior" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0000713", + "label": "Agitation" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0001288", + "label": "Gait disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0002322", + "label": "Resting tremor" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0002067", + "label": "Bradykinesia" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + }, + { + "type": { + "id": "HP:0031355", + "label": "Maintenance insomnia" + }, + "onset": { + "age": { + "iso8601duration": "P60M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt32", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt32", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_krTFTtPUsUJwRqsynTVSOrgCQ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.734A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666236A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666236", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt4.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt4.json new file mode 100644 index 00000000..a326f3c7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt4.json @@ -0,0 +1,303 @@ +{ + "id": "STX_STXBP1adult_Pt4", + "subject": { + "id": "STX_STXBP1adult_Pt4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P22Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0025190", + "label": "Generalized tonic-clonic seizures without focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002133", + "label": "Status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0007270", + "label": "Atypical absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002061", + "label": "Lower limb spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0100704", + "label": "Cerebral visual impairment" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002650", + "label": "Scoliosis" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_MPdHMbBGNTPSCijBpOTgKKFLX", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.360dup" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661136dup" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661132", + "ref": "T", + "alt": "TA" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt5.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt5.json new file mode 100644 index 00000000..fb726d33 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt5.json @@ -0,0 +1,259 @@ +{ + "id": "STX_STXBP1adult_Pt5", + "subject": { + "id": "STX_STXBP1adult_Pt5", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P19Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0000708", + "label": "Behavioral abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0100738", + "label": "Abnormal eating behavior" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0002360", + "label": "Sleep disturbance" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0002066", + "label": "Gait ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0002174", + "label": "Postural tremor" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0000256", + "label": "Macrocephaly" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0002375", + "label": "Hypokinesia" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P228M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_NNzecBXIsUcAJQvEJAPDaQqFd", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1645G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682503G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682503", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt6.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt6.json new file mode 100644 index 00000000..220a96a9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt6.json @@ -0,0 +1,259 @@ +{ + "id": "STX_STXBP1adult_Pt6", + "subject": { + "id": "STX_STXBP1adult_Pt6", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P27Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0025190", + "label": "Generalized tonic-clonic seizures without focal onset" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002283", + "label": "Global brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0000722", + "label": "Obsessive-compulsive behavior" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0100710", + "label": "Impulsivity" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002345", + "label": "Action tremor" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + }, + { + "type": { + "id": "HP:0002383", + "label": "Encephalitis" + }, + "onset": { + "age": { + "iso8601duration": "P18M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_noBAeQZAnrSKbUAeHsBQDsLRK", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.569G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663344G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663344", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt8.json b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt8.json new file mode 100644 index 00000000..18d7b64a --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_STXBP1adult_Pt8.json @@ -0,0 +1,325 @@ +{ + "id": "STX_STXBP1adult_Pt8", + "subject": { + "id": "STX_STXBP1adult_Pt8", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P25Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010819", + "label": "Atonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011167", + "label": "Focal tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002266", + "label": "Focal clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0031475", + "label": "Nonconvulsive status epilepticus" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0010845", + "label": "EEG with generalized slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002187", + "label": "Intellectual disability, profound" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002375", + "label": "Hypokinesia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_STXBP1adult_Pt8", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_STXBP1adult_Pt8", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_KTNYgndZryzatpNRbKXMHAggU", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.122T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653749T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653749", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Seoul_Lee_Patient_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_Seoul_Lee_Patient_1.json new file mode 100644 index 00000000..c18f8bc1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Seoul_Lee_Patient_1.json @@ -0,0 +1,160 @@ +{ + "id": "STX_Seoul_Lee_Patient_1", + "subject": { + "id": "STX_Seoul_Lee_Patient_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P10Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001250", + "label": "Seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012758", + "label": "Neurodevelopmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Seoul_Lee_Patient_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Seoul_Lee_Patient_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_CweExIkrGyopuMsrotqljOmPs", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1021_1029+1del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672108_127672117del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672106", + "ref": "AGCTCAGCAAG", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Str_Ca_SD.json b/notebooks/STXBP1/input/PMID_35190816_STX_Str_Ca_SD.json new file mode 100644 index 00000000..6bea4ba0 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Str_Ca_SD.json @@ -0,0 +1,254 @@ +{ + "id": "STX_Str_Ca_SD", + "subject": { + "id": "STX_Str_Ca_SD" + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0011097", + "label": "Epileptic spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0006813", + "label": "Hemiclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010851", + "label": "EEG with burst suppression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011203", + "label": "EEG with abnormally slow frequencies" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011182", + "label": "Interictal epileptiform activity" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002510", + "label": "Spastic tetraplegia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002463", + "label": "Language impairment" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Str_Ca_SD", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926a", + "label": "EOEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Str_Ca_SD", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_QOULinTuKGCMGEAbJPFfNmgNE", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1218C>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675911C>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675911", + "ref": "C", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_1.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_1.json new file mode 100644 index 00000000..86003c53 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_1.json @@ -0,0 +1,292 @@ +{ + "id": "STX_Syrbe_1", + "subject": { + "id": "STX_Syrbe_1", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0008081", + "label": "Pes valgus" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_1", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_1", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VltlJcDJvDYfcrZemaggvdaNl", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.374_375del" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661150_127661151del" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661148", + "ref": "CAA", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_10.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_10.json new file mode 100644 index 00000000..982ff595 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_10.json @@ -0,0 +1,248 @@ +{ + "id": "STX_Syrbe_10", + "subject": { + "id": "STX_Syrbe_10", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P16Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0002121", + "label": "Absence seizure" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P21M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_10", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_10", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_12.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_12.json new file mode 100644 index 00000000..65c246e7 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_12.json @@ -0,0 +1,276 @@ +{ + "id": "STX_Syrbe_12", + "subject": { + "id": "STX_Syrbe_12", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0006813", + "label": "Hemiclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0000504", + "label": "Abnormality of vision" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P4M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_12", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_12", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_JkCzQSRrgnkJIPKRRkhdygRmM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1105G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673256G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673256", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_13.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_13.json new file mode 100644 index 00000000..bdeb78a1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_13.json @@ -0,0 +1,276 @@ +{ + "id": "STX_Syrbe_13", + "subject": { + "id": "STX_Syrbe_13", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_13", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_13", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ulyvYJpjbWKAIPVVmmOACZQRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.364C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661140C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661140", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_14.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_14.json new file mode 100644 index 00000000..a8cda8c8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_14.json @@ -0,0 +1,204 @@ +{ + "id": "STX_Syrbe_14", + "subject": { + "id": "STX_Syrbe_14", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P8M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_14", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_14", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_QsJhFHxbuzSQqYvWSVpukOthY", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.749A>G" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666251A>G" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666251", + "ref": "A", + "alt": "G" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_15.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_15.json new file mode 100644 index 00000000..86f426db --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_15.json @@ -0,0 +1,182 @@ +{ + "id": "STX_Syrbe_15", + "subject": { + "id": "STX_Syrbe_15", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P1Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_15", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926b", + "label": "Ohtahara Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_15", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_rICMjslwQyRDcviLTdTRztnRR", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.126C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127653753C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127653753", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_16.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_16.json new file mode 100644 index 00000000..d323b5ee --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_16.json @@ -0,0 +1,189 @@ +{ + "id": "STX_Syrbe_16", + "subject": { + "id": "STX_Syrbe_16", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P18Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "No Seizures" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0000718", + "label": "Aggressive behavior" + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + }, + { + "type": { + "id": "HP:0008081", + "label": "Pes valgus" + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_16", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_16", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_tpZaoMPyUwPRuqPbKCHtMownp", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.795-1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668079G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668079", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_17.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_17.json new file mode 100644 index 00000000..4390ee25 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_17.json @@ -0,0 +1,244 @@ +{ + "id": "STX_Syrbe_17", + "subject": { + "id": "STX_Syrbe_17", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P14M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P16M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_17", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_17", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_pcshNkjKmzteSKOyedXydQVpb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1461+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127678533G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127678533", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_19.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_19.json new file mode 100644 index 00000000..d06c91c8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_19.json @@ -0,0 +1,356 @@ +{ + "id": "STX_Syrbe_19", + "subject": { + "id": "STX_Syrbe_19", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P15Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0010818", + "label": "Generalized tonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001257", + "label": "Spasticity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0010844", + "label": "EEG with multifocal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0002355", + "label": "Difficulty walking" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0000639", + "label": "Nystagmus" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_19", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_19", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_ZZeiOHcoofrYkejBngtKaNPnj", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1006C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127672093C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127672093", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_2.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_2.json new file mode 100644 index 00000000..2a0774f8 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_2.json @@ -0,0 +1,237 @@ +{ + "id": "STX_Syrbe_2", + "subject": { + "id": "STX_Syrbe_2", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P16Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001336", + "label": "Myoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + }, + { + "type": { + "id": "HP:0000504", + "label": "Abnormality of vision" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_2", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_2", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_unXgshJydQDYNlohMoKjrjZAq", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1217G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675910G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675910", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_20.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_20.json new file mode 100644 index 00000000..f8cc9ad1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_20.json @@ -0,0 +1,237 @@ +{ + "id": "STX_Syrbe_20", + "subject": { + "id": "STX_Syrbe_20", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003763", + "label": "Bruxism" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0012444", + "label": "Brain atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_20", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_20", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_wgGNfdJTtlJpxOxoMOjaoLWnM", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1216C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127675909C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127675909", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_21.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_21.json new file mode 100644 index 00000000..7faa7c83 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_21.json @@ -0,0 +1,388 @@ +{ + "id": "STX_Syrbe_21", + "subject": { + "id": "STX_Syrbe_21", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002075", + "label": "Dysdiadochokinesis" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0100660", + "label": "Dyskinesia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001310", + "label": "Dysmetria" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + }, + { + "type": { + "id": "HP:0011198", + "label": "EEG with generalized epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P3M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P3M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_21", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_21", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_VKiJkhCSMXDhETkRLPNnVbaMb", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1702+1G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682561G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682561", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_25.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_25.json new file mode 100644 index 00000000..ccc1dd90 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_25.json @@ -0,0 +1,308 @@ +{ + "id": "STX_Syrbe_25", + "subject": { + "id": "STX_Syrbe_25", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P3Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000504", + "label": "Abnormality of vision" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011169", + "label": "Generalized clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002421", + "label": "Poor head control" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P2M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P24M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_25", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_25", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SwmibzXXgBPVBQCoNeAbDRQSI", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.568C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127663343C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127663343", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_26.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_26.json new file mode 100644 index 00000000..f26ed87f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_26.json @@ -0,0 +1,388 @@ +{ + "id": "STX_Syrbe_26", + "subject": { + "id": "STX_Syrbe_26", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P0Y7M" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001252", + "label": "Muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0003623", + "label": "Neonatal onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0010864", + "label": "Intellectual disability, severe" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001332", + "label": "Dystonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0002072", + "label": "Chorea" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P7M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_26", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_26", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_SewXPVLMGwOZeEtbxrrvKqIqH", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1268T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676662T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676662", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_27.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_27.json new file mode 100644 index 00000000..dc662239 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_27.json @@ -0,0 +1,325 @@ +{ + "id": "STX_Syrbe_27", + "subject": { + "id": "STX_Syrbe_27", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000338", + "label": "Hypomimic face" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000504", + "label": "Abnormality of vision" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001249", + "label": "Intellectual disability" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0000483", + "label": "Astigmatism" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002059", + "label": "Cerebral atrophy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001298", + "label": "Encephalopathy" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + }, + { + "type": { + "id": "HP:0002540", + "label": "Inability to walk" + }, + "onset": { + "age": { + "iso8601duration": "P0M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_27", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_27", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_FjcHvxUUGwhKmnwOsIGlTqwhn", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1060T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127673211T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127673211", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_3.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_3.json new file mode 100644 index 00000000..0464023f --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_3.json @@ -0,0 +1,248 @@ +{ + "id": "STX_Syrbe_3", + "subject": { + "id": "STX_Syrbe_3", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0012452", + "label": "Restless legs" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002521", + "label": "Hypsarrhythmia" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0012469", + "label": "Infantile spasms" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0200134", + "label": "Epileptic encephalopathy" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + }, + { + "type": { + "id": "HP:0000504", + "label": "Abnormality of vision" + }, + "resolution": { + "age": { + "iso8601duration": "P8M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_3", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926d", + "label": "West Syndrome" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_3", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_TsMahclhSWJZXIAQLrOfSKPNQ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1497C>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127680192C>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127680192", + "ref": "C", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_4.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_4.json new file mode 100644 index 00000000..cff8d17c --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_4.json @@ -0,0 +1,340 @@ +{ + "id": "STX_Syrbe_4", + "subject": { + "id": "STX_Syrbe_4", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P6Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0002384", + "label": "Focal impaired awareness seizure" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0000717", + "label": "Autism" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0004322", + "label": "Short stature" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0011153", + "label": "Focal motor seizure" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0000504", + "label": "Abnormality of vision" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0007359", + "label": "Focal-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P31M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P77M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_4", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_4", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_qzMLzwIvcKyLnQjvLsSqWCMJg", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1651C>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127682509C>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127682509", + "ref": "C", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_5.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_5.json new file mode 100644 index 00000000..6191c3ed --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_5.json @@ -0,0 +1,292 @@ +{ + "id": "STX_Syrbe_5", + "subject": { + "id": "STX_Syrbe_5", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0001336", + "label": "Myoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0008081", + "label": "Pes valgus" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + }, + { + "type": { + "id": "HP:0002355", + "label": "Difficulty walking" + }, + "onset": { + "age": { + "iso8601duration": "P1M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P1M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_5", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_5", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_BYRqxXzlAtJGLikYfHgeDocAJ", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.704G>A" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127666206G>A" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127666206", + "ref": "G", + "alt": "A" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_6.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_6.json new file mode 100644 index 00000000..6e5f61b1 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_6.json @@ -0,0 +1,159 @@ +{ + "id": "STX_Syrbe_6", + "subject": { + "id": "STX_Syrbe_6", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P2Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + } + }, + { + "type": { + "id": "HP:0001250", + "label": "No Seizures" + }, + "excluded": true + }, + { + "type": { + "id": "HP:0001344", + "label": "Absent speech" + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_6", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926c", + "label": "NDD" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_6", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_LSUBWztrWhhivgfjcKQYuwKrc", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.1261G>T" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127676655G>T" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127676655", + "ref": "G", + "alt": "T" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_8.json b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_8.json new file mode 100644 index 00000000..5b6e39cb --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_Syrbe_8.json @@ -0,0 +1,292 @@ +{ + "id": "STX_Syrbe_8", + "subject": { + "id": "STX_Syrbe_8", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P4Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0002069", + "label": "Generalized tonic-clonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0003593", + "label": "Infantile onset" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0008947", + "label": "Infantile muscular hypotonia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0001251", + "label": "Ataxia" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0001263", + "label": "Global developmental delay" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0000486", + "label": "Strabismus" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0002355", + "label": "Difficulty walking" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0001336", + "label": "Myoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + }, + { + "type": { + "id": "HP:0008081", + "label": "Pes valgus" + }, + "onset": { + "age": { + "iso8601duration": "P15M" + } + }, + "resolution": { + "age": { + "iso8601duration": "P19M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_Syrbe_8", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_Syrbe_8", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_AvhivUXzVVTnGUrOOkodTpEPe", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.385A>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127661161A>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127661161", + "ref": "A", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file diff --git a/notebooks/STXBP1/input/PMID_35190816_STX_s010.json b/notebooks/STXBP1/input/PMID_35190816_STX_s010.json new file mode 100644 index 00000000..020761d9 --- /dev/null +++ b/notebooks/STXBP1/input/PMID_35190816_STX_s010.json @@ -0,0 +1,325 @@ +{ + "id": "STX_s010", + "subject": { + "id": "STX_s010", + "timeAtLastEncounter": { + "age": { + "iso8601duration": "P5Y" + } + } + }, + "phenotypicFeatures": [ + { + "type": { + "id": "HP:0000750", + "label": "Delayed speech and language development" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002376", + "label": "Developmental regression" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001337", + "label": "Tremor" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000733", + "label": "Stereotypy" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001212", + "label": "Prominent fingertip pads" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001270", + "label": "Motor delay" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000736", + "label": "Short attention span" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0001336", + "label": "Myoclonus" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002373", + "label": "Febrile seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002123", + "label": "Generalized myoclonic seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0031165", + "label": "Multifocal seizures" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002197", + "label": "Generalized-onset seizure" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002353", + "label": "EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011201", + "label": "EEG with changes in voltage" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0025373", + "label": "Interictal EEG abnormality" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0011185", + "label": "EEG with focal epileptiform discharges" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0010843", + "label": "EEG with focal slow activity" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0000010", + "label": "Recurrent urinary tract infections" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + }, + { + "type": { + "id": "HP:0002788", + "label": "Recurrent upper respiratory tract infections" + }, + "onset": { + "age": { + "iso8601duration": "P9M" + } + } + } + ], + "interpretations": [ + { + "id": "STX_s010", + "progressStatus": "SOLVED", + "diagnosis": { + "disease": { + "id": "OMIM:602926e", + "label": "Other DEE" + }, + "genomicInterpretations": [ + { + "subjectOrBiosampleId": "STX_s010", + "interpretationStatus": "CAUSATIVE", + "variantInterpretation": { + "variationDescriptor": { + "id": "var_oEbnfnMSfNbdCcZisueaQBUAB", + "geneContext": { + "valueId": "HGNC:11444", + "symbol": "STXBP1" + }, + "expressions": [ + { + "syntax": "hgvs.c", + "value": "NM_001032221.6:c.860T>C" + }, + { + "syntax": "hgvs.g", + "value": "NC_000009.12:g.127668145T>C" + } + ], + "vcfRecord": { + "genomeAssembly": "hg38", + "chrom": "chr9", + "pos": "127668145", + "ref": "T", + "alt": "C" + }, + "moleculeContext": "genomic", + "allelicState": { + "id": "GENO:0000135", + "label": "heterozygous" + } + } + } + } + ] + } + } + ], + "metaData": { + "created": "2023-10-02T22:26:06.164090871Z", + "createdBy": "ORCID:0000-0002-0736-9199", + "resources": [ + { + "id": "geno", + "name": "Genotype Ontology", + "url": "http://purl.obolibrary.org/obo/geno.owl", + "version": "2022-03-05", + "namespacePrefix": "GENO", + "iriPrefix": "http://purl.obolibrary.org/obo/GENO_" + }, + { + "id": "hgnc", + "name": "HUGO Gene Nomenclature Committee", + "url": "https://www.genenames.org", + "version": "06/01/23", + "namespacePrefix": "HGNC", + "iriPrefix": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/" + }, + { + "id": "omim", + "name": "An Online Catalog of Human Genes and Genetic Disorders", + "url": "https://www.omim.org", + "version": "January 4, 2023", + "namespacePrefix": "OMIM", + "iriPrefix": "https://www.omim.org/entry/" + }, + { + "id": "so", + "name": "Sequence types and features ontology", + "url": "http://purl.obolibrary.org/obo/so.obo", + "version": "2021-11-22", + "namespacePrefix": "SO", + "iriPrefix": "http://purl.obolibrary.org/obo/SO_" + }, + { + "id": "hp", + "name": "human phenotype ontology", + "url": "http://purl.obolibrary.org/obo/hp.owl", + "version": "2023-09-01", + "namespacePrefix": "HP", + "iriPrefix": "http://purl.obolibrary.org/obo/HP_" + } + ], + "phenopacketSchemaVersion": "2.0", + "externalReferences": [ + { + "id": "PMID:35190816", + "reference": "https://pubmed.ncbi.nlm.nih.gov/35190816", + "description": "Assessing the landscape of STXBP1-related disorders in 534 individuals" + } + ] + } +} \ No newline at end of file