diff --git a/README.md b/README.md index e687f6e..07453e9 100644 --- a/README.md +++ b/README.md @@ -1,219 +1,5 @@ [![Build Status](https://travis-ci.org/agduncan94/gdc-viewer.svg?branch=develop)](https://travis-ci.org/agduncan94/gdc-viewer) # GDC JBrowse Plugin -A plugin for [JBrowse](https://jbrowse.org/) for viewing [GDC](https://gdc.cancer.gov/) data. For any bugs, issues, or feature recommendations please create an issue through GitHub. +A plugin for [JBrowse](https://jbrowse.org/) for viewing [GDC](https://gdc.cancer.gov/) data. For any bugs, issues, or feature recommendations please create an issue or PR through GitHub. -# Installation and Setup -## 1. Install JBrowse -Quick setup of JBrowse - https://github.com/GMOD/jbrowse/#install-jbrowse-from-github-for-developers - -## 2. Install Plugin -See [JBrowse - Installing Plugins](https://jbrowse.org/docs/plugins.html) for a general approach to installing plugins. - -For installing gdc-viewer plugin: -1. Copy the gdc-viewer folder into the JBrowse `plugins` directory. -2. Add 'gdc-viewer' to the array of plugins in the `jbrowse_conf.json`. - -## 3. Install Reference Sequence Data -Now setup the reference sequence used. GDC requires the GRCh38 Human reference files. - -Download the GRCh38 `.fa` and `.fa.fai` files online (ex. http://bioinfo.hpc.cam.ac.uk/downloads/datasets/fasta/grch38/). Then put the following in `./data/tracks.conf` (note files may be named something else). - -``` -refSeqs=GRCh38.genome.fa.fai - -[tracks.refseqs] -urlTemplate=GRCh38.genome.fa -``` - -## 4. Adding new tracks -We have some basic example tracks in `data/tracks.conf`. You can also add new tracks by using the GDC dialog accessible within JBrowse. These are present in the menu under `GDC`. See [Dynamic Track Generation](#dynamic-track-generation) for more details. - -## 5. Run JBrowse -You'll have to run the following commands: - -``` -./setup.sh -utils/jb_run.js -p 3000 -``` - -JBrowse should now be running with the GDC Plugin working! - -# JBrowse configuration -## Faceted Track Selector -Add the following to your jbrowse.conf to use the faceted track selector. -``` -[trackSelector] -type = Faceted -displayColumns = - + label - + key - + datatype - + case - + project - + primarySite -``` - -Note that this will only show preloaded tracks as well as tracks you have added using the various dialogs. It does not dynamically create tracks based on what is available from the GDC. - -# Available Store SeqFeature -## A note on filters -All SeqFeatures support filters as they are defined in the [GDC API Documentation](https://docs.gdc.cancer.gov/API/Users_Guide/Search_and_Retrieval/#filters-specifying-the-query). - -Note that filters should have the filter type prepended to the front. Ex. Case filters use `cases.`, SSM filters use `ssms.`, and Gene filters use `genes.`. GraphQL is used to retrieve results, so if the filters work there, they work with these Store classes. - -The following shows a filter for cases by ethnicity: -``` -{ - "op":"in", - "content":{ - "field":"cases.demographic.ethnicity", - "value":[ - "hispanic or latino" - ] - } -} -``` - -You can view/edit the filters associated with a track by clicking the down arrow for the track menu and selecting `View Applied Filters`. Be careful, there are currently no checks to see if the filters are valid before applying them. - -## Genes -A simple view of all of the genes seen across all cases. - -You can view case specific genes by setting the `case` field. - -You can apply filters to the track too, in the same format as GDC. The below example only shows Genes whose biotype is not 'protein_coding'. - -``` -{ - "op":"!=", - "content":{ - "field":"cases.biotype", - "value":"protein_coding" - } -} -``` - -To put it in the track config you may want to minimize it as such: -``` -filters={"op":"!=","content":{"field":"cases.biotype","value":"protein_coding"}} -``` - -Example Track: -``` -[tracks.GDC_Genes] -storeClass=gdc-viewer/Store/SeqFeature/Genes -type=JBrowse/View/Track/GeneTrack -key=GDC Genes -metadata.datatype=Gene -filters={"op":"!=","content":{"field":"cases.biotype","value":"protein_coding"}} -``` - -![GDC Genes](images/GDC-genes-protein-coding.png) - -### Extra notes -You can set the max number of genes to return with the `size` field (per panel). It defaults to 100. The smaller the number, the faster the results will appear. - -## SSMs -A simple view of all of the simple somatic mutations seen across all cases. - -You can view case specific SSMs by setting the `case` field. - -You can apply filters to the track too, in the same format as GDC. The below example only shows SSMs whose reference allele is 'G'. -``` -{ - "op":"=", - "content":{ - "field":"ssms.reference_allele", - "value":"G" - } -} -``` - -To put it in the track config you may want to minimize it as such: -``` -filters={"op":"=","content":{"field":"ssms.reference_allele","value":"G"}} -``` - -Example Track: -``` -[tracks.GDC_SSM] -storeClass=gdc-viewer/Store/SeqFeature/SimpleSomaticMutations -type=gdc-viewer/View/Track/SSMVariants -key=GDC SSM -metadata.datatype=SSM -filters={"op":"=","content":{"field":"ssms.reference_allele","value":"G"}} -``` - -![GDC SSMs](images/GDC-mutations-base-g.png) - -### Extra notes -You can set the max number of SSMs to return with the `size` field (per panel). It defaults to 100. The smaller the number, the faster the results will appear. - -## CNVs -A simple view of all of the CNVs seen across all cases. - -You can view case specific CNVs by setting the `case` field. - -You can apply filters to the track too, in the same format as GDC. The below example only shows CNVs that are 'Gains'. -``` -{ - "op":"=", - "content":{ - "field":"cnv_change", - "value":[ - "Gain" - ] - } -} -``` - -To put it in the track config you may want to minimize it as such: -``` -filters={"op":"=","content":{"field":"cnv_change","value":["Gain"]}} -``` - -Example Track: -``` -[tracks.GDC_CNV] -storeClass=gdc-viewer/Store/SeqFeature/CNVs -type=gdc-viewer/View/Track/CNVTrack -key=GDC CNV -metadata.datatype=CNV - -``` - -![GDC CNVs](images/GDC-cnv-gain.png) - -### Extra notes -You can set the max number of CNVs to return with the `size` field (per panel). It defaults to 500. The smaller the number, the faster the results will appear. - -# Dynamic Track Generation -## Explore cases, genes and mutations -This dialog is similar to the Exploration section of the GDC data portal. As you apply facets on the left-hand side, updated results will be shown on the right side. You can create donor specific SSM, Gene, and CNV tracks, along with GDC-wide SSM, Gene and CNV tracks. -![GDC Portal](images/GDC-portal-explore.png) - -## Explore Projects -This dialog shows the projects present on the GDC Data Portal. You can add SSM, Gene, and CNV tracks for each project. -![GDC projects](images/GDC-project-browser.png) - -## Explore Primary Sites -This dialog shows the primary sites present on the GDC Data Portal. You can add SSM, Gene, and CNV tracks for each primary site. -![GDC primary sites](images/GDC-primary-sites.png) - -# Export Types -The following export types are supported by both GDC Genes and SSMs. To export, select `Save track data` in the track dropdown. Note that not all track information is carried over to the exported file. -* BED -* GFF3 -* Sequin Table -* CSV -* Track Config - -# Automated testing -Cypress.io is used for testing this plugin. The following steps show how to run the tests locally. -1. Install JBrowse but don't install chromosome files. -2. Download Chr 1 fasta from `http://ftp.ensembl.org/pub/release-94/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.chromosome.1.fa.gz`. There should be the fasta index file in `cypress/data/Homo_sapiens.GRCh38.dna.chromosome.1.fa.fai`. Put these files into `jbrowse/data/`. -3. Install Cypress.io with `npm install`. -4. Place `cypress/data/tracks.conf` into your `jbrowse/data/` directory. Make sure no other tracks are present. -5. Run `npx cypress open` or `npx cypress run` or `npm run e2e` - -**Note** while some tests have mocked endpoints, not all endpoints are mocked. This could lead to breakage of tests in the future. \ No newline at end of file +Check out [our documentation](https://agduncan94.github.io/gdc-viewer/) for information on installation, available features, and more. \ No newline at end of file diff --git a/cypress/fixtures/ExportGenes/GeneProjects.json b/cypress/fixtures/ExportGenes/GeneProjects.json deleted file mode 100644 index 93b1c29..0000000 --- a/cypress/fixtures/ExportGenes/GeneProjects.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"projectsViewer":{"projects":{"hits":{"edges":[{"node":{"disease_type":["Myeloid Leukemias","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtQU1M","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-AML"}},{"node":{"disease_type":["Neuroepitheliomatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtTkJM","primary_site":["Heart, mediastinum, and pleura","Stomach","Bones, joints and articular cartilage of other and unspecified sites","Lymph nodes","Liver and intrahepatic bile ducts","Unknown","Uterus, NOS","Skin","Meninges","Other endocrine glands and related structures","Adrenal gland","Renal pelvis","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Bones, joints and articular cartilage of limbs","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Hematopoietic and reticuloendothelial systems","Kidney"],"project_id":"TARGET-NBL"}},{"node":{"disease_type":["Gliomas"],"id":"UHJvamVjdDpUQ0dBLUxHRw==","primary_site":["Brain"],"project_id":"TCGA-LGG"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVJFQUQ=","primary_site":["Rectosigmoid junction","Unknown","Rectum","Colon","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-READ"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVRIQ0E=","primary_site":["Thyroid gland"],"project_id":"TCGA-THCA"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNSRU5PTEFOSUI=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-CRENOLANIB"}},{"node":{"disease_type":["Mesothelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU1FU08=","primary_site":["Heart, mediastinum, and pleura","Bronchus and lung"],"project_id":"TCGA-MESO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUFDQw==","primary_site":["Adrenal gland"],"project_id":"TCGA-ACC"}},{"node":{"disease_type":["Myomatous Neoplasms","Soft Tissue Tumors and Sarcomas, NOS","Fibromatous Neoplasms","Lipomatous Neoplasms","Nerve Sheath Tumors","Synovial-like Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVNBUkM=","primary_site":["Corpus uteri","Stomach","Other and unspecified parts of tongue","Meninges","Other and unspecified male genital organs","Colon","Connective, subcutaneous and other soft tissues","Bones, joints and articular cartilage of limbs","Ovary","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Uterus, NOS","Kidney"],"project_id":"TCGA-SARC"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtQ0NTSw==","primary_site":["Kidney"],"project_id":"TARGET-CCSK"}},{"node":{"disease_type":["Adnexal and Skin Appendage Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Basal Cell Neoplasms","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Fibroepithelial Neoplasms","Ductal and Lobular Neoplasms","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJSQ0E=","primary_site":["Breast"],"project_id":"TCGA-BRCA"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU9W","primary_site":["Ovary"],"project_id":"TCGA-OV"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUNIT0w=","primary_site":["Other and unspecified parts of biliary tract","Gallbladder","Liver and intrahepatic bile ducts"],"project_id":"TCGA-CHOL"}},{"node":{"disease_type":["Unknown","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpPUkdBTk9JRC1QQU5DUkVBVElD","primary_site":["Pancreas"],"project_id":"ORGANOID-PANCREATIC"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpWQVJFUE9QLUFQT0xMTw==","primary_site":["Bronchus and lung"],"project_id":"VAREPOP-APOLLO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas","Gliomas"],"id":"UHJvamVjdDpIQ01JLUNNREM=","primary_site":["Brain","Rectum","Colon"],"project_id":"HCMI-CMDC"}},{"node":{"disease_type":["Not Reported","Gliomas"],"id":"UHJvamVjdDpUQ0dBLUdCTQ==","primary_site":["Brain"],"project_id":"TCGA-GBM"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUkM=","primary_site":["Kidney"],"project_id":"TCGA-KIRC"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVNLQ00=","primary_site":["Skin"],"project_id":"TCGA-SKCM"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVVDRUM=","primary_site":["Corpus uteri","Uterus, NOS"],"project_id":"TCGA-UCEC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVNUQUQ=","primary_site":["Stomach"],"project_id":"TCGA-STAD"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpDUFRBQy0z","primary_site":["Kidney","Uterus, NOS","Bronchus and lung"],"project_id":"CPTAC-3"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUxVU0M=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUSC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBSQUQ=","primary_site":["Prostate gland"],"project_id":"TCGA-PRAD"}},{"node":{"disease_type":["Myeloid Leukemias","Other Hematologic Disorders","Unknown","Precursor Cell Lymphoblastic Lymphoma","Myelodysplastic Syndromes","Other Leukemias","Chronic Myeloproliferative Disorders","Plasma Cell Tumors","Leukemias, NOS"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNPSE9SVA==","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-COHORT"}},{"node":{"disease_type":["Not Reported","Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpUQ0dBLURMQkM=","primary_site":["Heart, mediastinum, and pleura","Testis","Stomach","Lymph nodes","Bones, joints and articular cartilage of other and unspecified sites","Brain","Thyroid gland","Small intestine","Colon","Connective, subcutaneous and other soft tissues","Other and unspecified major salivary glands","Retroperitoneum and peritoneum","Hematopoietic and reticuloendothelial systems","Breast"],"project_id":"TCGA-DLBC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJQ0g=","primary_site":["Kidney"],"project_id":"TCGA-KICH"}},{"node":{"disease_type":["Germ Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRHQ1Q=","primary_site":["Testis"],"project_id":"TCGA-TGCT"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVVWTQ==","primary_site":["Eye and adnexa"],"project_id":"TCGA-UVM"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpUQ0dBLUxBTUw=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TCGA-LAML"}},{"node":{"disease_type":["Not Applicable","Myeloid Leukemias","Lymphoid Leukemias","Leukemias, NOS","Other Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAz","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P3"}},{"node":{"disease_type":["Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpDR0NJLUJMR1NQ","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"CGCI-BLGSP"}},{"node":{"disease_type":["Thymic Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRIWU0=","primary_site":["Heart, mediastinum, and pleura","Thymus"],"project_id":"TCGA-THYM"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAy","primary_site":["Hematopoietic and reticuloendothelial systems","Blood"],"project_id":"TARGET-ALL-P2"}},{"node":{"disease_type":["Germ Cell Neoplasms","Acinar Cell Neoplasms","Miscellaneous Tumors","Thymic Epithelial Neoplasms","Gliomas","Not Reported","Neuroepitheliomatous Neoplasms","Ductal and Lobular Neoplasms","Complex Mixed and Stromal Neoplasms","Complex Epithelial Neoplasms","Adnexal and Skin Appendage Neoplasms","Mesothelial Neoplasms","Basal Cell Neoplasms","Mucoepidermoid Neoplasms","Specialized Gonadal Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Transitional Cell Papillomas and Carcinomas","Paragangliomas and Glomus Tumors","Nevi and Melanomas","Meningiomas"],"id":"UHJvamVjdDpGTS1BRA==","primary_site":["Kidney","Testis","Gallbladder","Unknown","Other and unspecified parts of biliary tract","Adrenal gland","Thyroid gland","Spinal cord, cranial nerves, and other parts of central nervous system","Peripheral nerves and autonomic nervous system","Stomach","Cervix uteri","Bladder","Small intestine","Breast","Bronchus and lung","Other and ill-defined sites","Other and unspecified major salivary glands","Rectum","Retroperitoneum and peritoneum","Pancreas","Heart, mediastinum, and pleura","Prostate gland","Liver and intrahepatic bile ducts","Other and unspecified female genital organs","Thymus","Penis","Nasopharynx","Ovary","Uterus, NOS","Vulva","Other and unspecified urinary organs","Trachea","Ureter","Other endocrine glands and related structures","Not Reported","Colon","Anus and anal canal","Vagina","Skin","Esophagus","Eye and adnexa","Other and ill-defined digestive organs"],"project_id":"FM-AD"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUhOU0M=","primary_site":["Other and ill-defined sites in lip, oral cavity and pharynx","Palate","Other and unspecified parts of tongue","Hypopharynx","Tonsil","Oropharynx","Larynx","Other and unspecified parts of mouth","Gum","Floor of mouth","Bones, joints and articular cartilage of other and unspecified sites","Lip","Base of tongue"],"project_id":"TCGA-HNSC"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtUlQ=","primary_site":["Lip","Kidney","Liver and intrahepatic bile ducts"],"project_id":"TARGET-RT"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNPQUQ=","primary_site":["Rectosigmoid junction","Colon"],"project_id":"TCGA-COAD"}},{"node":{"disease_type":["Osseous and Chondromatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtT1M=","primary_site":["Not Reported","Bones, joints and articular cartilage of other and unspecified sites","Bones, joints and articular cartilage of limbs"],"project_id":"TARGET-OS"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxJSEM=","primary_site":["Liver and intrahepatic bile ducts"],"project_id":"TCGA-LIHC"}},{"node":{"disease_type":["Mature B-Cell Lymphomas","Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpDVFNQLURMQkNMMQ==","primary_site":["Unknown","Lymph Nodes"],"project_id":"CTSP-DLBCL1"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUVTQ0E=","primary_site":["Esophagus","Stomach"],"project_id":"TCGA-ESCA"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtV1Q=","primary_site":["Kidney"],"project_id":"TARGET-WT"}},{"node":{"disease_type":["Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpOQ0lDQ1ItRExCQ0w=","primary_site":["Lymph Nodes"],"project_id":"NCICCR-DLBCL"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Acinar Cell Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxVQUQ=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBBQUQ=","primary_site":["Pancreas"],"project_id":"TCGA-PAAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNFU0M=","primary_site":["Cervix uteri"],"project_id":"TCGA-CESC"}},{"node":{"disease_type":["Transitional Cell Papillomas and Carcinomas","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJMQ0E=","primary_site":["Bladder"],"project_id":"TCGA-BLCA"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUlA=","primary_site":["Kidney"],"project_id":"TCGA-KIRP"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVVDUw==","primary_site":["Uterus, NOS"],"project_id":"TCGA-UCS"}},{"node":{"disease_type":["Paragangliomas and Glomus Tumors"],"id":"UHJvamVjdDpUQ0dBLVBDUEc=","primary_site":["Heart, mediastinum, and pleura","Other endocrine glands and related structures","Adrenal gland","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum"],"project_id":"TCGA-PCPG"}},{"node":{"disease_type":["Plasma Cell Tumors"],"id":"UHJvamVjdDpNTVJGLUNPTU1QQVNT","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"MMRF-COMMPASS"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAx","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P1"}}]}}}}} \ No newline at end of file diff --git a/cypress/fixtures/ExportGenes/ProjectTable.json b/cypress/fixtures/ExportGenes/ProjectTable.json index d64aeef..f4b2483 100644 --- a/cypress/fixtures/ExportGenes/ProjectTable.json +++ b/cypress/fixtures/ExportGenes/ProjectTable.json @@ -1 +1 @@ -{"data":{"viewer":{"explore":{"cases":{"cnvAll":{"total":827},"cnvTestedByGene":{"total":838},"cnvTotal":{"project__project_id":{"buckets":[{"doc_count":1072,"key":"TCGA-BRCA"},{"doc_count":596,"key":"TCGA-GBM"},{"doc_count":585,"key":"TCGA-OV"},{"doc_count":521,"key":"TCGA-HNSC"},{"doc_count":516,"key":"TCGA-KIRC"},{"doc_count":513,"key":"TCGA-LUAD"},{"doc_count":510,"key":"TCGA-UCEC"},{"doc_count":502,"key":"TCGA-LUSC"},{"doc_count":497,"key":"TCGA-LGG"},{"doc_count":487,"key":"TCGA-PRAD"},{"doc_count":468,"key":"TCGA-SKCM"},{"doc_count":448,"key":"TCGA-COAD"},{"doc_count":432,"key":"TCGA-STAD"},{"doc_count":418,"key":"TCGA-THCA"},{"doc_count":408,"key":"TCGA-BLCA"},{"doc_count":371,"key":"TCGA-LIHC"},{"doc_count":294,"key":"TCGA-CESC"},{"doc_count":269,"key":"TCGA-KIRP"},{"doc_count":260,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":175,"key":"TCGA-PAAD"},{"doc_count":174,"key":"TCGA-LAML"},{"doc_count":164,"key":"TCGA-READ"},{"doc_count":157,"key":"TCGA-PCPG"},{"doc_count":150,"key":"TCGA-TGCT"},{"doc_count":113,"key":"TCGA-THYM"},{"doc_count":90,"key":"TCGA-ACC"},{"doc_count":84,"key":"TCGA-MESO"},{"doc_count":79,"key":"TCGA-UVM"},{"doc_count":65,"key":"TCGA-KICH"},{"doc_count":56,"key":"TCGA-UCS"},{"doc_count":47,"key":"TCGA-DLBC"},{"doc_count":36,"key":"TCGA-CHOL"}]}},"filtered":{"project__project_id":{"buckets":[{"doc_count":7,"key":"TCGA-UCEC"},{"doc_count":1,"key":"TCGA-BLCA"},{"doc_count":1,"key":"TCGA-CESC"},{"doc_count":1,"key":"TCGA-LIHC"},{"doc_count":1,"key":"TCGA-OV"}]}},"gain":{"project__project_id":{"buckets":[{"doc_count":42,"key":"TCGA-OV"},{"doc_count":36,"key":"TCGA-BRCA"},{"doc_count":18,"key":"TCGA-BLCA"},{"doc_count":14,"key":"TCGA-LUAD"},{"doc_count":13,"key":"TCGA-SARC"},{"doc_count":12,"key":"TCGA-LIHC"},{"doc_count":12,"key":"TCGA-LUSC"},{"doc_count":10,"key":"TCGA-UCEC"},{"doc_count":6,"key":"TCGA-SKCM"},{"doc_count":5,"key":"TCGA-COAD"},{"doc_count":5,"key":"TCGA-GBM"},{"doc_count":5,"key":"TCGA-HNSC"},{"doc_count":5,"key":"TCGA-READ"},{"doc_count":4,"key":"TCGA-TGCT"},{"doc_count":3,"key":"TCGA-ESCA"},{"doc_count":3,"key":"TCGA-LGG"},{"doc_count":2,"key":"TCGA-ACC"},{"doc_count":2,"key":"TCGA-STAD"},{"doc_count":2,"key":"TCGA-UCS"},{"doc_count":1,"key":"TCGA-KIRC"},{"doc_count":1,"key":"TCGA-KIRP"},{"doc_count":1,"key":"TCGA-PRAD"},{"doc_count":1,"key":"TCGA-THCA"}]}},"loss":{"project__project_id":{"buckets":[{"doc_count":99,"key":"TCGA-BRCA"},{"doc_count":79,"key":"TCGA-OV"},{"doc_count":52,"key":"TCGA-SKCM"},{"doc_count":51,"key":"TCGA-LUAD"},{"doc_count":37,"key":"TCGA-HNSC"},{"doc_count":33,"key":"TCGA-STAD"},{"doc_count":32,"key":"TCGA-PRAD"},{"doc_count":30,"key":"TCGA-LUSC"},{"doc_count":28,"key":"TCGA-BLCA"},{"doc_count":26,"key":"TCGA-MESO"},{"doc_count":20,"key":"TCGA-CESC"},{"doc_count":19,"key":"TCGA-PCPG"},{"doc_count":18,"key":"TCGA-GBM"},{"doc_count":17,"key":"TCGA-SARC"},{"doc_count":14,"key":"TCGA-COAD"},{"doc_count":13,"key":"TCGA-UCEC"},{"doc_count":12,"key":"TCGA-ESCA"},{"doc_count":8,"key":"TCGA-LIHC"},{"doc_count":8,"key":"TCGA-TGCT"},{"doc_count":7,"key":"TCGA-READ"},{"doc_count":5,"key":"TCGA-UCS"},{"doc_count":4,"key":"TCGA-KIRC"},{"doc_count":4,"key":"TCGA-LGG"},{"doc_count":3,"key":"TCGA-PAAD"},{"doc_count":2,"key":"TCGA-ACC"},{"doc_count":2,"key":"TCGA-CHOL"},{"doc_count":2,"key":"TCGA-KIRP"},{"doc_count":2,"key":"TCGA-UVM"},{"doc_count":1,"key":"TCGA-DLBC"}]}},"total":{"project__project_id":{"buckets":[{"doc_count":986,"key":"TCGA-BRCA"},{"doc_count":567,"key":"TCGA-LUAD"},{"doc_count":530,"key":"TCGA-UCEC"},{"doc_count":510,"key":"TCGA-LGG"},{"doc_count":508,"key":"TCGA-HNSC"},{"doc_count":498,"key":"TCGA-PRAD"},{"doc_count":495,"key":"TCGA-LUSC"},{"doc_count":492,"key":"TCGA-THCA"},{"doc_count":469,"key":"TCGA-SKCM"},{"doc_count":440,"key":"TCGA-STAD"},{"doc_count":436,"key":"TCGA-OV"},{"doc_count":412,"key":"TCGA-BLCA"},{"doc_count":400,"key":"TCGA-COAD"},{"doc_count":393,"key":"TCGA-GBM"},{"doc_count":364,"key":"TCGA-LIHC"},{"doc_count":336,"key":"TCGA-KIRC"},{"doc_count":289,"key":"TCGA-CESC"},{"doc_count":281,"key":"TCGA-KIRP"},{"doc_count":237,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":182,"key":"TCGA-PAAD"},{"doc_count":179,"key":"TCGA-PCPG"},{"doc_count":145,"key":"TCGA-TGCT"},{"doc_count":144,"key":"TCGA-LAML"},{"doc_count":137,"key":"TCGA-READ"},{"doc_count":123,"key":"TCGA-THYM"},{"doc_count":92,"key":"TCGA-ACC"},{"doc_count":82,"key":"TCGA-MESO"},{"doc_count":80,"key":"TCGA-UVM"},{"doc_count":66,"key":"TCGA-KICH"},{"doc_count":57,"key":"TCGA-UCS"},{"doc_count":51,"key":"TCGA-CHOL"},{"doc_count":37,"key":"TCGA-DLBC"}]}}},"ssms":{"hits":{"total":12}}}}}} \ No newline at end of file +{"data":{"viewer":{"explore":{"cases":{"cnvAll":{"total":827},"cnvTestedByGene":{"total":838},"cnvTotal":{"project__project_id":{"buckets":[{"doc_count":1072,"key":"TCGA-BRCA"},{"doc_count":596,"key":"TCGA-GBM"},{"doc_count":585,"key":"TCGA-OV"},{"doc_count":521,"key":"TCGA-HNSC"},{"doc_count":516,"key":"TCGA-KIRC"},{"doc_count":513,"key":"TCGA-LUAD"},{"doc_count":510,"key":"TCGA-UCEC"},{"doc_count":502,"key":"TCGA-LUSC"},{"doc_count":497,"key":"TCGA-LGG"},{"doc_count":487,"key":"TCGA-PRAD"},{"doc_count":468,"key":"TCGA-SKCM"},{"doc_count":448,"key":"TCGA-COAD"},{"doc_count":432,"key":"TCGA-STAD"},{"doc_count":418,"key":"TCGA-THCA"},{"doc_count":408,"key":"TCGA-BLCA"},{"doc_count":371,"key":"TCGA-LIHC"},{"doc_count":294,"key":"TCGA-CESC"},{"doc_count":269,"key":"TCGA-KIRP"},{"doc_count":260,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":175,"key":"TCGA-PAAD"},{"doc_count":174,"key":"TCGA-LAML"},{"doc_count":164,"key":"TCGA-READ"},{"doc_count":157,"key":"TCGA-PCPG"},{"doc_count":150,"key":"TCGA-TGCT"},{"doc_count":113,"key":"TCGA-THYM"},{"doc_count":90,"key":"TCGA-ACC"},{"doc_count":84,"key":"TCGA-MESO"},{"doc_count":79,"key":"TCGA-UVM"},{"doc_count":65,"key":"TCGA-KICH"},{"doc_count":56,"key":"TCGA-UCS"},{"doc_count":47,"key":"TCGA-DLBC"},{"doc_count":36,"key":"TCGA-CHOL"}]}},"filtered":{"project__project_id":{"buckets":[{"doc_count":7,"key":"TCGA-UCEC"},{"doc_count":1,"key":"TCGA-BLCA"},{"doc_count":1,"key":"TCGA-CESC"},{"doc_count":1,"key":"TCGA-LIHC"},{"doc_count":1,"key":"TCGA-OV"}]}},"gain":{"project__project_id":{"buckets":[{"doc_count":42,"key":"TCGA-OV"},{"doc_count":36,"key":"TCGA-BRCA"},{"doc_count":18,"key":"TCGA-BLCA"},{"doc_count":14,"key":"TCGA-LUAD"},{"doc_count":13,"key":"TCGA-SARC"},{"doc_count":12,"key":"TCGA-LIHC"},{"doc_count":12,"key":"TCGA-LUSC"},{"doc_count":10,"key":"TCGA-UCEC"},{"doc_count":6,"key":"TCGA-SKCM"},{"doc_count":5,"key":"TCGA-COAD"},{"doc_count":5,"key":"TCGA-GBM"},{"doc_count":5,"key":"TCGA-HNSC"},{"doc_count":5,"key":"TCGA-READ"},{"doc_count":4,"key":"TCGA-TGCT"},{"doc_count":3,"key":"TCGA-ESCA"},{"doc_count":3,"key":"TCGA-LGG"},{"doc_count":2,"key":"TCGA-ACC"},{"doc_count":2,"key":"TCGA-STAD"},{"doc_count":2,"key":"TCGA-UCS"},{"doc_count":1,"key":"TCGA-KIRC"},{"doc_count":1,"key":"TCGA-KIRP"},{"doc_count":1,"key":"TCGA-PRAD"},{"doc_count":1,"key":"TCGA-THCA"}]}},"loss":{"project__project_id":{"buckets":[{"doc_count":99,"key":"TCGA-BRCA"},{"doc_count":79,"key":"TCGA-OV"},{"doc_count":52,"key":"TCGA-SKCM"},{"doc_count":51,"key":"TCGA-LUAD"},{"doc_count":37,"key":"TCGA-HNSC"},{"doc_count":33,"key":"TCGA-STAD"},{"doc_count":32,"key":"TCGA-PRAD"},{"doc_count":30,"key":"TCGA-LUSC"},{"doc_count":28,"key":"TCGA-BLCA"},{"doc_count":26,"key":"TCGA-MESO"},{"doc_count":20,"key":"TCGA-CESC"},{"doc_count":19,"key":"TCGA-PCPG"},{"doc_count":18,"key":"TCGA-GBM"},{"doc_count":17,"key":"TCGA-SARC"},{"doc_count":14,"key":"TCGA-COAD"},{"doc_count":13,"key":"TCGA-UCEC"},{"doc_count":12,"key":"TCGA-ESCA"},{"doc_count":8,"key":"TCGA-LIHC"},{"doc_count":8,"key":"TCGA-TGCT"},{"doc_count":7,"key":"TCGA-READ"},{"doc_count":5,"key":"TCGA-UCS"},{"doc_count":4,"key":"TCGA-KIRC"},{"doc_count":4,"key":"TCGA-LGG"},{"doc_count":3,"key":"TCGA-PAAD"},{"doc_count":2,"key":"TCGA-ACC"},{"doc_count":2,"key":"TCGA-CHOL"},{"doc_count":2,"key":"TCGA-KIRP"},{"doc_count":2,"key":"TCGA-UVM"},{"doc_count":1,"key":"TCGA-DLBC"}]}},"total":{"project__project_id":{"buckets":[{"doc_count":986,"key":"TCGA-BRCA"},{"doc_count":567,"key":"TCGA-LUAD"},{"doc_count":530,"key":"TCGA-UCEC"},{"doc_count":510,"key":"TCGA-LGG"},{"doc_count":508,"key":"TCGA-HNSC"},{"doc_count":498,"key":"TCGA-PRAD"},{"doc_count":495,"key":"TCGA-LUSC"},{"doc_count":492,"key":"TCGA-THCA"},{"doc_count":469,"key":"TCGA-SKCM"},{"doc_count":440,"key":"TCGA-STAD"},{"doc_count":436,"key":"TCGA-OV"},{"doc_count":412,"key":"TCGA-BLCA"},{"doc_count":400,"key":"TCGA-COAD"},{"doc_count":393,"key":"TCGA-GBM"},{"doc_count":364,"key":"TCGA-LIHC"},{"doc_count":336,"key":"TCGA-KIRC"},{"doc_count":289,"key":"TCGA-CESC"},{"doc_count":281,"key":"TCGA-KIRP"},{"doc_count":237,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":182,"key":"TCGA-PAAD"},{"doc_count":179,"key":"TCGA-PCPG"},{"doc_count":145,"key":"TCGA-TGCT"},{"doc_count":144,"key":"TCGA-LAML"},{"doc_count":137,"key":"TCGA-READ"},{"doc_count":123,"key":"TCGA-THYM"},{"doc_count":92,"key":"TCGA-ACC"},{"doc_count":82,"key":"TCGA-MESO"},{"doc_count":80,"key":"TCGA-UVM"},{"doc_count":66,"key":"TCGA-KICH"},{"doc_count":57,"key":"TCGA-UCS"},{"doc_count":51,"key":"TCGA-CHOL"},{"doc_count":37,"key":"TCGA-DLBC"}]}}},"ssms":{"hits":{"total":12}},"projects":{"hits":{"edges":[{"node":{"disease_type":["Myeloid Leukemias","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtQU1M","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-AML"}},{"node":{"disease_type":["Neuroepitheliomatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtTkJM","primary_site":["Heart, mediastinum, and pleura","Stomach","Bones, joints and articular cartilage of other and unspecified sites","Lymph nodes","Liver and intrahepatic bile ducts","Unknown","Uterus, NOS","Skin","Meninges","Other endocrine glands and related structures","Adrenal gland","Renal pelvis","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Bones, joints and articular cartilage of limbs","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Hematopoietic and reticuloendothelial systems","Kidney"],"project_id":"TARGET-NBL"}},{"node":{"disease_type":["Gliomas"],"id":"UHJvamVjdDpUQ0dBLUxHRw==","primary_site":["Brain"],"project_id":"TCGA-LGG"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVJFQUQ=","primary_site":["Rectosigmoid junction","Unknown","Rectum","Colon","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-READ"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVRIQ0E=","primary_site":["Thyroid gland"],"project_id":"TCGA-THCA"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNSRU5PTEFOSUI=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-CRENOLANIB"}},{"node":{"disease_type":["Mesothelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU1FU08=","primary_site":["Heart, mediastinum, and pleura","Bronchus and lung"],"project_id":"TCGA-MESO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUFDQw==","primary_site":["Adrenal gland"],"project_id":"TCGA-ACC"}},{"node":{"disease_type":["Myomatous Neoplasms","Soft Tissue Tumors and Sarcomas, NOS","Fibromatous Neoplasms","Lipomatous Neoplasms","Nerve Sheath Tumors","Synovial-like Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVNBUkM=","primary_site":["Corpus uteri","Stomach","Other and unspecified parts of tongue","Meninges","Other and unspecified male genital organs","Colon","Connective, subcutaneous and other soft tissues","Bones, joints and articular cartilage of limbs","Ovary","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Uterus, NOS","Kidney"],"project_id":"TCGA-SARC"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtQ0NTSw==","primary_site":["Kidney"],"project_id":"TARGET-CCSK"}},{"node":{"disease_type":["Adnexal and Skin Appendage Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Basal Cell Neoplasms","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Fibroepithelial Neoplasms","Ductal and Lobular Neoplasms","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJSQ0E=","primary_site":["Breast"],"project_id":"TCGA-BRCA"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU9W","primary_site":["Ovary"],"project_id":"TCGA-OV"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUNIT0w=","primary_site":["Other and unspecified parts of biliary tract","Gallbladder","Liver and intrahepatic bile ducts"],"project_id":"TCGA-CHOL"}},{"node":{"disease_type":["Unknown","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpPUkdBTk9JRC1QQU5DUkVBVElD","primary_site":["Pancreas"],"project_id":"ORGANOID-PANCREATIC"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpWQVJFUE9QLUFQT0xMTw==","primary_site":["Bronchus and lung"],"project_id":"VAREPOP-APOLLO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas","Gliomas"],"id":"UHJvamVjdDpIQ01JLUNNREM=","primary_site":["Brain","Rectum","Colon"],"project_id":"HCMI-CMDC"}},{"node":{"disease_type":["Not Reported","Gliomas"],"id":"UHJvamVjdDpUQ0dBLUdCTQ==","primary_site":["Brain"],"project_id":"TCGA-GBM"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUkM=","primary_site":["Kidney"],"project_id":"TCGA-KIRC"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVNLQ00=","primary_site":["Skin"],"project_id":"TCGA-SKCM"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVVDRUM=","primary_site":["Corpus uteri","Uterus, NOS"],"project_id":"TCGA-UCEC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVNUQUQ=","primary_site":["Stomach"],"project_id":"TCGA-STAD"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpDUFRBQy0z","primary_site":["Kidney","Uterus, NOS","Bronchus and lung"],"project_id":"CPTAC-3"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUxVU0M=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUSC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBSQUQ=","primary_site":["Prostate gland"],"project_id":"TCGA-PRAD"}},{"node":{"disease_type":["Myeloid Leukemias","Other Hematologic Disorders","Unknown","Precursor Cell Lymphoblastic Lymphoma","Myelodysplastic Syndromes","Other Leukemias","Chronic Myeloproliferative Disorders","Plasma Cell Tumors","Leukemias, NOS"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNPSE9SVA==","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-COHORT"}},{"node":{"disease_type":["Not Reported","Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpUQ0dBLURMQkM=","primary_site":["Heart, mediastinum, and pleura","Testis","Stomach","Lymph nodes","Bones, joints and articular cartilage of other and unspecified sites","Brain","Thyroid gland","Small intestine","Colon","Connective, subcutaneous and other soft tissues","Other and unspecified major salivary glands","Retroperitoneum and peritoneum","Hematopoietic and reticuloendothelial systems","Breast"],"project_id":"TCGA-DLBC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJQ0g=","primary_site":["Kidney"],"project_id":"TCGA-KICH"}},{"node":{"disease_type":["Germ Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRHQ1Q=","primary_site":["Testis"],"project_id":"TCGA-TGCT"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVVWTQ==","primary_site":["Eye and adnexa"],"project_id":"TCGA-UVM"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpUQ0dBLUxBTUw=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TCGA-LAML"}},{"node":{"disease_type":["Not Applicable","Myeloid Leukemias","Lymphoid Leukemias","Leukemias, NOS","Other Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAz","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P3"}},{"node":{"disease_type":["Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpDR0NJLUJMR1NQ","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"CGCI-BLGSP"}},{"node":{"disease_type":["Thymic Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRIWU0=","primary_site":["Heart, mediastinum, and pleura","Thymus"],"project_id":"TCGA-THYM"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAy","primary_site":["Hematopoietic and reticuloendothelial systems","Blood"],"project_id":"TARGET-ALL-P2"}},{"node":{"disease_type":["Germ Cell Neoplasms","Acinar Cell Neoplasms","Miscellaneous Tumors","Thymic Epithelial Neoplasms","Gliomas","Not Reported","Neuroepitheliomatous Neoplasms","Ductal and Lobular Neoplasms","Complex Mixed and Stromal Neoplasms","Complex Epithelial Neoplasms","Adnexal and Skin Appendage Neoplasms","Mesothelial Neoplasms","Basal Cell Neoplasms","Mucoepidermoid Neoplasms","Specialized Gonadal Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Transitional Cell Papillomas and Carcinomas","Paragangliomas and Glomus Tumors","Nevi and Melanomas","Meningiomas"],"id":"UHJvamVjdDpGTS1BRA==","primary_site":["Kidney","Testis","Gallbladder","Unknown","Other and unspecified parts of biliary tract","Adrenal gland","Thyroid gland","Spinal cord, cranial nerves, and other parts of central nervous system","Peripheral nerves and autonomic nervous system","Stomach","Cervix uteri","Bladder","Small intestine","Breast","Bronchus and lung","Other and ill-defined sites","Other and unspecified major salivary glands","Rectum","Retroperitoneum and peritoneum","Pancreas","Heart, mediastinum, and pleura","Prostate gland","Liver and intrahepatic bile ducts","Other and unspecified female genital organs","Thymus","Penis","Nasopharynx","Ovary","Uterus, NOS","Vulva","Other and unspecified urinary organs","Trachea","Ureter","Other endocrine glands and related structures","Not Reported","Colon","Anus and anal canal","Vagina","Skin","Esophagus","Eye and adnexa","Other and ill-defined digestive organs"],"project_id":"FM-AD"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUhOU0M=","primary_site":["Other and ill-defined sites in lip, oral cavity and pharynx","Palate","Other and unspecified parts of tongue","Hypopharynx","Tonsil","Oropharynx","Larynx","Other and unspecified parts of mouth","Gum","Floor of mouth","Bones, joints and articular cartilage of other and unspecified sites","Lip","Base of tongue"],"project_id":"TCGA-HNSC"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtUlQ=","primary_site":["Lip","Kidney","Liver and intrahepatic bile ducts"],"project_id":"TARGET-RT"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNPQUQ=","primary_site":["Rectosigmoid junction","Colon"],"project_id":"TCGA-COAD"}},{"node":{"disease_type":["Osseous and Chondromatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtT1M=","primary_site":["Not Reported","Bones, joints and articular cartilage of other and unspecified sites","Bones, joints and articular cartilage of limbs"],"project_id":"TARGET-OS"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxJSEM=","primary_site":["Liver and intrahepatic bile ducts"],"project_id":"TCGA-LIHC"}},{"node":{"disease_type":["Mature B-Cell Lymphomas","Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpDVFNQLURMQkNMMQ==","primary_site":["Unknown","Lymph Nodes"],"project_id":"CTSP-DLBCL1"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUVTQ0E=","primary_site":["Esophagus","Stomach"],"project_id":"TCGA-ESCA"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtV1Q=","primary_site":["Kidney"],"project_id":"TARGET-WT"}},{"node":{"disease_type":["Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpOQ0lDQ1ItRExCQ0w=","primary_site":["Lymph Nodes"],"project_id":"NCICCR-DLBCL"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Acinar Cell Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxVQUQ=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBBQUQ=","primary_site":["Pancreas"],"project_id":"TCGA-PAAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNFU0M=","primary_site":["Cervix uteri"],"project_id":"TCGA-CESC"}},{"node":{"disease_type":["Transitional Cell Papillomas and Carcinomas","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJMQ0E=","primary_site":["Bladder"],"project_id":"TCGA-BLCA"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUlA=","primary_site":["Kidney"],"project_id":"TCGA-KIRP"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVVDUw==","primary_site":["Uterus, NOS"],"project_id":"TCGA-UCS"}},{"node":{"disease_type":["Paragangliomas and Glomus Tumors"],"id":"UHJvamVjdDpUQ0dBLVBDUEc=","primary_site":["Heart, mediastinum, and pleura","Other endocrine glands and related structures","Adrenal gland","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum"],"project_id":"TCGA-PCPG"}},{"node":{"disease_type":["Plasma Cell Tumors"],"id":"UHJvamVjdDpNTVJGLUNPTU1QQVNT","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"MMRF-COMMPASS"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAx","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P1"}}]}}}}}} \ No newline at end of file diff --git a/cypress/fixtures/ExportSSMs/ProjectTable.json b/cypress/fixtures/ExportSSMs/ProjectTable.json index 4166ea1..a048897 100644 --- a/cypress/fixtures/ExportSSMs/ProjectTable.json +++ b/cypress/fixtures/ExportSSMs/ProjectTable.json @@ -1 +1 @@ -{"data":{"viewer":{"explore":{"cases":{"filtered":{"project__project_id":{"buckets":[{"doc_count":1,"key":"TCGA-COAD"}]}},"total":{"project__project_id":{"buckets":[{"doc_count":986,"key":"TCGA-BRCA"},{"doc_count":567,"key":"TCGA-LUAD"},{"doc_count":530,"key":"TCGA-UCEC"},{"doc_count":510,"key":"TCGA-LGG"},{"doc_count":508,"key":"TCGA-HNSC"},{"doc_count":498,"key":"TCGA-PRAD"},{"doc_count":495,"key":"TCGA-LUSC"},{"doc_count":492,"key":"TCGA-THCA"},{"doc_count":469,"key":"TCGA-SKCM"},{"doc_count":440,"key":"TCGA-STAD"},{"doc_count":436,"key":"TCGA-OV"},{"doc_count":412,"key":"TCGA-BLCA"},{"doc_count":400,"key":"TCGA-COAD"},{"doc_count":393,"key":"TCGA-GBM"},{"doc_count":364,"key":"TCGA-LIHC"},{"doc_count":336,"key":"TCGA-KIRC"},{"doc_count":289,"key":"TCGA-CESC"},{"doc_count":281,"key":"TCGA-KIRP"},{"doc_count":237,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":182,"key":"TCGA-PAAD"},{"doc_count":179,"key":"TCGA-PCPG"},{"doc_count":145,"key":"TCGA-TGCT"},{"doc_count":144,"key":"TCGA-LAML"},{"doc_count":137,"key":"TCGA-READ"},{"doc_count":123,"key":"TCGA-THYM"},{"doc_count":92,"key":"TCGA-ACC"},{"doc_count":82,"key":"TCGA-MESO"},{"doc_count":80,"key":"TCGA-UVM"},{"doc_count":66,"key":"TCGA-KICH"},{"doc_count":57,"key":"TCGA-UCS"},{"doc_count":51,"key":"TCGA-CHOL"},{"doc_count":37,"key":"TCGA-DLBC"}]}}}}}}} \ No newline at end of file +{"data":{"viewer":{"explore":{"projects":{"hits":{"edges":[{"node":{"disease_type":["Myeloid Leukemias","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtQU1M","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-AML"}},{"node":{"disease_type":["Neuroepitheliomatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtTkJM","primary_site":["Heart, mediastinum, and pleura","Stomach","Bones, joints and articular cartilage of other and unspecified sites","Lymph nodes","Liver and intrahepatic bile ducts","Unknown","Uterus, NOS","Skin","Meninges","Other endocrine glands and related structures","Adrenal gland","Renal pelvis","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Bones, joints and articular cartilage of limbs","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Hematopoietic and reticuloendothelial systems","Kidney"],"project_id":"TARGET-NBL"}},{"node":{"disease_type":["Gliomas"],"id":"UHJvamVjdDpUQ0dBLUxHRw==","primary_site":["Brain"],"project_id":"TCGA-LGG"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVJFQUQ=","primary_site":["Rectosigmoid junction","Unknown","Rectum","Colon","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-READ"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVRIQ0E=","primary_site":["Thyroid gland"],"project_id":"TCGA-THCA"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNSRU5PTEFOSUI=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-CRENOLANIB"}},{"node":{"disease_type":["Mesothelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU1FU08=","primary_site":["Heart, mediastinum, and pleura","Bronchus and lung"],"project_id":"TCGA-MESO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUFDQw==","primary_site":["Adrenal gland"],"project_id":"TCGA-ACC"}},{"node":{"disease_type":["Myomatous Neoplasms","Soft Tissue Tumors and Sarcomas, NOS","Fibromatous Neoplasms","Lipomatous Neoplasms","Nerve Sheath Tumors","Synovial-like Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVNBUkM=","primary_site":["Corpus uteri","Stomach","Other and unspecified parts of tongue","Meninges","Other and unspecified male genital organs","Colon","Connective, subcutaneous and other soft tissues","Bones, joints and articular cartilage of limbs","Ovary","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Uterus, NOS","Kidney"],"project_id":"TCGA-SARC"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtQ0NTSw==","primary_site":["Kidney"],"project_id":"TARGET-CCSK"}},{"node":{"disease_type":["Adnexal and Skin Appendage Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Basal Cell Neoplasms","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Fibroepithelial Neoplasms","Ductal and Lobular Neoplasms","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJSQ0E=","primary_site":["Breast"],"project_id":"TCGA-BRCA"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU9W","primary_site":["Ovary"],"project_id":"TCGA-OV"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUNIT0w=","primary_site":["Other and unspecified parts of biliary tract","Gallbladder","Liver and intrahepatic bile ducts"],"project_id":"TCGA-CHOL"}},{"node":{"disease_type":["Unknown","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpPUkdBTk9JRC1QQU5DUkVBVElD","primary_site":["Pancreas"],"project_id":"ORGANOID-PANCREATIC"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpWQVJFUE9QLUFQT0xMTw==","primary_site":["Bronchus and lung"],"project_id":"VAREPOP-APOLLO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas","Gliomas"],"id":"UHJvamVjdDpIQ01JLUNNREM=","primary_site":["Brain","Rectum","Colon"],"project_id":"HCMI-CMDC"}},{"node":{"disease_type":["Not Reported","Gliomas"],"id":"UHJvamVjdDpUQ0dBLUdCTQ==","primary_site":["Brain"],"project_id":"TCGA-GBM"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUkM=","primary_site":["Kidney"],"project_id":"TCGA-KIRC"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVNLQ00=","primary_site":["Skin"],"project_id":"TCGA-SKCM"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVVDRUM=","primary_site":["Corpus uteri","Uterus, NOS"],"project_id":"TCGA-UCEC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVNUQUQ=","primary_site":["Stomach"],"project_id":"TCGA-STAD"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpDUFRBQy0z","primary_site":["Kidney","Uterus, NOS","Bronchus and lung"],"project_id":"CPTAC-3"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUxVU0M=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUSC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBSQUQ=","primary_site":["Prostate gland"],"project_id":"TCGA-PRAD"}},{"node":{"disease_type":["Myeloid Leukemias","Other Hematologic Disorders","Unknown","Precursor Cell Lymphoblastic Lymphoma","Myelodysplastic Syndromes","Other Leukemias","Chronic Myeloproliferative Disorders","Plasma Cell Tumors","Leukemias, NOS"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNPSE9SVA==","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-COHORT"}},{"node":{"disease_type":["Not Reported","Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpUQ0dBLURMQkM=","primary_site":["Heart, mediastinum, and pleura","Testis","Stomach","Lymph nodes","Bones, joints and articular cartilage of other and unspecified sites","Brain","Thyroid gland","Small intestine","Colon","Connective, subcutaneous and other soft tissues","Other and unspecified major salivary glands","Retroperitoneum and peritoneum","Hematopoietic and reticuloendothelial systems","Breast"],"project_id":"TCGA-DLBC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJQ0g=","primary_site":["Kidney"],"project_id":"TCGA-KICH"}},{"node":{"disease_type":["Germ Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRHQ1Q=","primary_site":["Testis"],"project_id":"TCGA-TGCT"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVVWTQ==","primary_site":["Eye and adnexa"],"project_id":"TCGA-UVM"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpUQ0dBLUxBTUw=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TCGA-LAML"}},{"node":{"disease_type":["Not Applicable","Myeloid Leukemias","Lymphoid Leukemias","Leukemias, NOS","Other Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAz","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P3"}},{"node":{"disease_type":["Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpDR0NJLUJMR1NQ","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"CGCI-BLGSP"}},{"node":{"disease_type":["Thymic Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRIWU0=","primary_site":["Heart, mediastinum, and pleura","Thymus"],"project_id":"TCGA-THYM"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAy","primary_site":["Hematopoietic and reticuloendothelial systems","Blood"],"project_id":"TARGET-ALL-P2"}},{"node":{"disease_type":["Germ Cell Neoplasms","Acinar Cell Neoplasms","Miscellaneous Tumors","Thymic Epithelial Neoplasms","Gliomas","Not Reported","Neuroepitheliomatous Neoplasms","Ductal and Lobular Neoplasms","Complex Mixed and Stromal Neoplasms","Complex Epithelial Neoplasms","Adnexal and Skin Appendage Neoplasms","Mesothelial Neoplasms","Basal Cell Neoplasms","Mucoepidermoid Neoplasms","Specialized Gonadal Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Transitional Cell Papillomas and Carcinomas","Paragangliomas and Glomus Tumors","Nevi and Melanomas","Meningiomas"],"id":"UHJvamVjdDpGTS1BRA==","primary_site":["Kidney","Testis","Gallbladder","Unknown","Other and unspecified parts of biliary tract","Adrenal gland","Thyroid gland","Spinal cord, cranial nerves, and other parts of central nervous system","Peripheral nerves and autonomic nervous system","Stomach","Cervix uteri","Bladder","Small intestine","Breast","Bronchus and lung","Other and ill-defined sites","Other and unspecified major salivary glands","Rectum","Retroperitoneum and peritoneum","Pancreas","Heart, mediastinum, and pleura","Prostate gland","Liver and intrahepatic bile ducts","Other and unspecified female genital organs","Thymus","Penis","Nasopharynx","Ovary","Uterus, NOS","Vulva","Other and unspecified urinary organs","Trachea","Ureter","Other endocrine glands and related structures","Not Reported","Colon","Anus and anal canal","Vagina","Skin","Esophagus","Eye and adnexa","Other and ill-defined digestive organs"],"project_id":"FM-AD"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUhOU0M=","primary_site":["Other and ill-defined sites in lip, oral cavity and pharynx","Palate","Other and unspecified parts of tongue","Hypopharynx","Tonsil","Oropharynx","Larynx","Other and unspecified parts of mouth","Gum","Floor of mouth","Bones, joints and articular cartilage of other and unspecified sites","Lip","Base of tongue"],"project_id":"TCGA-HNSC"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtUlQ=","primary_site":["Lip","Kidney","Liver and intrahepatic bile ducts"],"project_id":"TARGET-RT"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNPQUQ=","primary_site":["Rectosigmoid junction","Colon"],"project_id":"TCGA-COAD"}},{"node":{"disease_type":["Osseous and Chondromatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtT1M=","primary_site":["Not Reported","Bones, joints and articular cartilage of other and unspecified sites","Bones, joints and articular cartilage of limbs"],"project_id":"TARGET-OS"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxJSEM=","primary_site":["Liver and intrahepatic bile ducts"],"project_id":"TCGA-LIHC"}},{"node":{"disease_type":["Mature B-Cell Lymphomas","Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpDVFNQLURMQkNMMQ==","primary_site":["Unknown","Lymph Nodes"],"project_id":"CTSP-DLBCL1"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUVTQ0E=","primary_site":["Esophagus","Stomach"],"project_id":"TCGA-ESCA"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtV1Q=","primary_site":["Kidney"],"project_id":"TARGET-WT"}},{"node":{"disease_type":["Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpOQ0lDQ1ItRExCQ0w=","primary_site":["Lymph Nodes"],"project_id":"NCICCR-DLBCL"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Acinar Cell Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxVQUQ=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBBQUQ=","primary_site":["Pancreas"],"project_id":"TCGA-PAAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNFU0M=","primary_site":["Cervix uteri"],"project_id":"TCGA-CESC"}},{"node":{"disease_type":["Transitional Cell Papillomas and Carcinomas","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJMQ0E=","primary_site":["Bladder"],"project_id":"TCGA-BLCA"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUlA=","primary_site":["Kidney"],"project_id":"TCGA-KIRP"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVVDUw==","primary_site":["Uterus, NOS"],"project_id":"TCGA-UCS"}},{"node":{"disease_type":["Paragangliomas and Glomus Tumors"],"id":"UHJvamVjdDpUQ0dBLVBDUEc=","primary_site":["Heart, mediastinum, and pleura","Other endocrine glands and related structures","Adrenal gland","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum"],"project_id":"TCGA-PCPG"}},{"node":{"disease_type":["Plasma Cell Tumors"],"id":"UHJvamVjdDpNTVJGLUNPTU1QQVNT","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"MMRF-COMMPASS"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAx","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P1"}}]}}, "cases":{"filtered":{"project__project_id":{"buckets":[{"doc_count":1,"key":"TCGA-COAD"}]}},"total":{"project__project_id":{"buckets":[{"doc_count":986,"key":"TCGA-BRCA"},{"doc_count":567,"key":"TCGA-LUAD"},{"doc_count":530,"key":"TCGA-UCEC"},{"doc_count":510,"key":"TCGA-LGG"},{"doc_count":508,"key":"TCGA-HNSC"},{"doc_count":498,"key":"TCGA-PRAD"},{"doc_count":495,"key":"TCGA-LUSC"},{"doc_count":492,"key":"TCGA-THCA"},{"doc_count":469,"key":"TCGA-SKCM"},{"doc_count":440,"key":"TCGA-STAD"},{"doc_count":436,"key":"TCGA-OV"},{"doc_count":412,"key":"TCGA-BLCA"},{"doc_count":400,"key":"TCGA-COAD"},{"doc_count":393,"key":"TCGA-GBM"},{"doc_count":364,"key":"TCGA-LIHC"},{"doc_count":336,"key":"TCGA-KIRC"},{"doc_count":289,"key":"TCGA-CESC"},{"doc_count":281,"key":"TCGA-KIRP"},{"doc_count":237,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":182,"key":"TCGA-PAAD"},{"doc_count":179,"key":"TCGA-PCPG"},{"doc_count":145,"key":"TCGA-TGCT"},{"doc_count":144,"key":"TCGA-LAML"},{"doc_count":137,"key":"TCGA-READ"},{"doc_count":123,"key":"TCGA-THYM"},{"doc_count":92,"key":"TCGA-ACC"},{"doc_count":82,"key":"TCGA-MESO"},{"doc_count":80,"key":"TCGA-UVM"},{"doc_count":66,"key":"TCGA-KICH"},{"doc_count":57,"key":"TCGA-UCS"},{"doc_count":51,"key":"TCGA-CHOL"},{"doc_count":37,"key":"TCGA-DLBC"}]}}}}}}} \ No newline at end of file diff --git a/cypress/fixtures/ExportSSMs/SSMProjects.json b/cypress/fixtures/ExportSSMs/SSMProjects.json deleted file mode 100644 index 93b1c29..0000000 --- a/cypress/fixtures/ExportSSMs/SSMProjects.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"projectsViewer":{"projects":{"hits":{"edges":[{"node":{"disease_type":["Myeloid Leukemias","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtQU1M","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-AML"}},{"node":{"disease_type":["Neuroepitheliomatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtTkJM","primary_site":["Heart, mediastinum, and pleura","Stomach","Bones, joints and articular cartilage of other and unspecified sites","Lymph nodes","Liver and intrahepatic bile ducts","Unknown","Uterus, NOS","Skin","Meninges","Other endocrine glands and related structures","Adrenal gland","Renal pelvis","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Bones, joints and articular cartilage of limbs","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Hematopoietic and reticuloendothelial systems","Kidney"],"project_id":"TARGET-NBL"}},{"node":{"disease_type":["Gliomas"],"id":"UHJvamVjdDpUQ0dBLUxHRw==","primary_site":["Brain"],"project_id":"TCGA-LGG"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVJFQUQ=","primary_site":["Rectosigmoid junction","Unknown","Rectum","Colon","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-READ"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVRIQ0E=","primary_site":["Thyroid gland"],"project_id":"TCGA-THCA"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNSRU5PTEFOSUI=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-CRENOLANIB"}},{"node":{"disease_type":["Mesothelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU1FU08=","primary_site":["Heart, mediastinum, and pleura","Bronchus and lung"],"project_id":"TCGA-MESO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUFDQw==","primary_site":["Adrenal gland"],"project_id":"TCGA-ACC"}},{"node":{"disease_type":["Myomatous Neoplasms","Soft Tissue Tumors and Sarcomas, NOS","Fibromatous Neoplasms","Lipomatous Neoplasms","Nerve Sheath Tumors","Synovial-like Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVNBUkM=","primary_site":["Corpus uteri","Stomach","Other and unspecified parts of tongue","Meninges","Other and unspecified male genital organs","Colon","Connective, subcutaneous and other soft tissues","Bones, joints and articular cartilage of limbs","Ovary","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Uterus, NOS","Kidney"],"project_id":"TCGA-SARC"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtQ0NTSw==","primary_site":["Kidney"],"project_id":"TARGET-CCSK"}},{"node":{"disease_type":["Adnexal and Skin Appendage Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Basal Cell Neoplasms","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Fibroepithelial Neoplasms","Ductal and Lobular Neoplasms","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJSQ0E=","primary_site":["Breast"],"project_id":"TCGA-BRCA"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU9W","primary_site":["Ovary"],"project_id":"TCGA-OV"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUNIT0w=","primary_site":["Other and unspecified parts of biliary tract","Gallbladder","Liver and intrahepatic bile ducts"],"project_id":"TCGA-CHOL"}},{"node":{"disease_type":["Unknown","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpPUkdBTk9JRC1QQU5DUkVBVElD","primary_site":["Pancreas"],"project_id":"ORGANOID-PANCREATIC"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpWQVJFUE9QLUFQT0xMTw==","primary_site":["Bronchus and lung"],"project_id":"VAREPOP-APOLLO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas","Gliomas"],"id":"UHJvamVjdDpIQ01JLUNNREM=","primary_site":["Brain","Rectum","Colon"],"project_id":"HCMI-CMDC"}},{"node":{"disease_type":["Not Reported","Gliomas"],"id":"UHJvamVjdDpUQ0dBLUdCTQ==","primary_site":["Brain"],"project_id":"TCGA-GBM"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUkM=","primary_site":["Kidney"],"project_id":"TCGA-KIRC"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVNLQ00=","primary_site":["Skin"],"project_id":"TCGA-SKCM"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVVDRUM=","primary_site":["Corpus uteri","Uterus, NOS"],"project_id":"TCGA-UCEC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVNUQUQ=","primary_site":["Stomach"],"project_id":"TCGA-STAD"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpDUFRBQy0z","primary_site":["Kidney","Uterus, NOS","Bronchus and lung"],"project_id":"CPTAC-3"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUxVU0M=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUSC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBSQUQ=","primary_site":["Prostate gland"],"project_id":"TCGA-PRAD"}},{"node":{"disease_type":["Myeloid Leukemias","Other Hematologic Disorders","Unknown","Precursor Cell Lymphoblastic Lymphoma","Myelodysplastic Syndromes","Other Leukemias","Chronic Myeloproliferative Disorders","Plasma Cell Tumors","Leukemias, NOS"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNPSE9SVA==","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-COHORT"}},{"node":{"disease_type":["Not Reported","Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpUQ0dBLURMQkM=","primary_site":["Heart, mediastinum, and pleura","Testis","Stomach","Lymph nodes","Bones, joints and articular cartilage of other and unspecified sites","Brain","Thyroid gland","Small intestine","Colon","Connective, subcutaneous and other soft tissues","Other and unspecified major salivary glands","Retroperitoneum and peritoneum","Hematopoietic and reticuloendothelial systems","Breast"],"project_id":"TCGA-DLBC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJQ0g=","primary_site":["Kidney"],"project_id":"TCGA-KICH"}},{"node":{"disease_type":["Germ Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRHQ1Q=","primary_site":["Testis"],"project_id":"TCGA-TGCT"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVVWTQ==","primary_site":["Eye and adnexa"],"project_id":"TCGA-UVM"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpUQ0dBLUxBTUw=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TCGA-LAML"}},{"node":{"disease_type":["Not Applicable","Myeloid Leukemias","Lymphoid Leukemias","Leukemias, NOS","Other Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAz","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P3"}},{"node":{"disease_type":["Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpDR0NJLUJMR1NQ","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"CGCI-BLGSP"}},{"node":{"disease_type":["Thymic Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRIWU0=","primary_site":["Heart, mediastinum, and pleura","Thymus"],"project_id":"TCGA-THYM"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAy","primary_site":["Hematopoietic and reticuloendothelial systems","Blood"],"project_id":"TARGET-ALL-P2"}},{"node":{"disease_type":["Germ Cell Neoplasms","Acinar Cell Neoplasms","Miscellaneous Tumors","Thymic Epithelial Neoplasms","Gliomas","Not Reported","Neuroepitheliomatous Neoplasms","Ductal and Lobular Neoplasms","Complex Mixed and Stromal Neoplasms","Complex Epithelial Neoplasms","Adnexal and Skin Appendage Neoplasms","Mesothelial Neoplasms","Basal Cell Neoplasms","Mucoepidermoid Neoplasms","Specialized Gonadal Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Transitional Cell Papillomas and Carcinomas","Paragangliomas and Glomus Tumors","Nevi and Melanomas","Meningiomas"],"id":"UHJvamVjdDpGTS1BRA==","primary_site":["Kidney","Testis","Gallbladder","Unknown","Other and unspecified parts of biliary tract","Adrenal gland","Thyroid gland","Spinal cord, cranial nerves, and other parts of central nervous system","Peripheral nerves and autonomic nervous system","Stomach","Cervix uteri","Bladder","Small intestine","Breast","Bronchus and lung","Other and ill-defined sites","Other and unspecified major salivary glands","Rectum","Retroperitoneum and peritoneum","Pancreas","Heart, mediastinum, and pleura","Prostate gland","Liver and intrahepatic bile ducts","Other and unspecified female genital organs","Thymus","Penis","Nasopharynx","Ovary","Uterus, NOS","Vulva","Other and unspecified urinary organs","Trachea","Ureter","Other endocrine glands and related structures","Not Reported","Colon","Anus and anal canal","Vagina","Skin","Esophagus","Eye and adnexa","Other and ill-defined digestive organs"],"project_id":"FM-AD"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUhOU0M=","primary_site":["Other and ill-defined sites in lip, oral cavity and pharynx","Palate","Other and unspecified parts of tongue","Hypopharynx","Tonsil","Oropharynx","Larynx","Other and unspecified parts of mouth","Gum","Floor of mouth","Bones, joints and articular cartilage of other and unspecified sites","Lip","Base of tongue"],"project_id":"TCGA-HNSC"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtUlQ=","primary_site":["Lip","Kidney","Liver and intrahepatic bile ducts"],"project_id":"TARGET-RT"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNPQUQ=","primary_site":["Rectosigmoid junction","Colon"],"project_id":"TCGA-COAD"}},{"node":{"disease_type":["Osseous and Chondromatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtT1M=","primary_site":["Not Reported","Bones, joints and articular cartilage of other and unspecified sites","Bones, joints and articular cartilage of limbs"],"project_id":"TARGET-OS"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxJSEM=","primary_site":["Liver and intrahepatic bile ducts"],"project_id":"TCGA-LIHC"}},{"node":{"disease_type":["Mature B-Cell Lymphomas","Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpDVFNQLURMQkNMMQ==","primary_site":["Unknown","Lymph Nodes"],"project_id":"CTSP-DLBCL1"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUVTQ0E=","primary_site":["Esophagus","Stomach"],"project_id":"TCGA-ESCA"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtV1Q=","primary_site":["Kidney"],"project_id":"TARGET-WT"}},{"node":{"disease_type":["Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpOQ0lDQ1ItRExCQ0w=","primary_site":["Lymph Nodes"],"project_id":"NCICCR-DLBCL"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Acinar Cell Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxVQUQ=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBBQUQ=","primary_site":["Pancreas"],"project_id":"TCGA-PAAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNFU0M=","primary_site":["Cervix uteri"],"project_id":"TCGA-CESC"}},{"node":{"disease_type":["Transitional Cell Papillomas and Carcinomas","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJMQ0E=","primary_site":["Bladder"],"project_id":"TCGA-BLCA"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUlA=","primary_site":["Kidney"],"project_id":"TCGA-KIRP"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVVDUw==","primary_site":["Uterus, NOS"],"project_id":"TCGA-UCS"}},{"node":{"disease_type":["Paragangliomas and Glomus Tumors"],"id":"UHJvamVjdDpUQ0dBLVBDUEc=","primary_site":["Heart, mediastinum, and pleura","Other endocrine glands and related structures","Adrenal gland","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum"],"project_id":"TCGA-PCPG"}},{"node":{"disease_type":["Plasma Cell Tumors"],"id":"UHJvamVjdDpNTVJGLUNPTU1QQVNT","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"MMRF-COMMPASS"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAx","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P1"}}]}}}}} \ No newline at end of file diff --git a/cypress/fixtures/projects/gene-projects.json b/cypress/fixtures/projects/gene-projects.json deleted file mode 100644 index 7d24e01..0000000 --- a/cypress/fixtures/projects/gene-projects.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"projectsViewer":{"projects":{"hits":{"edges":[{"node":{"disease_type":["Mesothelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU1FU08=","primary_site":["Heart, mediastinum, and pleura","Bronchus and lung"],"project_id":"TCGA-MESO"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVJFQUQ=","primary_site":["Rectosigmoid junction","Unknown","Rectum","Colon","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-READ"}},{"node":{"disease_type":["Lipomatous Neoplasms","Soft Tissue Tumors and Sarcomas, NOS","Fibromatous Neoplasms","Myomatous Neoplasms","Nerve Sheath Tumors","Synovial-like Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVNBUkM=","primary_site":["Corpus uteri","Bones, joints and articular cartilage of limbs","Other and unspecified parts of tongue","Stomach","Other and unspecified male genital organs","Colon","Connective, subcutaneous and other soft tissues","Meninges","Ovary","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Uterus, NOS","Kidney"],"project_id":"TCGA-SARC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUFDQw==","primary_site":["Adrenal gland"],"project_id":"TCGA-ACC"}},{"node":{"disease_type":["Gliomas"],"id":"UHJvamVjdDpUQ0dBLUxHRw==","primary_site":["Brain"],"project_id":"TCGA-LGG"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVRIQ0E=","primary_site":["Thyroid gland"],"project_id":"TCGA-THCA"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtQ0NTSw==","primary_site":["Kidney"],"project_id":"TARGET-CCSK"}},{"node":{"disease_type":["Neuroepitheliomatous Neoplasms","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtTkJM","primary_site":["Heart, mediastinum, and pleura","Stomach","Bones, joints and articular cartilage of other and unspecified sites","Lymph nodes","Liver and intrahepatic bile ducts","Unknown","Uterus, NOS","Skin","Meninges","Other endocrine glands and related structures","Adrenal gland","Renal pelvis","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Bones, joints and articular cartilage of limbs","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Hematopoietic and reticuloendothelial systems","Kidney"],"project_id":"TARGET-NBL"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNSRU5PTEFOSUI=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-CRENOLANIB"}},{"node":{"disease_type":["Myeloid Leukemias","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtQU1M","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-AML"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVNLQ00=","primary_site":["Skin"],"project_id":"TCGA-SKCM"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUNIT0w=","primary_site":["Other and unspecified parts of biliary tract","Gallbladder","Liver and intrahepatic bile ducts"],"project_id":"TCGA-CHOL"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUkM=","primary_site":["Kidney"],"project_id":"TCGA-KIRC"}},{"node":{"disease_type":["Adnexal and Skin Appendage Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Basal Cell Neoplasms","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Fibroepithelial Neoplasms","Ductal and Lobular Neoplasms","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJSQ0E=","primary_site":["Breast"],"project_id":"TCGA-BRCA"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpWQVJFUE9QLUFQT0xMTw==","primary_site":["Bronchus and lung"],"project_id":"VAREPOP-APOLLO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas","Gliomas"],"id":"UHJvamVjdDpIQ01JLUNNREM=","primary_site":["Brain","Rectum","Colon"],"project_id":"HCMI-CMDC"}},{"node":{"disease_type":["Unknown","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpPUkdBTk9JRC1QQU5DUkVBVElD","primary_site":["Pancreas"],"project_id":"ORGANOID-PANCREATIC"}},{"node":{"disease_type":["Not Reported","Gliomas"],"id":"UHJvamVjdDpUQ0dBLUdCTQ==","primary_site":["Brain"],"project_id":"TCGA-GBM"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU9W","primary_site":["Ovary"],"project_id":"TCGA-OV"}},{"node":{"disease_type":["Germ Cell Neoplasms","Acinar Cell Neoplasms","Miscellaneous Tumors","Thymic Epithelial Neoplasms","Gliomas","Not Reported","Complex Mixed and Stromal Neoplasms","Ductal and Lobular Neoplasms","Neuroepitheliomatous Neoplasms","Complex Epithelial Neoplasms","Adnexal and Skin Appendage Neoplasms","Mesothelial Neoplasms","Basal Cell Neoplasms","Mucoepidermoid Neoplasms","Specialized Gonadal Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Nevi and Melanomas","Squamous Cell Neoplasms","Transitional Cell Papillomas and Carcinomas","Paragangliomas and Glomus Tumors","Epithelial Neoplasms, NOS","Meningiomas"],"id":"UHJvamVjdDpGTS1BRA==","primary_site":["Kidney","Testis","Unknown","Other and unspecified parts of biliary tract","Adrenal gland","Thyroid gland","Spinal cord, cranial nerves, and other parts of central nervous system","Peripheral nerves and autonomic nervous system","Stomach","Cervix uteri","Bladder","Small intestine","Breast","Bronchus and lung","Other and ill-defined sites","Other and unspecified major salivary glands","Rectum","Retroperitoneum and peritoneum","Pancreas","Heart, mediastinum, and pleura","Prostate gland","Liver and intrahepatic bile ducts","Other and unspecified female genital organs","Thymus","Penis","Nasopharynx","Ovary","Uterus, NOS","Vulva","Anus and anal canal","Other and unspecified urinary organs","Trachea","Ureter","Other endocrine glands and related structures","Not Reported","Colon","Gallbladder","Vagina","Skin","Esophagus","Eye and adnexa","Other and ill-defined digestive organs"],"project_id":"FM-AD"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVVDRUM=","primary_site":["Corpus uteri","Uterus, NOS"],"project_id":"TCGA-UCEC"}},{"node":{"disease_type":["Not Applicable","Leukemias, NOS","Lymphoid Leukemias","Myeloid Leukemias","Other Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAz","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P3"}},{"node":{"disease_type":["Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpDR0NJLUJMR1NQ","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"CGCI-BLGSP"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAy","primary_site":["Hematopoietic and reticuloendothelial systems","Blood"],"project_id":"TARGET-ALL-P2"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpUQ0dBLUxBTUw=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TCGA-LAML"}},{"node":{"disease_type":["Not Reported","Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpUQ0dBLURMQkM=","primary_site":["Heart, mediastinum, and pleura","Testis","Stomach","Lymph nodes","Bones, joints and articular cartilage of other and unspecified sites","Brain","Thyroid gland","Small intestine","Colon","Breast","Other and unspecified major salivary glands","Retroperitoneum and peritoneum","Hematopoietic and reticuloendothelial systems","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-DLBC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJQ0g=","primary_site":["Kidney"],"project_id":"TCGA-KICH"}},{"node":{"disease_type":["Thymic Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRIWU0=","primary_site":["Heart, mediastinum, and pleura","Thymus"],"project_id":"TCGA-THYM"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVVWTQ==","primary_site":["Eye and adnexa"],"project_id":"TCGA-UVM"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBSQUQ=","primary_site":["Prostate gland"],"project_id":"TCGA-PRAD"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUxVU0M=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUSC"}},{"node":{"disease_type":["Germ Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRHQ1Q=","primary_site":["Testis"],"project_id":"TCGA-TGCT"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpDUFRBQy0z","primary_site":["Kidney","Uterus, NOS","Bronchus and lung"],"project_id":"CPTAC-3"}},{"node":{"disease_type":["Myeloid Leukemias","Other Hematologic Disorders","Unknown","Precursor Cell Lymphoblastic Lymphoma","Myelodysplastic Syndromes","Other Leukemias","Chronic Myeloproliferative Disorders","Plasma Cell Tumors","Leukemias, NOS"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNPSE9SVA==","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-COHORT"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVNUQUQ=","primary_site":["Stomach"],"project_id":"TCGA-STAD"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxJSEM=","primary_site":["Liver and intrahepatic bile ducts"],"project_id":"TCGA-LIHC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNPQUQ=","primary_site":["Rectosigmoid junction","Colon"],"project_id":"TCGA-COAD"}},{"node":{"disease_type":["Osseous and Chondromatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtT1M=","primary_site":["Not Reported","Bones, joints and articular cartilage of other and unspecified sites","Bones, joints and articular cartilage of limbs"],"project_id":"TARGET-OS"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtUlQ=","primary_site":["Lip","Kidney","Liver and intrahepatic bile ducts"],"project_id":"TARGET-RT"}},{"node":{"disease_type":["Mature B-Cell Lymphomas","Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpDVFNQLURMQkNMMQ==","primary_site":["Unknown","Lymph Nodes"],"project_id":"CTSP-DLBCL1"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUhOU0M=","primary_site":["Other and ill-defined sites in lip, oral cavity and pharynx","Palate","Other and unspecified parts of tongue","Hypopharynx","Lip","Tonsil","Gum","Larynx","Other and unspecified parts of mouth","Floor of mouth","Bones, joints and articular cartilage of other and unspecified sites","Oropharynx","Base of tongue"],"project_id":"TCGA-HNSC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUVTQ0E=","primary_site":["Esophagus","Stomach"],"project_id":"TCGA-ESCA"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNFU0M=","primary_site":["Cervix uteri"],"project_id":"TCGA-CESC"}},{"node":{"disease_type":["Paragangliomas and Glomus Tumors"],"id":"UHJvamVjdDpUQ0dBLVBDUEc=","primary_site":["Heart, mediastinum, and pleura","Other endocrine glands and related structures","Adrenal gland","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum"],"project_id":"TCGA-PCPG"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUlA=","primary_site":["Kidney"],"project_id":"TCGA-KIRP"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVVDUw==","primary_site":["Uterus, NOS"],"project_id":"TCGA-UCS"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBBQUQ=","primary_site":["Pancreas"],"project_id":"TCGA-PAAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Acinar Cell Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxVQUQ=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUAD"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtV1Q=","primary_site":["Kidney"],"project_id":"TARGET-WT"}},{"node":{"disease_type":["Plasma Cell Tumors"],"id":"UHJvamVjdDpNTVJGLUNPTU1QQVNT","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"MMRF-COMMPASS"}},{"node":{"disease_type":["Transitional Cell Papillomas and Carcinomas","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJMQ0E=","primary_site":["Bladder"],"project_id":"TCGA-BLCA"}},{"node":{"disease_type":["Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpOQ0lDQ1ItRExCQ0w=","primary_site":["Lymph Nodes"],"project_id":"NCICCR-DLBCL"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAx","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P1"}}]}}}}} \ No newline at end of file diff --git a/cypress/fixtures/projects/mutation-projects.json b/cypress/fixtures/projects/mutation-projects.json deleted file mode 100644 index 7d24e01..0000000 --- a/cypress/fixtures/projects/mutation-projects.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"projectsViewer":{"projects":{"hits":{"edges":[{"node":{"disease_type":["Mesothelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU1FU08=","primary_site":["Heart, mediastinum, and pleura","Bronchus and lung"],"project_id":"TCGA-MESO"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVJFQUQ=","primary_site":["Rectosigmoid junction","Unknown","Rectum","Colon","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-READ"}},{"node":{"disease_type":["Lipomatous Neoplasms","Soft Tissue Tumors and Sarcomas, NOS","Fibromatous Neoplasms","Myomatous Neoplasms","Nerve Sheath Tumors","Synovial-like Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVNBUkM=","primary_site":["Corpus uteri","Bones, joints and articular cartilage of limbs","Other and unspecified parts of tongue","Stomach","Other and unspecified male genital organs","Colon","Connective, subcutaneous and other soft tissues","Meninges","Ovary","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Uterus, NOS","Kidney"],"project_id":"TCGA-SARC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUFDQw==","primary_site":["Adrenal gland"],"project_id":"TCGA-ACC"}},{"node":{"disease_type":["Gliomas"],"id":"UHJvamVjdDpUQ0dBLUxHRw==","primary_site":["Brain"],"project_id":"TCGA-LGG"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVRIQ0E=","primary_site":["Thyroid gland"],"project_id":"TCGA-THCA"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtQ0NTSw==","primary_site":["Kidney"],"project_id":"TARGET-CCSK"}},{"node":{"disease_type":["Neuroepitheliomatous Neoplasms","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtTkJM","primary_site":["Heart, mediastinum, and pleura","Stomach","Bones, joints and articular cartilage of other and unspecified sites","Lymph nodes","Liver and intrahepatic bile ducts","Unknown","Uterus, NOS","Skin","Meninges","Other endocrine glands and related structures","Adrenal gland","Renal pelvis","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Bones, joints and articular cartilage of limbs","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Hematopoietic and reticuloendothelial systems","Kidney"],"project_id":"TARGET-NBL"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNSRU5PTEFOSUI=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-CRENOLANIB"}},{"node":{"disease_type":["Myeloid Leukemias","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtQU1M","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-AML"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVNLQ00=","primary_site":["Skin"],"project_id":"TCGA-SKCM"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUNIT0w=","primary_site":["Other and unspecified parts of biliary tract","Gallbladder","Liver and intrahepatic bile ducts"],"project_id":"TCGA-CHOL"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUkM=","primary_site":["Kidney"],"project_id":"TCGA-KIRC"}},{"node":{"disease_type":["Adnexal and Skin Appendage Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Basal Cell Neoplasms","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Fibroepithelial Neoplasms","Ductal and Lobular Neoplasms","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJSQ0E=","primary_site":["Breast"],"project_id":"TCGA-BRCA"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpWQVJFUE9QLUFQT0xMTw==","primary_site":["Bronchus and lung"],"project_id":"VAREPOP-APOLLO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas","Gliomas"],"id":"UHJvamVjdDpIQ01JLUNNREM=","primary_site":["Brain","Rectum","Colon"],"project_id":"HCMI-CMDC"}},{"node":{"disease_type":["Unknown","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpPUkdBTk9JRC1QQU5DUkVBVElD","primary_site":["Pancreas"],"project_id":"ORGANOID-PANCREATIC"}},{"node":{"disease_type":["Not Reported","Gliomas"],"id":"UHJvamVjdDpUQ0dBLUdCTQ==","primary_site":["Brain"],"project_id":"TCGA-GBM"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU9W","primary_site":["Ovary"],"project_id":"TCGA-OV"}},{"node":{"disease_type":["Germ Cell Neoplasms","Acinar Cell Neoplasms","Miscellaneous Tumors","Thymic Epithelial Neoplasms","Gliomas","Not Reported","Complex Mixed and Stromal Neoplasms","Ductal and Lobular Neoplasms","Neuroepitheliomatous Neoplasms","Complex Epithelial Neoplasms","Adnexal and Skin Appendage Neoplasms","Mesothelial Neoplasms","Basal Cell Neoplasms","Mucoepidermoid Neoplasms","Specialized Gonadal Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Nevi and Melanomas","Squamous Cell Neoplasms","Transitional Cell Papillomas and Carcinomas","Paragangliomas and Glomus Tumors","Epithelial Neoplasms, NOS","Meningiomas"],"id":"UHJvamVjdDpGTS1BRA==","primary_site":["Kidney","Testis","Unknown","Other and unspecified parts of biliary tract","Adrenal gland","Thyroid gland","Spinal cord, cranial nerves, and other parts of central nervous system","Peripheral nerves and autonomic nervous system","Stomach","Cervix uteri","Bladder","Small intestine","Breast","Bronchus and lung","Other and ill-defined sites","Other and unspecified major salivary glands","Rectum","Retroperitoneum and peritoneum","Pancreas","Heart, mediastinum, and pleura","Prostate gland","Liver and intrahepatic bile ducts","Other and unspecified female genital organs","Thymus","Penis","Nasopharynx","Ovary","Uterus, NOS","Vulva","Anus and anal canal","Other and unspecified urinary organs","Trachea","Ureter","Other endocrine glands and related structures","Not Reported","Colon","Gallbladder","Vagina","Skin","Esophagus","Eye and adnexa","Other and ill-defined digestive organs"],"project_id":"FM-AD"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVVDRUM=","primary_site":["Corpus uteri","Uterus, NOS"],"project_id":"TCGA-UCEC"}},{"node":{"disease_type":["Not Applicable","Leukemias, NOS","Lymphoid Leukemias","Myeloid Leukemias","Other Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAz","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P3"}},{"node":{"disease_type":["Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpDR0NJLUJMR1NQ","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"CGCI-BLGSP"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAy","primary_site":["Hematopoietic and reticuloendothelial systems","Blood"],"project_id":"TARGET-ALL-P2"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpUQ0dBLUxBTUw=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TCGA-LAML"}},{"node":{"disease_type":["Not Reported","Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpUQ0dBLURMQkM=","primary_site":["Heart, mediastinum, and pleura","Testis","Stomach","Lymph nodes","Bones, joints and articular cartilage of other and unspecified sites","Brain","Thyroid gland","Small intestine","Colon","Breast","Other and unspecified major salivary glands","Retroperitoneum and peritoneum","Hematopoietic and reticuloendothelial systems","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-DLBC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJQ0g=","primary_site":["Kidney"],"project_id":"TCGA-KICH"}},{"node":{"disease_type":["Thymic Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRIWU0=","primary_site":["Heart, mediastinum, and pleura","Thymus"],"project_id":"TCGA-THYM"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVVWTQ==","primary_site":["Eye and adnexa"],"project_id":"TCGA-UVM"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBSQUQ=","primary_site":["Prostate gland"],"project_id":"TCGA-PRAD"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUxVU0M=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUSC"}},{"node":{"disease_type":["Germ Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRHQ1Q=","primary_site":["Testis"],"project_id":"TCGA-TGCT"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpDUFRBQy0z","primary_site":["Kidney","Uterus, NOS","Bronchus and lung"],"project_id":"CPTAC-3"}},{"node":{"disease_type":["Myeloid Leukemias","Other Hematologic Disorders","Unknown","Precursor Cell Lymphoblastic Lymphoma","Myelodysplastic Syndromes","Other Leukemias","Chronic Myeloproliferative Disorders","Plasma Cell Tumors","Leukemias, NOS"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNPSE9SVA==","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-COHORT"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVNUQUQ=","primary_site":["Stomach"],"project_id":"TCGA-STAD"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxJSEM=","primary_site":["Liver and intrahepatic bile ducts"],"project_id":"TCGA-LIHC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNPQUQ=","primary_site":["Rectosigmoid junction","Colon"],"project_id":"TCGA-COAD"}},{"node":{"disease_type":["Osseous and Chondromatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtT1M=","primary_site":["Not Reported","Bones, joints and articular cartilage of other and unspecified sites","Bones, joints and articular cartilage of limbs"],"project_id":"TARGET-OS"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtUlQ=","primary_site":["Lip","Kidney","Liver and intrahepatic bile ducts"],"project_id":"TARGET-RT"}},{"node":{"disease_type":["Mature B-Cell Lymphomas","Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpDVFNQLURMQkNMMQ==","primary_site":["Unknown","Lymph Nodes"],"project_id":"CTSP-DLBCL1"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUhOU0M=","primary_site":["Other and ill-defined sites in lip, oral cavity and pharynx","Palate","Other and unspecified parts of tongue","Hypopharynx","Lip","Tonsil","Gum","Larynx","Other and unspecified parts of mouth","Floor of mouth","Bones, joints and articular cartilage of other and unspecified sites","Oropharynx","Base of tongue"],"project_id":"TCGA-HNSC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUVTQ0E=","primary_site":["Esophagus","Stomach"],"project_id":"TCGA-ESCA"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNFU0M=","primary_site":["Cervix uteri"],"project_id":"TCGA-CESC"}},{"node":{"disease_type":["Paragangliomas and Glomus Tumors"],"id":"UHJvamVjdDpUQ0dBLVBDUEc=","primary_site":["Heart, mediastinum, and pleura","Other endocrine glands and related structures","Adrenal gland","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum"],"project_id":"TCGA-PCPG"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUlA=","primary_site":["Kidney"],"project_id":"TCGA-KIRP"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVVDUw==","primary_site":["Uterus, NOS"],"project_id":"TCGA-UCS"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBBQUQ=","primary_site":["Pancreas"],"project_id":"TCGA-PAAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Acinar Cell Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxVQUQ=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUAD"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtV1Q=","primary_site":["Kidney"],"project_id":"TARGET-WT"}},{"node":{"disease_type":["Plasma Cell Tumors"],"id":"UHJvamVjdDpNTVJGLUNPTU1QQVNT","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"MMRF-COMMPASS"}},{"node":{"disease_type":["Transitional Cell Papillomas and Carcinomas","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJMQ0E=","primary_site":["Bladder"],"project_id":"TCGA-BLCA"}},{"node":{"disease_type":["Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpOQ0lDQ1ItRExCQ0w=","primary_site":["Lymph Nodes"],"project_id":"NCICCR-DLBCL"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAx","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P1"}}]}}}}} \ No newline at end of file diff --git a/cypress/fixtures/projects/mutations.json b/cypress/fixtures/projects/mutations.json index aed14ed..53a1b9d 100644 --- a/cypress/fixtures/projects/mutations.json +++ b/cypress/fixtures/projects/mutations.json @@ -1 +1 @@ -{"data":{"viewer":{"explore":{"ssms":{"hits":{"edges":[{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOjBmMmIzOTk0LWRiNTktNTczNS1iODhkLTIyZjkxZjFhNzI1Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.287+25192delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000467509"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOjZiMGYyZjdiLWU5NmUtNTExNS05ODA3LTNkYzI4NTY5NTNlZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.141-18074delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000460671"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOjAwN2U3ODUxLTE2MzgtNTdlYS1hN2E1LWFhM2E0N2QyNTQwMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000476933"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOmY0MmI4MDYwLWE3MmItNTU4Yi05NmI3LTMzNzM2NDliZTc5MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.890-6900delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000421528"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOjc4Nzk0ZTFlLTBkNmEtNTJkNC05ZjQwLTk0MDZiNGYwMWM4YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*97delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":true,"transcript_id":"ENST00000371226"}}}]}},"cosmic_id":["COSN1106466"],"end_position":58480868,"genomic_dna_change":"chr1:g.58480868delT","id":"U3NtOjAyYWFhMzlhLWFjZjEtNWI2NC1iYzI3LWJiM2I5NzdhMGNmYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":6,"ssm_id":"02aaa39a-acf1-5b64-bc27-bb3b977a0cfa","start_position":58480868}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6N2ZmYjVlMjItMDVkNi01NjY0LWEwYjAtOTA4MTg0YmFjYmI5OmQ2YjY2MGM2LTU2MmQtNWE4OC04NWU3LWE1YzZiOTkwZDAxZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-112delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000117862","gene_strand":-1,"symbol":"TXNDC12"},"is_canonical":true,"transcript_id":"ENST00000371626"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6N2ZmYjVlMjItMDVkNi01NjY0LWEwYjAtOTA4MTg0YmFjYmI5OjcyZTQwYTVjLTU2M2UtNTE1Ny1hY2JlLTU1NjJmYWYxYTlhZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000117862","gene_strand":-1,"symbol":"TXNDC12"},"is_canonical":false,"transcript_id":"ENST00000610127"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6N2ZmYjVlMjItMDVkNi01NjY0LWEwYjAtOTA4MTg0YmFjYmI5OjQ0MzliNDg2LWY1NTYtNWFmNC1iNjEzLWZiOTBjODRiMGY1YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000117862","gene_strand":-1,"symbol":"TXNDC12"},"is_canonical":false,"transcript_id":"ENST00000472624"}}}]}},"cosmic_id":["COSN15664798","COSN15666161","COSN18724033","COSN18724364","COSN18725063"],"end_position":52055208,"genomic_dna_change":"chr1:g.52055208delT","id":"U3NtOjdmZmI1ZTIyLTA1ZDYtNTY2NC1hMGIwLTkwODE4NGJhY2JiOSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":4,"ssm_id":"7ffb5e22-05d6-5664-a0b0-908184bacbb9","start_position":52055208}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6ZWM2OTA5OTgtZDU1NS01ZWQzLWFiMTgtNTVlODY4NWIyYmZkOjI1NzkyZjMwLTQ1OWMtNWFlZC04NWU1LWRhZGU0ZTY2YThhYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162407","gene_strand":-1,"symbol":"PPAP2B"},"is_canonical":false,"transcript_id":"ENST00000459962"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6ZWM2OTA5OTgtZDU1NS01ZWQzLWFiMTgtNTVlODY4NWIyYmZkOjY4OGQ1ZTgxLWMyZjUtNWQwOS04YmQyLTA1NmMxNmFhM2U2NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.555delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162407","gene_strand":-1,"symbol":"PPAP2B"},"is_canonical":false,"transcript_id":"ENST00000472957"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6ZWM2OTA5OTgtZDU1NS01ZWQzLWFiMTgtNTVlODY4NWIyYmZkOjFjNDMzMTE0LTJkYWItNWFjNC1hZmRiLTRiYWJjYTc1Y2I2YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*134delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162407","gene_strand":-1,"symbol":"PPAP2B"},"is_canonical":true,"transcript_id":"ENST00000371250"}}}]}},"cosmic_id":null,"end_position":56496417,"genomic_dna_change":"chr1:g.56496417delT","id":"U3NtOmVjNjkwOTk4LWQ1NTUtNWVkMy1hYjE4LTU1ZTg2ODViMmJmZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":4,"ssm_id":"ec690998-d555-5ed3-ab18-55e8685b2bfd","start_position":56496417}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOjI5MjBmYWZiLTJkYWYtNTRkZC1hNjdmLWZhMWMyZTdhMGQyZA==","transcript":{"aa_change":"S432*","annotation":{"hgvsc":"c.1295C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000371231"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOjZhNGNkMWUzLTQ4MWItNWM5Zi05YzZlLTU2M2ZiNjA3ODQxMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000371232"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOmUwYTA3MDAzLTc5MGMtNWViOS1iMWEzLTU1YmJhNGUwYmRkYQ==","transcript":{"aa_change":"S399*","annotation":{"hgvsc":"c.1196C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":true,"transcript_id":"ENST00000371236"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOmFkNzQyYWVjLWQ1NDktNWFiOS1hZGE5LWMyMjUxOWY5ODFkNg==","transcript":{"aa_change":"S397*","annotation":{"hgvsc":"c.1190C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000420954"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOjJiNzhkMjIzLWFmZDAtNTk1OC1hNDRjLWNiMjAzZTE4YWI1YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1951C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000485760"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOjIzZjNmYTBmLTkwMjAtNTBiNi05N2RkLTIyMGEwY2UzM2UzZA==","transcript":{"aa_change":"S399*","annotation":{"hgvsc":"c.1196C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000414851"}}}]}},"cosmic_id":["COSM3805647","COSM3805648"],"end_position":57015131,"genomic_dna_change":"chr1:g.57015131G>C","id":"U3NtOjA4YWZjZWJjLWU0YmMtNWFmMi1hMjE1LTZiNWVhYzFiZjMzMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":2,"ssm_id":"08afcebc-e4bc-5af2-a215-6b5eac1bf331","start_position":57015131}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjE0ZDZhNWEwLWFhZGItNWQ2Yy04YzZkLTZkNmQyMDNlOGZmOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*100delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000370990"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjAxYTgxYWJmLTgwYzYtNTJlNy1hZDhlLTdkYWQ0YTUyODQ5ZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000493607"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjRhMzViMTFlLTM0MmUtNTJiMC04MjAxLWYzMmY0Mjk0ZTA2Yg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*100delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":true,"transcript_id":"ENST00000370995"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjUyOWYyMWQ1LTZjNjctNTMxYy04Mzk4LThmZmM1NmRjNWVmZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*100delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000370994"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjE5YjljZjAyLTFiM2UtNWQyMy05NTU0LTgwNThlODkxYjg5OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*100delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000361219"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjFjMDAxY2RjLWFhMjgtNTg4Ni04Zjk1LTFkMzYxMDMyMzlmMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000462814"}}}]}},"cosmic_id":null,"end_position":67413107,"genomic_dna_change":"chr1:g.67413107delT","id":"U3NtOjIwN2YxNmI0LTc5MGMtNTY4NC1iMGIwLWU5OTMxOGJlZjhhMiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":2,"ssm_id":"207f16b4-790c-5684-b0b0-e99318bef8a2","start_position":67413107}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NjBkMDEyNTgtZjhkOS01MjkzLWE4OTUtNjMxMGIyYjI1MzI3OjhlMTQyY2IyLTNiNjctNTIzMS04YTk0LTVhZWRlNjkwN2ZhMA==","transcript":{"aa_change":"F16delinsLS","annotation":{"hgvsc":"c.47_48insATC","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODERATE"},"consequence_type":"protein_altering_variant","gene":{"gene_id":"ENSG00000187889","gene_strand":-1,"symbol":"C1orf168"},"is_canonical":true,"transcript_id":"ENST00000343433"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NjBkMDEyNTgtZjhkOS01MjkzLWE4OTUtNjMxMGIyYjI1MzI3OjNhZDE1MmI2LTJhMWMtNTU3NC04Y2RiLWU5YjM5NTEzM2VjNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.453_454insATC","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000187889","gene_strand":-1,"symbol":"C1orf168"},"is_canonical":false,"transcript_id":"ENST00000484327"}}}]}},"cosmic_id":null,"end_position":56792766,"genomic_dna_change":"chr1:g.56792765_56792766insGAT","id":"U3NtOjYwZDAxMjU4LWY4ZDktNTI5My1hODk1LTYzMTBiMmIyNTMyNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small insertion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"-","score":2,"ssm_id":"60d01258-f8d9-5293-a895-6310b2b25327","start_position":56792765}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NzEzMzA5OWYtOTI1MS01ZGE5LTgxNmItNmQ5NTM2YmIxOWVkOmQ1MTNlOWM5LWFiNDMtNTE5OC1hYWQ2LWQ0NjcyNzk4MWU4OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000465376"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NzEzMzA5OWYtOTI1MS01ZGE5LTgxNmItNmQ5NTM2YmIxOWVkOjQ3MDJkYTEwLWZhMTAtNTRiMi1hZTc3LTc1OWM1YTkwZmQ4OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000481702"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NzEzMzA5OWYtOTI1MS01ZGE5LTgxNmItNmQ5NTM2YmIxOWVkOjk0NGRkNWUxLTFiMTgtNWU5NC1hNjA1LTU1MzU5OTc0OWQwZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000471473"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NzEzMzA5OWYtOTI1MS01ZGE5LTgxNmItNmQ5NTM2YmIxOWVkOmY4NDUxZjNkLTY4MjMtNWM5OC05ZTQxLWY4NTQ0YzYyNjBhNw==","transcript":{"aa_change":"K860Nfs*16","annotation":{"hgvsc":"c.2580delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":true,"transcript_id":"ENST00000342505"}}}]}},"cosmic_id":["COSM1343905"],"end_position":64841314,"genomic_dna_change":"chr1:g.64841314delT","id":"U3NtOjcxMzMwOTlmLTkyNTEtNWRhOS04MTZiLTZkOTUzNmJiMTllZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":2,"ssm_id":"7133099f-9251-5da9-816b-6d9536bb19ed","start_position":64841314}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOjEwOTZhZTk0LTdjYmUtNWEyZS05MTI4LTFkNTdkYTVjNjZlZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.214C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000468759"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOjE2NzI3NjhkLTFmMzktNTM5Ni1iM2YyLTFkMDA4YzMwZmM2Yw==","transcript":{"aa_change":"L268L","annotation":{"hgvsc":"c.804C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":true,"transcript_id":"ENST00000354431"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOjM2MGYzMzliLTBiZWItNTk4Yy05MDYwLThmOTUyNWUwN2EyNA==","transcript":{"aa_change":"L160L","annotation":{"hgvsc":"c.480C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000370909"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOjc1OGZhNGU5LTIwMGQtNWVlYS05Y2Q2LWE4M2FhYjBhNTE1ZA==","transcript":{"aa_change":"L268L","annotation":{"hgvsc":"c.804C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000415760"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOmFjZGNiNjIwLTIwZDgtNWM5MS04M2I1LWE0YjNmOTE4NmE5ZQ==","transcript":{"aa_change":"L268L","annotation":{"hgvsc":"c.804C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000395089"}}}]}},"cosmic_id":null,"end_position":74109457,"genomic_dna_change":"chr1:g.74109457G>A","id":"U3NtOmE1ZTllZjM4LWY0OGUtNTMyNy1iMDc4LThiYmNiY2ZjYzc5MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":2,"ssm_id":"a5e9ef38-f48e-5327-b078-8bbcbcfcc791","start_position":74109457}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6ZjVkOTg1NjgtMWE5ZS01NzJjLTgzMWQtODA1NDFiNzkzM2MzOjMzNzA3ZjQwLWZiYzItNWE0MS1iNGQ4LTUxZTlmYzBjZDhlNQ==","transcript":{"aa_change":"A214G","annotation":{"hgvsc":"c.641C>G","polyphen_impact":"benign","polyphen_score":0.048,"sift_impact":"tolerated","sift_score":0.39,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184292","gene_strand":-1,"symbol":"TACSTD2"},"is_canonical":true,"transcript_id":"ENST00000371225"}}}]}},"cosmic_id":null,"end_position":58576516,"genomic_dna_change":"chr1:g.58576516G>C","id":"U3NtOmY1ZDk4NTY4LTFhOWUtNTcyYy04MzFkLTgwNTQxYjc5MzNjMyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":2,"ssm_id":"f5d98568-1a9e-572c-831d-80541b7933c3","start_position":58576516}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDAxYzU0M2MtZWRhNS01ZjdhLTg5NmUtNmMwZjQ2ODIwMzFjOjc5Y2I4ZDYwLTk5MTctNWYxYy1hNmQ0LTlhMzA0YjlmYjE3Mg==","transcript":{"aa_change":"N38S","annotation":{"hgvsc":"c.113A>G","polyphen_impact":"probably_damaging","polyphen_score":0.998,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203985","gene_strand":-1,"symbol":"LDLRAD1"},"is_canonical":false,"transcript_id":"ENST00000420619"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDAxYzU0M2MtZWRhNS01ZjdhLTg5NmUtNmMwZjQ2ODIwMzFjOjhlNGRhYTkzLTM3MTctNWUzZC1iOTQxLTJiMjg2NzMwOTZiMw==","transcript":{"aa_change":"N77S","annotation":{"hgvsc":"c.230A>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203985","gene_strand":-1,"symbol":"LDLRAD1"},"is_canonical":true,"transcript_id":"ENST00000371360"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDAxYzU0M2MtZWRhNS01ZjdhLTg5NmUtNmMwZjQ2ODIwMzFjOjZjNDFhMzFlLWU3NmQtNTIwNC04YWQ3LWUzMmZlODc0NzA0MA==","transcript":{"aa_change":"N34S","annotation":{"hgvsc":"c.101A>G","polyphen_impact":"probably_damaging","polyphen_score":0.995,"sift_impact":"deleterious","sift_score":0.04,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203985","gene_strand":-1,"symbol":"LDLRAD1"},"is_canonical":false,"transcript_id":"ENST00000545928"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDAxYzU0M2MtZWRhNS01ZjdhLTg5NmUtNmMwZjQ2ODIwMzFjOjZmOTQ3Njk0LWJkZDEtNWRhZi04NzBjLTZmYzNmODU3ZDlhNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.74-1843A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203985","gene_strand":-1,"symbol":"LDLRAD1"},"is_canonical":false,"transcript_id":"ENST00000371362"}}}]}},"cosmic_id":["COSM3805580","COSM3805581"],"end_position":54012253,"genomic_dna_change":"chr1:g.54012253T>C","id":"U3NtOjAwMWM1NDNjLWVkYTUtNWY3YS04OTZlLTZjMGY0NjgyMDMxYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"001c543c-eda5-5f7a-896e-6c0f4682031c","start_position":54012253}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDA4N2QyZDgtZjc0My01YmYzLTgxMWMtMzE5MjFhZjdmZDgxOjIzMTYzOWQ5LThkZTUtNTAyNC1hODI4LWYwMDFlZTAyYTdmYQ==","transcript":{"aa_change":"P219P","annotation":{"hgvsc":"c.657G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000143006","gene_strand":1,"symbol":"DMRTB1"},"is_canonical":true,"transcript_id":"ENST00000371445"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDA4N2QyZDgtZjc0My01YmYzLTgxMWMtMzE5MjFhZjdmZDgxOmZlYmE1MGJjLTEwY2EtNTI5MS04ZDhjLThjNTU5ODdlYTRjOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.665G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000143006","gene_strand":1,"symbol":"DMRTB1"},"is_canonical":false,"transcript_id":"ENST00000463126"}}}]}},"cosmic_id":["COSM1474082"],"end_position":53461552,"genomic_dna_change":"chr1:g.53461552G>A","id":"U3NtOjAwODdkMmQ4LWY3NDMtNWJmMy04MTFjLTMxOTIxYWY3ZmQ4MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0087d2d8-f743-5bf3-811c-31921af7fd81","start_position":53461552}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDBiNTllOGYtYzU1My01MWYxLWFiYWEtOTJlYTM5N2JmMmVjOjdjMTJhMTQ1LTA3ZmMtNWZlYi04M2Q4LWNiZDhjZTFjYWFiZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-872-12141G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000033122","gene_strand":1,"symbol":"LRRC7"},"is_canonical":false,"transcript_id":"ENST00000415775"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDBiNTllOGYtYzU1My01MWYxLWFiYWEtOTJlYTM5N2JmMmVjOmM2Y2ZiZTJkLWE5MzMtNTQyZS05MDg4LWU3M2UxODZhZDg4MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.534-12141G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000033122","gene_strand":1,"symbol":"LRRC7"},"is_canonical":true,"transcript_id":"ENST00000035383"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDBiNTllOGYtYzU1My01MWYxLWFiYWEtOTJlYTM5N2JmMmVjOjRlMjkyYWI3LTJkMzItNTNmOC1hYmIxLTRjOGZiZGUzMTgyMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.549-12141G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000033122","gene_strand":1,"symbol":"LRRC7"},"is_canonical":false,"transcript_id":"ENST00000310961"}}}]}},"cosmic_id":null,"end_position":69919366,"genomic_dna_change":"chr1:g.69919366G>A","id":"U3NtOjAwYjU5ZThmLWM1NTMtNTFmMS1hYmFhLTkyZWEzOTdiZjJlYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"00b59e8f-c553-51f1-abaa-92ea397bf2ec","start_position":69919366}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOjIxYjFmYmY0LWE1MDMtNWQ4MS1iMWJkLTk0YThkYjA1MmU5MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*67C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":false,"transcript_id":"ENST00000370985"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOjk2MjllZWQyLTk4MDMtNTJlNi1iMzU4LTkzZTQ0ZTU5OTJjNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*144C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":false,"transcript_id":"ENST00000617962"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOjZkNGM1NDY4LTk5NWEtNTBiZS04ZGNlLTUyNTEwYjVlYTRkYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*67C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":true,"transcript_id":"ENST00000370986"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOmQ0MTBkMmMyLTVmYzgtNWFkNi1iMTczLTk5NmY5ZjUzY2Q1Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":false,"transcript_id":"ENST00000460575"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOjEzNGY4MTg3LTU0ZjAtNTg4ZS04NjFmLTZkMTU1YmJiZGRmMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":false,"transcript_id":"ENST00000484245"}}}]}},"cosmic_id":null,"end_position":67687841,"genomic_dna_change":"chr1:g.67687841C>G","id":"U3NtOjAxMWJkMTAwLTcxYTMtNTI5OS1hMDY4LTgyN2NhYTgzMjM3MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"011bd100-71a3-5299-a068-827caa832371","start_position":67687841}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExZWY0NTItZDY2OS01ZWY2LWE1ZjgtYTk0ZWM0YmI0YWFjOjM4OGI0NTQwLTU0OTgtNTk2OC1iZGViLTZmNWJmNzRhMTM5NA==","transcript":{"aa_change":"L24F","annotation":{"hgvsc":"c.72G>C","polyphen_impact":"benign","polyphen_score":0.272,"sift_impact":"tolerated_low_confidence","sift_score":0.72,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":true,"transcript_id":"ENST00000329654"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExZWY0NTItZDY2OS01ZWY2LWE1ZjgtYTk0ZWM0YmI0YWFjOjk0MDA2YjgxLWMyODYtNWNhOS1hYTMxLTMyN2ZmODg2Yjc3OA==","transcript":{"aa_change":"L24F","annotation":{"hgvsc":"c.72G>C","polyphen_impact":"benign","polyphen_score":0.272,"sift_impact":"tolerated_low_confidence","sift_score":0.72,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000341517"}}}]}},"cosmic_id":["COSM1474150"],"end_position":65918626,"genomic_dna_change":"chr1:g.65918626G>C","id":"U3NtOjAxMWVmNDUyLWQ2NjktNWVmNi1hNWY4LWE5NGVjNGJiNGFhYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"011ef452-d669-5ef6-a5f8-a94ec4bb4aac","start_position":65918626}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDEyYWQ0YTAtOTMzOC01NmY0LTg5ODItNDEwMGJjNjMxYmFiOmMyNmYxOGYxLWViY2ItNTU3YS1hY2Q5LTJhN2RjZGExYjhmZQ==","transcript":{"aa_change":"R176R","annotation":{"hgvsc":"c.528A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000198841","gene_strand":-1,"symbol":"KTI12"},"is_canonical":true,"transcript_id":"ENST00000371614"}}}]}},"cosmic_id":null,"end_position":52033234,"genomic_dna_change":"chr1:g.52033234T>C","id":"U3NtOjAxMmFkNGEwLTkzMzgtNTZmNC04OTgyLTQxMDBiYzYzMWJhYiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"012ad4a0-9338-56f4-8982-4100bc631bab","start_position":52033234}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjkyOTlkZWFmLTYyMGYtNTkyZS1hOGY3LTBjYzAyY2NlOGYyNQ==","transcript":{"aa_change":"A334A","annotation":{"hgvsc":"c.1002G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":false,"transcript_id":"ENST00000371274"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjczYjY4ODM4LTFhZDMtNWMxMC04YzI1LTk1ZGFkODQzMTFkNA==","transcript":{"aa_change":"A334A","annotation":{"hgvsc":"c.1002G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":true,"transcript_id":"ENST00000371276"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjU4ZTY2ODA3LWFlYWMtNWE1Yy1hNGE4LWQ5MzJiMmNkMWQxYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":false,"transcript_id":"ENST00000474654"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjYxMzRjZjYxLWM2NjMtNTJlYS05YWQ3LTA3ZTBkYjBhYjEzYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1995G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":false,"transcript_id":"ENST00000488771"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjU2MjhjOTYwLTc3OWYtNTZhZi04YWZjLTUzZDZkNzhmNjFhMQ==","transcript":{"aa_change":"A115A","annotation":{"hgvsc":"c.345G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":false,"transcript_id":"ENST00000448308"}}}]}},"cosmic_id":["COSM1474092","COSM1474093"],"end_position":54786001,"genomic_dna_change":"chr1:g.54786001C>T","id":"U3NtOjAxYWI3ZDllLTg0M2UtNTg4ZC1iZWQ4LTk0NjM1YWZkNTczNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"01ab7d9e-843e-588d-bed8-94635afd5737","start_position":54786001}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFiMjAwOTAtYmZkZS01ZGUzLWIwOTYtOTAyNGQ0MTAxOWQ1OjIyZDAzMzQzLTczZjAtNWVmMy1hMTZkLTBkYjZhY2E3ODRhNA==","transcript":{"aa_change":"X393_splice","annotation":{"hgvsc":"c.1177_1184+3delCTCATGCAGTG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"splice_donor_variant","gene":{"gene_id":"ENSG00000162398","gene_strand":1,"symbol":"C1orf177"},"is_canonical":true,"transcript_id":"ENST00000371273"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFiMjAwOTAtYmZkZS01ZGUzLWIwOTYtOTAyNGQ0MTAxOWQ1Ojg3YWZiYjM1LTQzYWMtNTYyMy1hYTkxLWY1MmMxNWNiMTQwZQ==","transcript":{"aa_change":"X393_splice","annotation":{"hgvsc":"c.1177_1184+3delCTCATGCAGTG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"splice_donor_variant","gene":{"gene_id":"ENSG00000162398","gene_strand":1,"symbol":"C1orf177"},"is_canonical":false,"transcript_id":"ENST00000358193"}}}]}},"cosmic_id":null,"end_position":54817123,"genomic_dna_change":"chr1:g.54817113delTGCTCATGCAG","id":"U3NtOjAxYjIwMDkwLWJmZGUtNWRlMy1iMDk2LTkwMjRkNDEwMTlkNSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"TGCTCATGCAG","score":1,"ssm_id":"01b20090-bfde-5de3-b096-9024d41019d5","start_position":54817113}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI2ZDZmNjAtYTE4ZS01NjJiLWI4YWQtN2Y3ZjZlYWVhMTM3OjM5Yzg1ODExLWFjYTYtNTFiNS05NTY3LTU3MmM4MDE3MjU2NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000461039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI2ZDZmNjAtYTE4ZS01NjJiLWI4YWQtN2Y3ZjZlYWVhMTM3OmY1Mzc0OGQ5LTA4MTctNTg2ZS05Y2M1LTFiOGYyYmE5NTE3MA==","transcript":{"aa_change":"R349Q","annotation":{"hgvsc":"c.1046G>A","polyphen_impact":"benign","polyphen_score":0.015,"sift_impact":"tolerated","sift_score":0.36,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":true,"transcript_id":"ENST00000371088"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI2ZDZmNjAtYTE4ZS01NjJiLWI4YWQtN2Y3ZjZlYWVhMTM3OjNmNDgxNzQ0LWZkM2QtNTg5ZS1iNWQ1LWFjYzUxMWNlMmY5OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.485G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000460678"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI2ZDZmNjAtYTE4ZS01NjJiLWI4YWQtN2Y3ZjZlYWVhMTM3OjdiNWM4Y2RjLTIxZTgtNWZmMy1hMzM1LTA0YzJkMDk4N2U2MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.326G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000496956"}}}]}},"cosmic_id":["COSM3805749"],"end_position":63551824,"genomic_dna_change":"chr1:g.63551824G>A","id":"U3NtOjAyNmQ2ZjYwLWExOGUtNTYyYi1iOGFkLTdmN2Y2ZWFlYTEzNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"026d6f60-a18e-562b-b8ad-7f7f6eaea137","start_position":63551824}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI4YzRkOWEtY2NjYi01OWE2LTg3ZTgtMjIzNWRjYTkzOGIzOmIzYzA4NDNmLWZhNzgtNTY0My1iNzRjLTIzMTBlMjAwZWE2MQ==","transcript":{"aa_change":"P305S","annotation":{"hgvsc":"c.913C>T","polyphen_impact":"probably_damaging","polyphen_score":0.988,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000066557","gene_strand":-1,"symbol":"LRRC40"},"is_canonical":true,"transcript_id":"ENST00000370952"}}}]}},"cosmic_id":["COSM426655"],"end_position":70175874,"genomic_dna_change":"chr1:g.70175874G>A","id":"U3NtOjAyOGM0ZDlhLWNjY2ItNTlhNi04N2U4LTIyMzVkY2E5MzhiMyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"028c4d9a-cccb-59a6-87e8-2235dca938b3","start_position":70175874}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI5ZDUyY2EtYjVlMC01NDJiLTg3NWQtZGVmZDg4OGE1NWY2OmEyM2UwYjQzLTBhMjUtNWMwNC05ZWQ2LTFjNDhjYzZkYzhjYQ==","transcript":{"aa_change":"M187V","annotation":{"hgvsc":"c.557A>G","polyphen_impact":"benign","polyphen_score":0.26,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116641","gene_strand":-1,"symbol":"DOCK7"},"is_canonical":false,"transcript_id":"ENST00000454575"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI5ZDUyY2EtYjVlMC01NDJiLTg3NWQtZGVmZDg4OGE1NWY2OjgyY2ZjZGI1LTg0OTctNTkyMC04NmM1LTJmYzAxYjBhNzY1YQ==","transcript":{"aa_change":"M1015V","annotation":{"hgvsc":"c.3043A>G","polyphen_impact":"benign","polyphen_score":0.187,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116641","gene_strand":-1,"symbol":"DOCK7"},"is_canonical":true,"transcript_id":"ENST00000251157"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI5ZDUyY2EtYjVlMC01NDJiLTg3NWQtZGVmZDg4OGE1NWY2OjZlYzk1ZDJhLTJjZjYtNTFiZS1hN2UyLTEwOGIxNWVlNzUyMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116641","gene_strand":-1,"symbol":"DOCK7"},"is_canonical":false,"transcript_id":"ENST00000614472"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI5ZDUyY2EtYjVlMC01NDJiLTg3NWQtZGVmZDg4OGE1NWY2OjMwOTAwMWZkLTg2MTAtNTllNy05YTQyLTQxYWJkNTlhOTQzOQ==","transcript":{"aa_change":"M984V","annotation":{"hgvsc":"c.2950A>G","polyphen_impact":"benign","polyphen_score":0.036,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116641","gene_strand":-1,"symbol":"DOCK7"},"is_canonical":false,"transcript_id":"ENST00000340370"}}}]}},"cosmic_id":null,"end_position":62542610,"genomic_dna_change":"chr1:g.62542610T>C","id":"U3NtOjAyOWQ1MmNhLWI1ZTAtNTQyYi04NzVkLWRlZmQ4ODhhNTVmNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"029d52ca-b5e0-542b-875d-defd888a55f6","start_position":62542610}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOjFiMGNhMTg5LWFhYTctNWNiNi1iMjc2LTMxNGNkMDBkNmI2NQ==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.941,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000371341"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOjI1MmQ4ODdjLWNkNmEtNTNmYy04YjgzLWRmOGFlY2M1NDM4Ng==","transcript":{"aa_change":"S182Y","annotation":{"hgvsc":"c.545C>A","polyphen_impact":"probably_damaging","polyphen_score":0.941,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":true,"transcript_id":"ENST00000234831"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmUzNzUzYzFlLTI1MGMtNWM1YS04NDU5LTAyYzBmNjViNmMzZQ==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.941,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000371344"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmUxODkyZmIzLTNhMTAtNWRjMC04YjlkLTgwZjFmMjAzYWNjMQ==","transcript":{"aa_change":"S193Y","annotation":{"hgvsc":"c.578C>A","polyphen_impact":"probably_damaging","polyphen_score":0.99,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000452421"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmU0NTEyZWU3LWRhNGEtNTY3Yy1iMzM4LTMyMTM2ZjA3OWQyOQ==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.941,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000371348"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmJiOTM5ZTE3LWVlNmMtNWZmNy1hMDNhLWE0YTY1YjQxMzk1YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000371337"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOjljNzM1NWIwLTgxM2MtNWQzNC04YjgxLTIxMTE5ZWQ1MTYzNA==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.964,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000440019"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmNhZGFiNjVjLTBjYTctNTM5Zi05MTA1LTBkNjQxOGY1YzgwMA==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.964,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000420738"}}}]}},"cosmic_id":["COSM3805582","COSM3805583","COSM3805584"],"end_position":54041804,"genomic_dna_change":"chr1:g.54041804G>T","id":"U3NtOjAzMTA1ZDRmLWEwYmYtNWZlNi1iMDUyLTNlMWEwMWRjNDk1ZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"03105d4f-a0bf-5fe6-b052-3e1a01dc495f","start_position":54041804}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDM4MmM2YjUtOWYwOS01YTY5LTllNjItNzg5NzM1NzkyZDA4OmNlMmY2MzJkLWFjMTItNTFlNS1iMTAzLTYxYjc3NjdlMDQwMg==","transcript":{"aa_change":"P399S","annotation":{"hgvsc":"c.1195C>T","polyphen_impact":"probably_damaging","polyphen_score":0.968,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157184","gene_strand":1,"symbol":"CPT2"},"is_canonical":true,"transcript_id":"ENST00000371486"}}}]}},"cosmic_id":["COSM426458"],"end_position":53210869,"genomic_dna_change":"chr1:g.53210869C>T","id":"U3NtOjAzODJjNmI1LTlmMDktNWE2OS05ZTYyLTc4OTczNTc5MmQwOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0382c6b5-9f09-5a69-9e62-789735792d08","start_position":53210869}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjAwYjQxZmJkLTg5ZGQtNTg1ZC05MWQ0LTI5MWExMDYxYTlkYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.277T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000493533"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjNjNjg5MTcyLTYxNDktNWM1Ny1hMTY1LWRlMDJjNjhiNjkxMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1076T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000440217"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmI5NTQ2OTEyLWQ2ZmUtNWRhNC1iYzE1LTJjZjg5MjFkZTVkNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*936T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000438846"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmI4NjY1MTFlLTVhY2EtNTA0ZC1iZmNlLTY2OTk0ZmVjMzdkOQ==","transcript":{"aa_change":"M503T","annotation":{"hgvsc":"c.1508T>C","polyphen_impact":"possibly_damaging","polyphen_score":0.557,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000409996"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjAzZGEzZmRhLTQ4MGEtNWYxOC1iZmViLTQwZjVjZTc3NDA4Zg==","transcript":{"aa_change":"M935T","annotation":{"hgvsc":"c.2804T>C","polyphen_impact":"benign","polyphen_score":0.402,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000339553"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjQzMWE5Mjk5LWE4OTUtNTE1Ni05NzdkLWVhYTdiNzVlNzIxOQ==","transcript":{"aa_change":"M935T","annotation":{"hgvsc":"c.2804T>C","polyphen_impact":"possibly_damaging","polyphen_score":0.557,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":true,"transcript_id":"ENST00000421030"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjg2NzI4N2RjLTY5NjItNWZkYy1hYWE0LWRiNjdlOGNhZmMxMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*384T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000440047"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjE3MGI1ZWUzLWM2ZWEtNWNhYi05ZDI5LWJkYjNhOWE2YTU5OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*590T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000413188"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmNlNThmMWRhLWJhM2MtNWZlMS1iNjg5LTQ5YmQ0OTNhODc4Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000371287"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmY1ODIwMzljLWU1YjAtNTcwZS1hYWM3LTBmYzRkYmE4YTJkMg==","transcript":{"aa_change":"M935T","annotation":{"hgvsc":"c.2804T>C","polyphen_impact":"possibly_damaging","polyphen_score":0.617,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000395690"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmE4ZTNjMjYwLWUwY2QtNWFhMS1iN2M5LTc2NzdjMGJlOGFlOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*936T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000422659"}}}]}},"cosmic_id":["COSM426487","COSM426488","COSM5200993"],"end_position":54692516,"genomic_dna_change":"chr1:g.54692516T>C","id":"U3NtOjA0MDQ1OTIxLWRkNWMtNWQzMy1iYWExLTg3OGMwOTc3NGI2MyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"04045921-dd5c-5d33-baa1-878c09774b63","start_position":54692516}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQ2OGYwZTctYWViNC01NDQzLTgwMTEtMjNlMDRmYzlkNjg1OjNlOTZjYTkyLWEyNjgtNTA1NS1hMDQwLWFmMDVmMWEzMGM0NA==","transcript":{"aa_change":"K87T","annotation":{"hgvsc":"c.260A>C","polyphen_impact":"possibly_damaging","polyphen_score":0.703,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116133","gene_strand":-1,"symbol":"DHCR24"},"is_canonical":true,"transcript_id":"ENST00000371269"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQ2OGYwZTctYWViNC01NDQzLTgwMTEtMjNlMDRmYzlkNjg1OmYxMTFhOGRjLThmNzMtNTIwMy1iMjQxLWUwOTFmZWUyYzE2NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-8A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000116133","gene_strand":-1,"symbol":"DHCR24"},"is_canonical":false,"transcript_id":"ENST00000535035"}}}]}},"cosmic_id":["COSM1474096"],"end_position":54883745,"genomic_dna_change":"chr1:g.54883745T>G","id":"U3NtOjA0NjhmMGU3LWFlYjQtNTQ0My04MDExLTIzZTA0ZmM5ZDY4NSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"0468f0e7-aeb4-5443-8011-23e04fc9d685","start_position":54883745}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOjU4NWMyM2Q2LWFlOTEtNTZiOS1hYWUwLWI2NWYxOTJlYWE3ZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.141-18163T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000460671"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOjk2MDQ4ZTVhLTQ0NjYtNWM5Zi05ZTg1LTVmMzg0YTA2ZDYyMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.287+25103T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000467509"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOjk3YWM5ZmYxLWJjZWEtNWIwNy04OGEwLTZlNjczNmE0MTQwNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.890-6989T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000421528"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOjZhYWE0NjM1LTVkMWMtNWZmMS1hNjgzLWNhYWUwNTc0NjI1YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*8T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":true,"transcript_id":"ENST00000371226"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOmQ2OWIzMzgyLWZiZGEtNTk1MS04ZGU3LWMxNjE1ZjlkYzFkYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.330T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000476933"}}}]}},"cosmic_id":["COSN23014397"],"end_position":58480957,"genomic_dna_change":"chr1:g.58480957A>C","id":"U3NtOjA1MTNmZWU3LTBkNzEtNTJkNi05ZDQyLTQ1YzRhYjE0N2QxZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"0513fee7-0d71-52d6-9d42-45c4ab147d1d","start_position":58480957}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjg4NmQ4OWFlLTYyNjEtNTRhOS1iNTMzLTBhM2VlNDlmMzBhMg==","transcript":{"aa_change":"S155L","annotation":{"hgvsc":"c.464C>T","polyphen_impact":"benign","polyphen_score":0,"sift_impact":"tolerated","sift_score":0.13,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":true,"transcript_id":"ENST00000371007"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjYwOGExOTgwLWQyZjctNTgxNy05OGZmLTQyMjEzZTJhMzQzNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1325C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000371004"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOmQyOTc5MjliLWMzNTUtNTcyNC04OTE4LTA0NmU5YWMzYjBkOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*415+878C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000544837"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjIxNTg3NjVkLTM2YjktNTM4NC1hMWRjLWE5NGUyNjI0NDhjNQ==","transcript":{"aa_change":"S155L","annotation":{"hgvsc":"c.464C>T","polyphen_impact":"benign","polyphen_score":0,"sift_impact":"tolerated","sift_score":0.13,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000371006"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjJhM2UzMzUwLWMyNjktNWE3Yi04NWEzLTBjOTgzNDc0OThjYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.629+878C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000475209"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOmE1ZTE1NDAwLTAzMjEtNTUxOS04M2RhLTE0NjRjYWRjNjk0Mw==","transcript":{"aa_change":"S226L","annotation":{"hgvsc":"c.677C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.519,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000448166"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjQ0ODBjODk1LWJiNzMtNTRlYS04ZGY4LTA3OGUwZjA3ZjJhNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000603691"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjlhNjNhZDEwLTdjNjAtNWIyMy1iM2JkLTEzYWM4YmQ5YzRiYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*938C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000621590"}}}]}},"cosmic_id":["COSM279327"],"end_position":67095374,"genomic_dna_change":"chr1:g.67095374G>A","id":"U3NtOjA1M2U5MzdmLTkwZTctNTFjMC05YTQ3LWQyYTZlMDZmNzMzZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"053e937f-90e7-51c0-9a47-d2a6e06f733f","start_position":67095374}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjlmMGFhNGMxLTZiZmUtNTE2Zi05NmNlLWM5ODY5ODkyNWM5Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.238_248delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000483863"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmQyNDdjYTU3LWEzNDgtNTFkNS1hYWM0LWM2NDUwMGI0NjhmMw==","transcript":{"aa_change":"V474Sfs*16","annotation":{"hgvsc":"c.1420_1430delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":true,"transcript_id":"ENST00000329654"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmJkZWQ0NmEyLTFkYjMtNWQwZS05NmI2LTMwZjUxNjc2MDBjMA==","transcript":{"aa_change":"V459Sfs*16","annotation":{"hgvsc":"c.1375_1385delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000423207"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjQ5OTQ4ZWU1LTA3YjItNTA3NS1hMDAzLWE5YzI5MjI0YjZlNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000526197"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjY0YTFjZGU2LWFhMjAtNTFhOC04MTZkLThlZWNkMWZjN2IzNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000531025"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmU4ZTUwMDYzLTdiMGYtNWNlMC05ZjU5LWI0NWY2YjQwNGMxMA==","transcript":{"aa_change":"V474Sfs*16","annotation":{"hgvsc":"c.1420_1430delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000341517"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5Ojc5YThiMjczLTk4M2MtNWM5OC1hN2E1LTFkN2Y5MjE0OGUzZQ==","transcript":{"aa_change":"V302Sfs*16","annotation":{"hgvsc":"c.904_914delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000371045"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjBhNzAzZjg1LTJjYzEtNThhZS1iNTk3LWY1OTE5OTcyZjIwZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000534463"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjE5MzhlNTQ5LTU0NGMtNTNmNy04ZjU2LWQzYTkxMGRlZThhOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000528771"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmIwY2RhNWM1LWI2MWUtNTRhMi05YTEwLWEzNjFlZjRmMWZhOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000524999"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmRjY2E1NjdhLTRlOTMtNTM3ZC04ZDcyLTU3M2M2M2NkYWY3Yg==","transcript":{"aa_change":"V241Sfs*16","annotation":{"hgvsc":"c.721_731delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000480109"}}}]}},"cosmic_id":null,"end_position":66367741,"genomic_dna_change":"chr1:g.66367731delGTGTTGGAAAA","id":"U3NtOjA1N2U2Y2Q1LTRjOGMtNTBkYS05ZTVhLTZlZTA3ZTA5YmQ2OSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"GTGTTGGAAAA","score":1,"ssm_id":"057e6cd5-4c8c-50da-9e5a-6ee07e09bd69","start_position":66367731}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU4MmRjMjUtNzAzMi01ZTgwLThlNGEtYzY3ZTgwMzgxNjE1OjJjZTY0OWFkLTlkZWEtNTViNC04MWVhLWMzODk0ZmE5Zjk4MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.804+3A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000066557","gene_strand":-1,"symbol":"LRRC40"},"is_canonical":true,"transcript_id":"ENST00000370952"}}}]}},"cosmic_id":null,"end_position":70178848,"genomic_dna_change":"chr1:g.70178848T>C","id":"U3NtOjA1ODJkYzI1LTcwMzItNWU4MC04ZTRhLWM2N2U4MDM4MTYxNSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"0582dc25-7032-5e80-8e4a-c67e80381615","start_position":70178848}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjIwYzJiMGM5LTNhNzMtNTVlZS05NDQ0LTlkZDY3MzM5OWRhMw==","transcript":{"aa_change":"D88N","annotation":{"hgvsc":"c.262G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.743,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000545314"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjU0YWMxOTljLWQzMTktNTUxYi1hNTFhLTg2NDliNTE4OWZlNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.205G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000479060"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1Ojk0Y2ZlYjNmLTlhZDAtNWM1OS1hNDhjLTQ2YTM0MzI2NWVlMA==","transcript":{"aa_change":"D36N","annotation":{"hgvsc":"c.106G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.743,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000546702"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OmJjZjcyZGVlLTUwMDEtNTFmZS1iMWJlLTQ5NWRiM2VkMTFmMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.509G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000497030"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjQzZDcwNTBmLTI2MDgtNTIzMS1hYjY3LWY0M2QxMjVmYTdlMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.781G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000470888"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjRhYWI2YzUzLTZkYmEtNTQ4MS1iNDViLTMyZmUyNjg4NmVlNA==","transcript":{"aa_change":"D88N","annotation":{"hgvsc":"c.262G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.743,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":true,"transcript_id":"ENST00000395334"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjJhN2MyNGJhLTM5OGUtNTc0Yi05NzViLTY5ZWFmN2M5YmMyNA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.256G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000474968"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OmFjYzFjOTQwLTE5NTItNTM3My04MmM3LWM2YzU2ZDJiY2RhYw==","transcript":{"aa_change":"D88N","annotation":{"hgvsc":"c.262G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.743,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000327299"}}}]}},"cosmic_id":["COSM426591"],"end_position":65190826,"genomic_dna_change":"chr1:g.65190826G>A","id":"U3NtOjA1OWE5OGZjLThhYjItNTI4Yi05NzhlLWQ0NmQ5ZTAwOWMzNSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"059a98fc-8ab2-528b-978e-d46d9e009c35","start_position":65190826}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDVhY2MwY2QtZGU4Yy01NmFjLWE5OTEtM2Y2NzY0NTViNDc1OjI1MzRjN2FiLTYzZjItNTlkMC05ZDNjLWQxMGUwMjk5NzdmYg==","transcript":{"aa_change":"R484Gfs*36","annotation":{"hgvsc":"c.1449_1459delGCGCCGCGCCT","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157131","gene_strand":1,"symbol":"C8A"},"is_canonical":true,"transcript_id":"ENST00000361249"}}}]}},"cosmic_id":null,"end_position":56912478,"genomic_dna_change":"chr1:g.56912468delCCTGCGCCGCG","id":"U3NtOjA1YWNjMGNkLWRlOGMtNTZhYy1hOTkxLTNmNjc2NDU1YjQ3NSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"CCTGCGCCGCG","score":1,"ssm_id":"05acc0cd-de8c-56ac-a991-3f676455b475","start_position":56912468}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDVkMjMyM2MtYTJkZC01NTU4LWFjMjEtZjY5NTkwNjYwMDUxOjVlMjY2ZjkwLWE0NmItNTVlYi05YzQ0LTU5ZWVmZTBhMjFlMQ==","transcript":{"aa_change":"A881G","annotation":{"hgvsc":"c.2642C>G","polyphen_impact":"benign","polyphen_score":0.005,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000395325"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDVkMjMyM2MtYTJkZC01NTU4LWFjMjEtZjY5NTkwNjYwMDUxOmE4MDdhZTJiLTc2OTktNWJiYy1iYTVkLTA5MDNjMDJmYmVhYg==","transcript":{"aa_change":"A938G","annotation":{"hgvsc":"c.2813C>G","polyphen_impact":"benign","polyphen_score":0.027,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":true,"transcript_id":"ENST00000371069"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDVkMjMyM2MtYTJkZC01NTU4LWFjMjEtZjY5NTkwNjYwMDUxOjg5MWEzOGIzLTRhOGMtNTczMi1hNmYyLTY1ZjZjYWI4MDA1Zg==","transcript":{"aa_change":"A868G","annotation":{"hgvsc":"c.2603C>G","polyphen_impact":"benign","polyphen_score":0.005,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000263441"}}}]}},"cosmic_id":["COSM426594","COSM5217668"],"end_position":65412925,"genomic_dna_change":"chr1:g.65412925C>G","id":"U3NtOjA1ZDIzMjNjLWEyZGQtNTU1OC1hYzIxLWY2OTU5MDY2MDA1MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"05d2323c-a2dd-5558-ac21-f69590660051","start_position":65412925}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDYzYjVhYTQtMWQzZC01ZjI0LWE4ZTMtMDJiMmRkMDgzZTUyOjg4YmNkMDA2LTVmMTUtNWY0Yi1iNTE5LTc5NDYzMTVhMTQ4Nw==","transcript":{"aa_change":"T455T","annotation":{"hgvsc":"c.1365G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000085840","gene_strand":-1,"symbol":"ORC1"},"is_canonical":true,"transcript_id":"ENST00000371568"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDYzYjVhYTQtMWQzZC01ZjI0LWE4ZTMtMDJiMmRkMDgzZTUyOmU3ZTNjMWQyLTE0OGYtNWZhOS1hMTgxLTI5MGU4OTI1MDlkYg==","transcript":{"aa_change":"T455T","annotation":{"hgvsc":"c.1365G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000085840","gene_strand":-1,"symbol":"ORC1"},"is_canonical":false,"transcript_id":"ENST00000371566"}}}]}},"cosmic_id":null,"end_position":52388460,"genomic_dna_change":"chr1:g.52388460C>T","id":"U3NtOjA2M2I1YWE0LTFkM2QtNWYyNC1hOGUzLTAyYjJkZDA4M2U1MiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"063b5aa4-1d3d-5f24-a8e3-02b2dd083e52","start_position":52388460}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY3ZjUxNjYtNGZlMi01YmJmLTkxYWQtYjk2MTUwNDYyMGE4OmI0ZGM2NGZlLWE2ODMtNWQwZC05YTNhLWZkNjIxNzcyOTMzMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*2703+4T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000415760"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY3ZjUxNjYtNGZlMi01YmJmLTkxYWQtYjk2MTUwNDYyMGE4OjZmMTJjOTQxLTE1YTgtNTA5MC04ZWUxLWIwNDllY2E0NjQ4Zg==","transcript":{"aa_change":"M415R","annotation":{"hgvsc":"c.1244T>G","polyphen_impact":"possibly_damaging","polyphen_score":0.543,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000395089"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY3ZjUxNjYtNGZlMi01YmJmLTkxYWQtYjk2MTUwNDYyMGE4OjZhNTIyMTVjLTk1MGYtNWU1Yy1hYWE3LWM2NzIzZjlkYWI3MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.131-14718T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000417067"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY3ZjUxNjYtNGZlMi01YmJmLTkxYWQtYjk2MTUwNDYyMGE4OjdmNDgwZWQ3LTc4MzMtNTRlYi04MmU2LTQ3Yzc5NTE0YTVjNA==","transcript":{"aa_change":"M415R","annotation":{"hgvsc":"c.1244T>G","polyphen_impact":"possibly_damaging","polyphen_score":0.543,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":true,"transcript_id":"ENST00000354431"}}}]}},"cosmic_id":["COSM426679"],"end_position":74041687,"genomic_dna_change":"chr1:g.74041687A>C","id":"U3NtOjA2N2Y1MTY2LTRmZTItNWJiZi05MWFkLWI5NjE1MDQ2MjBhOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"067f5166-4fe2-5bbf-91ad-b961504620a8","start_position":74041687}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZGZlZmMtYTQwZi01ZjFmLTllNmYtZmZlZDdhYzEyOTE1OmE1NTljYjg0LTg3ODEtNTBjNy05N2Y3LTM2ODQ3YmFiZDc3ZQ==","transcript":{"aa_change":"E39K","annotation":{"hgvsc":"c.115G>A","polyphen_impact":"benign","polyphen_score":0.005,"sift_impact":"tolerated","sift_score":0.67,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162437","gene_strand":1,"symbol":"RAVER2"},"is_canonical":false,"transcript_id":"ENST00000294428"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZGZlZmMtYTQwZi01ZjFmLTllNmYtZmZlZDdhYzEyOTE1OmIwMTFkMDhlLTNiNDQtNTE4MC04ZDE5LTkzNzAxYWI0NTU4Zg==","transcript":{"aa_change":"E39K","annotation":{"hgvsc":"c.115G>A","polyphen_impact":"benign","polyphen_score":0.011,"sift_impact":"tolerated","sift_score":0.61,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162437","gene_strand":1,"symbol":"RAVER2"},"is_canonical":true,"transcript_id":"ENST00000371072"}}}]}},"cosmic_id":["COSM3805767","COSM5832659"],"end_position":64745287,"genomic_dna_change":"chr1:g.64745287G>A","id":"U3NtOjA2OGRmZWZjLWE0MGYtNWYxZi05ZTZmLWZmZWQ3YWMxMjkxNSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"068dfefc-a40f-5f1f-9e6f-ffed7ac12915","start_position":64745287}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZmJhYjAtYTVjYy01ZDE5LThmNDEtNWI4NTE4N2ZmNzZkOjY3ZTc1MTEzLTdjNDMtNWU3Yy1hMWNlLTBkMDliNTcwNTIwMg==","transcript":{"aa_change":"E107E","annotation":{"hgvsc":"c.320G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000125703","gene_strand":1,"symbol":"ATG4C"},"is_canonical":false,"transcript_id":"ENST00000414558"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZmJhYjAtYTVjYy01ZDE5LThmNDEtNWI4NTE4N2ZmNzZkOjQ5OWU4YjRhLWQ5YzAtNWNmYi1hZmIxLWNiZjc5ZDQ3NWM3YQ==","transcript":{"aa_change":"E363E","annotation":{"hgvsc":"c.1089G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000125703","gene_strand":1,"symbol":"ATG4C"},"is_canonical":false,"transcript_id":"ENST00000371120"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZmJhYjAtYTVjYy01ZDE5LThmNDEtNWI4NTE4N2ZmNzZkOmZkODM1NzdhLTQ0MTctNTk3Zi04ZTQ2LTNiYjVmNDJiMThjZA==","transcript":{"aa_change":"E363E","annotation":{"hgvsc":"c.1089G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000125703","gene_strand":1,"symbol":"ATG4C"},"is_canonical":true,"transcript_id":"ENST00000317868"}}}]}},"cosmic_id":null,"end_position":62834852,"genomic_dna_change":"chr1:g.62834852G>A","id":"U3NtOjA2OGZiYWIwLWE1Y2MtNWQxOS04ZjQxLTViODUxODdmZjc2ZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"068fbab0-a5cc-5d19-8f41-5b85187ff76d","start_position":62834852}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwYjNkNWQtNmU4Ny01YzZjLThiZGUtZjQ3MjQ3M2QwZDU3OjIxYmMwZGY2LTYwNWEtNTZiNC1hNDNjLWZhZDI4Y2IwZjdmNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.947-2438C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":true,"transcript_id":"ENST00000371088"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwYjNkNWQtNmU4Ny01YzZjLThiZGUtZjQ3MjQ3M2QwZDU3OmE0YjU5MTI1LTc3NDEtNWRmNy05NjQwLTljNDRjNzYwNDhhZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.227-2438C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000496956"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwYjNkNWQtNmU4Ny01YzZjLThiZGUtZjQ3MjQ3M2QwZDU3OmNlN2MwMmY2LWUxYzEtNWZmYy05ODhhLWMxOWMwZTk3YjdjZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.342+937C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000460678"}}}]}},"cosmic_id":null,"end_position":63549287,"genomic_dna_change":"chr1:g.63549287C>G","id":"U3NtOjA3MGIzZDVkLTZlODctNWM2Yy04YmRlLWY0NzI0NzNkMGQ1NyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"070b3d5d-6e87-5c6c-8bde-f472473d0d57","start_position":63549287}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwZDkwYzEtZjA4YS01NzljLWE2MGUtNTY4NmE4ZjliOGU4OjQ1MmJhNGQ5LWY1OGYtNTMyZC05OTk1LTBjNWJkYzY0ZjVkNQ==","transcript":{"aa_change":"G397C","annotation":{"hgvsc":"c.1189G>T","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000021852","gene_strand":-1,"symbol":"C8B"},"is_canonical":true,"transcript_id":"ENST00000371237"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwZDkwYzEtZjA4YS01NzljLWE2MGUtNTY4NmE4ZjliOGU4OjVhMmRhZmFkLWM4OGMtNTA3ZC1hOWIxLWE5NTU5MjhhNmI3Yw==","transcript":{"aa_change":"G345C","annotation":{"hgvsc":"c.1033G>T","polyphen_impact":"probably_damaging","polyphen_score":0.998,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000021852","gene_strand":-1,"symbol":"C8B"},"is_canonical":false,"transcript_id":"ENST00000543257"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwZDkwYzEtZjA4YS01NzljLWE2MGUtNTY4NmE4ZjliOGU4OjI2YTZiZjJkLTY0ZGUtNTA2NS1hMDRiLTdhOTcxMTVjYWYyOQ==","transcript":{"aa_change":"G335C","annotation":{"hgvsc":"c.1003G>T","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000021852","gene_strand":-1,"symbol":"C8B"},"is_canonical":false,"transcript_id":"ENST00000535057"}}}]}},"cosmic_id":["COSM3805642"],"end_position":56943741,"genomic_dna_change":"chr1:g.56943741C>A","id":"U3NtOjA3MGQ5MGMxLWYwOGEtNTc5Yy1hNjBlLTU2ODZhOGY5YjhlOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"070d90c1-f08a-579c-a60e-5686a8f9b8e8","start_position":56943741}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDczZWE2ZjEtYjAyNy01MzkwLWI1M2QtNDdjMTc5MzZjMzE2OmVlMWY0N2E4LTI4ZTgtNWM2MS1iYzc4LWU3NjA5YTIzMWM1Nw==","transcript":{"aa_change":"I1016Dfs*10","annotation":{"hgvsc":"c.3045dupG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":true,"transcript_id":"ENST00000290039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDczZWE2ZjEtYjAyNy01MzkwLWI1M2QtNDdjMTc5MzZjMzE2OjFiMWJiMTRjLTlhYjYtNTg4Mi05YzNjLWQ1OGIyZTk2ZWVhYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3136dupG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000470527"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDczZWE2ZjEtYjAyNy01MzkwLWI1M2QtNDdjMTc5MzZjMzE2OmI2MjM4MGY1LTI4YzYtNTQ2ZC04MTAxLWRhYzc0YWNlY2VjNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3428dupG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000495994"}}}]}},"cosmic_id":["COSM5218159","COSM5832656"],"end_position":64678259,"genomic_dna_change":"chr1:g.64678258_64678259insG","id":"U3NtOjA3M2VhNmYxLWIwMjctNTM5MC1iNTNkLTQ3YzE3OTM2YzMxNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small insertion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"-","score":1,"ssm_id":"073ea6f1-b027-5390-b53d-47c17936c316","start_position":64678258}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjViYjQ1ZWU3LWE3ZmQtNWRiZi05NjNiLWVlYzA5ZjUyOGIwNw==","transcript":{"aa_change":"E591D","annotation":{"hgvsc":"c.1773G>T","polyphen_impact":"benign","polyphen_score":0.03,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000453295"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjM2ZjUwOTY3LTY1NjYtNTRhNi04N2I2LTI2Zjk1NzhmNTdmZA==","transcript":{"aa_change":"E595D","annotation":{"hgvsc":"c.1785G>T","polyphen_impact":"benign","polyphen_score":0.116,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000371714"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OmYyNjdmZDdjLWIwYjUtNTVlNy05MWExLWYwYWYyNWJmNTY3OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2308G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000475697"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjE5NzE1MjJiLThmN2QtNWUyZS05OTYwLTllODRlZGViZGY3MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1594G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000531819"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjM1YWZmZGM1LTA1ZjQtNWMxMi04MWNmLTM2NTdjN2QxY2MxOA==","transcript":{"aa_change":"E608D","annotation":{"hgvsc":"c.1824G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000428468"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjgwNGY5ZjNkLWVkZTMtNTQxZC04MzdkLTE0OTZlNTk0YTE2OQ==","transcript":{"aa_change":"E443D","annotation":{"hgvsc":"c.1329G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000531828"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjM1ODU3YTFiLTQ4M2YtNTQ0YS05MGE0LTJlYTBmYjNmNzNmZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1736G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000435274"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OmQxYjA4ZDkwLWY1NmEtNTlhMi05NmMwLTFkYmM0MWQ1YjJlOA==","transcript":{"aa_change":"E498D","annotation":{"hgvsc":"c.1494G>T","polyphen_impact":"benign","polyphen_score":0.017,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000361556"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjJjOTM0NDhiLWU2YWYtNTc3My04MzcwLWYzN2ExYThmYmU4YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1541G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000495776"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjU5M2EwZjI1LWRkNWUtNWE1OS05MTJjLWVjZDkwMTRlMTQyYw==","transcript":{"aa_change":"E1?","annotation":{"hgvsc":"c.3G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.1,"vep_impact":"HIGH"},"consequence_type":"start_lost","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000625138"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjY4MDQyNWY1LTgzMzItNTIwOS1iMjdkLWMxMzc0MTlhNDkyZQ==","transcript":{"aa_change":"E430D","annotation":{"hgvsc":"c.1290G>T","polyphen_impact":"benign","polyphen_score":0.116,"sift_impact":"tolerated","sift_score":0.11,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000462759"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjFkZjg1OWI5LWU2ZjctNWI4ZS04ODYxLWViM2RlNmU2OWM5ZQ==","transcript":{"aa_change":"E618D","annotation":{"hgvsc":"c.1854G>T","polyphen_impact":"benign","polyphen_score":0.107,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":true,"transcript_id":"ENST00000447887"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjU4M2U2Yjc5LTBjYmMtNWI4NC1hMWFlLTAxM2I4MTcwODg2ZA==","transcript":{"aa_change":"E430D","annotation":{"hgvsc":"c.1290G>T","polyphen_impact":"benign","polyphen_score":0.116,"sift_impact":"tolerated","sift_score":0.11,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000486942"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjQ5YzI2ZWFkLTg2YTEtNWFmYi05NWFlLTEzNzBkMzMwZDFiZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000533825"}}}]}},"cosmic_id":["COSM3805528","COSM3805529","COSM3805530","COSM3805531","COSM3805532","COSM5832627"],"end_position":51784577,"genomic_dna_change":"chr1:g.51784577G>T","id":"U3NtOjA4NGIyOWM3LWM3MjUtNWNhYS04Y2Q2LWYxYzBkMDgwNTE4NCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"084b29c7-c725-5caa-8cd6-f1c0d0805184","start_position":51784577}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOjJmYWFlMWIxLTMyODAtNTNmNi04OWRiLTRhYjdkMmYxYmMxNA==","transcript":{"aa_change":"S319*","annotation":{"hgvsc":"c.956C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000316485"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOmVkZTIzYzQ2LWEyZDEtNTk1NS1hZTE4LTMzYjQwYjk2ZWI3YQ==","transcript":{"aa_change":"S319*","annotation":{"hgvsc":"c.956C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000613764"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOjc2NzA1ODBlLWZlNmYtNWQ1Yy1iYjJjLWFjMTQ4YzYyMWU1NQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1070C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000459752"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOmU2NjMxOGFjLWUzZjUtNTA1Ny04NTYwLTkxMzc4YzdlMjY4MA==","transcript":{"aa_change":"S319*","annotation":{"hgvsc":"c.956C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":true,"transcript_id":"ENST00000371158"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOjA5NmY5ZDU5LWJlZWItNThkNi1iYjc5LWIzNGFkYjMyZTIyMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1070C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484562"}}}]}},"cosmic_id":["COSM3805690"],"end_position":61787860,"genomic_dna_change":"chr1:g.61787860C>A","id":"U3NtOjA4OGJlMWJiLWUxM2ItNTM1Mi1iZDczLTIyYWMyYjE1ODM0YiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"088be1bb-e13b-5352-bd73-22ac2b15834b","start_position":61787860}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhkZDBkNDUtNjM1OC01ZmJmLWI1YmYtNzUzODNlMzc0NTExOmI5MTJmMWVhLWYyZjctNTc2OC05N2RjLTM3NjNhYTg5NGQzZg==","transcript":{"aa_change":"Q158L","annotation":{"hgvsc":"c.473A>T","polyphen_impact":"probably_damaging","polyphen_score":0.928,"sift_impact":"deleterious","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162594","gene_strand":1,"symbol":"IL23R"},"is_canonical":false,"transcript_id":"ENST00000425614"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhkZDBkNDUtNjM1OC01ZmJmLWI1YmYtNzUzODNlMzc0NTExOmVjYzU5MzYwLTJmMjItNTc5Zi05Njc1LTkxNjhjNTA0YmQyMg==","transcript":{"aa_change":"Q413L","annotation":{"hgvsc":"c.1238A>T","polyphen_impact":"possibly_damaging","polyphen_score":0.607,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162594","gene_strand":1,"symbol":"IL23R"},"is_canonical":true,"transcript_id":"ENST00000347310"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhkZDBkNDUtNjM1OC01ZmJmLWI1YmYtNzUzODNlMzc0NTExOjc4NDAwNDZlLTAyMmUtNTQ1My05NzRlLTNmN2VjMTkwNzI0OQ==","transcript":{"aa_change":"Q11L","annotation":{"hgvsc":"c.32A>T","polyphen_impact":"possibly_damaging","polyphen_score":0.607,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162594","gene_strand":1,"symbol":"IL23R"},"is_canonical":false,"transcript_id":"ENST00000395227"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhkZDBkNDUtNjM1OC01ZmJmLWI1YmYtNzUzODNlMzc0NTExOmIwODIzNjcyLWYwMzQtNTQ4Ni1iYjNlLTUyNzVmNjU0MjllYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*64A>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000162594","gene_strand":1,"symbol":"IL23R"},"is_canonical":false,"transcript_id":"ENST00000473881"}}}]}},"cosmic_id":["COSM3805839"],"end_position":67255926,"genomic_dna_change":"chr1:g.67255926A>T","id":"U3NtOjA4ZGQwZDQ1LTYzNTgtNWZiZi1iNWJmLTc1MzgzZTM3NDUxMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"08dd0d45-6358-5fbf-b5bf-75383e374511","start_position":67255926}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjgzNGUxYTY0LWJmNmItNWM0MC1iMjJlLTQ0NjJkNWJiMmRhMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.866-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000354412"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjUwMzkxZDYxLTMxYjMtNTFiZS1iNmQyLWVkNTA4NDVkMDVlYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1884G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000459674"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjAxMjlmNTBiLWRlYmItNWVmZi04YzVjLWJhNzU0M2RmZjVlNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.743-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000347547"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjBhYzMxYmZmLTdkMjgtNWMwZC05YzE4LTFmNzExNjI0NzNiYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000481431"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjZjNDQ0OTg5LWM3YWYtNTZiNi05MDE3LWVmZTNiYzBjNmNmOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.866-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000613948"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOmExNmJjZTQ4LTcwYzUtNThhNC1hMWM4LTcyNDNhNzg4NzAwOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1253-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":true,"transcript_id":"ENST00000306052"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjlmNTYyN2Q5LTg0ZDMtNWEwZi1iOTE4LTAzNDExMmNiY2ZlZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-89-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000465675"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOmU0OGYxMTgxLTQzMDMtNTcwZi1iZjdlLTcyMjViMjVkMDE0Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000460214"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOmFjMmY4ZTYzLTk3YzktNTYwNy04ZTM1LWFlZDk4NThlNGI1Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*195-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000480045"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjNkMjA5MmI3LTdjZTItNWY1My1iMzE4LTQ3ZjA0N2ZkZTFmNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.319-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000475501"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOmFhYWQ4NjNiLTY4YTMtNTNhNC1iMWQ0LWEwMzRlMzYwZmQ1MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1253-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000371454"}}}]}},"cosmic_id":["COSN24004383"],"end_position":53266715,"genomic_dna_change":"chr1:g.53266715C>G","id":"U3NtOjA4ZTE4ZjcyLWZiN2MtNWIzMS1hYTlmLWI2NjUyZDQxM2U0MyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"08e18f72-fb7c-5b31-aa9f-b6652d413e43","start_position":53266715}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlODQzMWEtMjM2Yi01YmI5LTgzZjAtMjc1ZTA1MjAyZTRmOjIwMmMxZTQ4LWJmNGYtNWUxYi1hMzhjLTBlOGJhODM4NGQwZg==","transcript":{"aa_change":"C21F","annotation":{"hgvsc":"c.62G>T","polyphen_impact":"probably_damaging","polyphen_score":0.986,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000406510"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlODQzMWEtMjM2Yi01YmI5LTgzZjAtMjc1ZTA1MjAyZTRmOjc1ZjAxMTE2LTM1ZDMtNTUxNC1hYjc2LTQxMDcyOWQ5Y2RkMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000616738"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlODQzMWEtMjM2Yi01YmI5LTgzZjAtMjc1ZTA1MjAyZTRmOjY4OTdmYzYyLWUxZDAtNTllMS04OGU3LWUxZWQ4ZDNhMWJmOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000371060"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlODQzMWEtMjM2Yi01YmI5LTgzZjAtMjc1ZTA1MjAyZTRmOmY4ZGQ3OThlLWYxYWYtNTU1Ni1hZjJmLTQ1MzBkYzMxMzc1ZA==","transcript":{"aa_change":"C954F","annotation":{"hgvsc":"c.2861G>T","polyphen_impact":"probably_damaging","polyphen_score":0.986,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":true,"transcript_id":"ENST00000349533"}}}]}},"cosmic_id":null,"end_position":65636378,"genomic_dna_change":"chr1:g.65636378G>T","id":"U3NtOjA4ZTg0MzFhLTIzNmItNWJiOS04M2YwLTI3NWUwNTIwMmU0ZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"08e8431a-236b-5bb9-83f0-275e05202e4f","start_position":65636378}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkwYmEwNjUtZmRjMy01ZWUwLWI1YjQtZWU0Y2FlOWQ3NjYwOmVhNGM2YjcyLTgyZmItNWIyZS04ZDNkLTZhZWFhZjViMjg0Mw==","transcript":{"aa_change":"R748T","annotation":{"hgvsc":"c.2243G>C","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000357206"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkwYmEwNjUtZmRjMy01ZWUwLWI1YjQtZWU0Y2FlOWQ3NjYwOjNiZmEyNGZlLTIyNmYtNWI2MC1iMWJlLWNlM2RhNWQwYzg1ZA==","transcript":{"aa_change":"R748T","annotation":{"hgvsc":"c.2243G>C","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000371591"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkwYmEwNjUtZmRjMy01ZWUwLWI1YjQtZWU0Y2FlOWQ3NjYwOjk3M2M2YTM3LTJkMTMtNWE5Yi04MDU3LThiMDAyM2MxNTE2Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2415G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000361625"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkwYmEwNjUtZmRjMy01ZWUwLWI1YjQtZWU0Y2FlOWQ3NjYwOjJkMzMyZmQwLTY4YjktNWJjOS04ZWQyLTkyNjRlYjIxYzg4NQ==","transcript":{"aa_change":"R748T","annotation":{"hgvsc":"c.2243G>C","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":true,"transcript_id":"ENST00000287727"}}}]}},"cosmic_id":["COSM3805540"],"end_position":52263837,"genomic_dna_change":"chr1:g.52263837G>C","id":"U3NtOjA5MGJhMDY1LWZkYzMtNWVlMC1iNWI0LWVlNGNhZTlkNzY2MCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"090ba065-fdc3-5ee0-b5b4-ee4cae9d7660","start_position":52263837}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OmE4NmE3YjNmLWU3YjItNTFhYi05ZWM1LTc5MjU2ZjRmNGFhMQ==","transcript":{"aa_change":"R33R","annotation":{"hgvsc":"c.99T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000370893"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OmEyMjU4NjZhLTQ5NzctNTlmNy1hOGMzLTU1MzZiYjZlNzFlOA==","transcript":{"aa_change":"R33R","annotation":{"hgvsc":"c.99T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000370899"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OjA1ZTNhODljLWQ0YmYtNTJlOS1hYmY0LTcyNjk1MDUwZmEyYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.125T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000533006"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OjYyNDMyNWVmLWM1YzEtNTlkNi04YzhhLThkNjVjZmZmOTIwNQ==","transcript":{"aa_change":"R33R","annotation":{"hgvsc":"c.99T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000370895"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OmI4MWNmNGJiLTIxNmYtNTQ3MS1hYzI5LWJjOTI1MTFmYjQwNA==","transcript":{"aa_change":"R46R","annotation":{"hgvsc":"c.138T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":true,"transcript_id":"ENST00000557284"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OmQwZTQxYjU5LWM4Y2QtNWQzOC1iMGU4LTZmZjkyNGJlN2FiMw==","transcript":{"aa_change":"R33R","annotation":{"hgvsc":"c.99T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000534632"}}}]}},"cosmic_id":["COSM682195"],"end_position":74199680,"genomic_dna_change":"chr1:g.74199680T>C","id":"U3NtOjA5MmM2MjY2LTRlMTctNTA0ZC04NTgzLWI5ZDI5Y2E3ZDcxOSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"092c6266-4e17-504d-8583-b9d29ca7d719","start_position":74199680}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGEzMjBkYmUtOTdkNC01ZmJlLWEyMTUtNzg4NDVjYzQ4ZmMzOjJhMzA0ZDY0LWE4YTgtNTI5Zi1hYTUzLTJmNzlmMzg0YjA0NA==","transcript":{"aa_change":"R110W","annotation":{"hgvsc":"c.328C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.843,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162409","gene_strand":1,"symbol":"PRKAA2"},"is_canonical":true,"transcript_id":"ENST00000371244"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGEzMjBkYmUtOTdkNC01ZmJlLWEyMTUtNzg4NDVjYzQ4ZmMzOjVkMWVlNjFhLTNlZDAtNWI5Ni1iNmUwLTUxOGQ1OTc0YzM3Yw==","transcript":{"aa_change":"R110W","annotation":{"hgvsc":"c.328C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.825,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162409","gene_strand":1,"symbol":"PRKAA2"},"is_canonical":false,"transcript_id":"ENST00000610361"}}}]}},"cosmic_id":null,"end_position":56691485,"genomic_dna_change":"chr1:g.56691485C>T","id":"U3NtOjBhMzIwZGJlLTk3ZDQtNWZiZS1hMjE1LTc4ODQ1Y2M0OGZjMyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0a320dbe-97d4-5fbe-a215-78845cc48fc3","start_position":56691485}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjQ5YWQ2ZmYzLWE1Y2MtNTg3Ni1iZWQzLTFmZjllNGE2MmE0ZQ==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000371060"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOmEyMTE3NzUzLWJiMjgtNTEzZS04NGI3LTEyOWZhODAwNWMyZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-389C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000406510"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOmRhOTM4MDkwLWY4ZDEtNWFkNi1hZjhhLWMwMjcyNmYzYzI2Mg==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000371059"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjZlMTNkMDQ0LWU2ODItNTM1OC1hY2RlLWNkMjkyN2MyOTE3NA==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000344610"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjNlYzRjYmNiLTcyZDUtNTFkMi04YWM4LWY1MjdmZjMxOTNlZA==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000616738"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjEyY2JmZTNkLTI2ODAtNTE3Ni05OGUyLTJmZmQ1NGRlNjE0YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.382C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000462765"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOmIxYTM1YWY2LTRhNjgtNTllYy04ZmU3LTllNTUzMWE1NjZkYw==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000371058"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjAxMTNlZjViLTBhY2ItNTFjMC04YjdhLWYwNjUwNTkxM2VhZQ==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.001,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":true,"transcript_id":"ENST00000349533"}}}]}},"cosmic_id":["COSM6005812","COSM6005813","COSM6005814","COSM6005815"],"end_position":65570664,"genomic_dna_change":"chr1:g.65570664C>T","id":"U3NtOjBhOTgyZDU1LWU1MTAtNTM4Yi05MmRkLWYzYWViY2QyZDk1ZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0a982d55-e510-538b-92dd-f3aebcd2d95d","start_position":65570664}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOmU4ODFkZTMzLTEzZTctNWQ3MC04ZDIzLTI2ZjkzMzYyMzNiNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3671G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000466440"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOjM5N2Q2ZTc2LTg1Y2EtNTMyMy1hNmNjLTcyZmE4YzBlNjgzYw==","transcript":{"aa_change":"R81Q","annotation":{"hgvsc":"c.241G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.629,"sift_impact":"tolerated_low_confidence","sift_score":0.64,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000494469"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOjllNjc3MTQ2LWNlOWYtNTU5MS04ODI5LTNiY2FmMzk5YWE1OQ==","transcript":{"aa_change":"R77Q","annotation":{"hgvsc":"c.228G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.562,"sift_impact":"tolerated_low_confidence","sift_score":0.82,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000528457"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOjNlMGJiZTEyLWQ3YzItNTBjOS04MGJjLWRiNjVhZDU4ZDY0MA==","transcript":{"aa_change":"R38Q","annotation":{"hgvsc":"c.113G>A","polyphen_impact":"benign","polyphen_score":0.003,"sift_impact":"tolerated_low_confidence","sift_score":0.84,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000527941"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOjg5N2QxODY0LTBiY2EtNTc2Ni05NjVjLWUyZDgwNmI4Y2YwZA==","transcript":{"aa_change":"R1575Q","annotation":{"hgvsc":"c.4724G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.47,"sift_impact":"tolerated_low_confidence","sift_score":0.81,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":true,"transcript_id":"ENST00000257177"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOmY4NTI5MzE2LWU2M2EtNWI1ZC1iMzUwLTFlNjc5ZjhmYjJjNA==","transcript":{"aa_change":"R28Q","annotation":{"hgvsc":"c.82G>A","polyphen_impact":"benign","polyphen_score":0.06,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000471623"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOmI4NDhhYzc5LTdmNjYtNTVlMy04MTdlLTAwMGE3YjYzMTE1NA==","transcript":{"aa_change":"R1574Q","annotation":{"hgvsc":"c.4721G>A","polyphen_impact":"benign","polyphen_score":0.003,"sift_impact":"tolerated_low_confidence","sift_score":0.81,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000371544"}}}]}},"cosmic_id":["COSM910669"],"end_position":52425495,"genomic_dna_change":"chr1:g.52425495C>T","id":"U3NtOjBhYzBmMDY0LTNjYjUtNTQ2NC04ZTRiLTRjYzdjYmZiNjI0MiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0ac0f064-3cb5-5464-8e4b-4cc7cbfb6242","start_position":52425495}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFkMDFhODgtNDJiOC01Y2JjLWFkYTYtZmM5ZDkyYzZmZDgyOmQ0OGY4ZmQ4LTUyOWEtNTg2MS1iNzRhLTQ0NTE5MWVjNTdjMQ==","transcript":{"aa_change":"L176F","annotation":{"hgvsc":"c.528G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.12,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085840","gene_strand":-1,"symbol":"ORC1"},"is_canonical":true,"transcript_id":"ENST00000371568"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFkMDFhODgtNDJiOC01Y2JjLWFkYTYtZmM5ZDkyYzZmZDgyOmIzNTJhZDg3LTU2YmMtNTk2NS1iOWY1LWViZWUxNWFlY2QxYg==","transcript":{"aa_change":"L176F","annotation":{"hgvsc":"c.528G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.12,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085840","gene_strand":-1,"symbol":"ORC1"},"is_canonical":false,"transcript_id":"ENST00000371566"}}}]}},"cosmic_id":["COSM3805545"],"end_position":52396239,"genomic_dna_change":"chr1:g.52396239C>A","id":"U3NtOjBhZDAxYTg4LTQyYjgtNWNiYy1hZGE2LWZjOWQ5MmM2ZmQ4MiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0ad01a88-42b8-5cbc-ada6-fc9d92c6fd82","start_position":52396239}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2MjYxYzYtZTE1YS01ZDYyLTkwNmQtYWE4Zjg1NWEzMThhOmU4NDZkYTczLTZlMTctNTcyZC04NDQ3LWQ5NWU1OGFhNTgyMg==","transcript":{"aa_change":"E198Q","annotation":{"hgvsc":"c.592G>C","polyphen_impact":"benign","polyphen_score":0.374,"sift_impact":"tolerated","sift_score":0.17,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132855","gene_strand":1,"symbol":"ANGPTL3"},"is_canonical":true,"transcript_id":"ENST00000371129"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2MjYxYzYtZTE1YS01ZDYyLTkwNmQtYWE4Zjg1NWEzMThhOjExMjY1MGVkLTkyMDktNWQwZC1iNGE2LTIwZDY4ZTVkOGI2Yw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000132855","gene_strand":1,"symbol":"ANGPTL3"},"is_canonical":false,"transcript_id":"ENST00000493994"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2MjYxYzYtZTE1YS01ZDYyLTkwNmQtYWE4Zjg1NWEzMThhOmM1NjQwNzIxLTc5N2ItNTQ3OS05MGYwLWRhMTg0NmVhNWJkMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000132855","gene_strand":1,"symbol":"ANGPTL3"},"is_canonical":false,"transcript_id":"ENST00000482591"}}}]}},"cosmic_id":["COSM3805724"],"end_position":62598792,"genomic_dna_change":"chr1:g.62598792G>C","id":"U3NtOjBiNjI2MWM2LWUxNWEtNWQ2Mi05MDZkLWFhOGY4NTVhMzE4YSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0b6261c6-e15a-5d62-906d-aa8f855a318a","start_position":62598792}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjBmZTEyNWEwLTE3Y2YtNWNmYi1hZjQ3LTYwODJiODYwNzg5OA==","transcript":{"aa_change":"S531*","annotation":{"hgvsc":"c.1592C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000414851"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjUzOWI5OWI3LWRkNDUtNWVhNC05ZjAwLTc1NjZiZjg4YmU3Yg==","transcript":{"aa_change":"S564*","annotation":{"hgvsc":"c.1691C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000371231"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjgyYjQxODAxLTFiNjctNTU2Ni05YWQ1LTEyNTU4MjU3NDA0Yw==","transcript":{"aa_change":"S529*","annotation":{"hgvsc":"c.1586C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000420954"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjUyOTQ1MjYxLTg3MTQtNTdlNi04ZjQzLWEzNTNlMzkwMWU4Ng==","transcript":{"aa_change":"S531*","annotation":{"hgvsc":"c.1592C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":true,"transcript_id":"ENST00000371236"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOmRkNTIyNWU2LTcwYTktNTg4OC05NGNhLTU2NWFkYTgyMGE5Mw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2347C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000485760"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjBjNWYzODliLTJmYTEtNTJkNy04NjcyLWU1ZTk4ZmUwMzUwNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000371232"}}}]}},"cosmic_id":null,"end_position":57010771,"genomic_dna_change":"chr1:g.57010771G>C","id":"U3NtOjBiNjYxY2YzLWIxMzYtNTNhYi1hZmU4LTY1M2RlNzdhMzljZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0b661cf3-b136-53ab-afe8-653de77a39cd","start_position":57010771}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMxNDZhYjgtMGMwNi01YmE1LWJiNjktNTc2YzQzYjRmMGYwOjlmNjFlNDVlLWJlYjktNTEyNS1hMzExLWM5NTI5NzRlMDY4Yg==","transcript":{"aa_change":"M543I","annotation":{"hgvsc":"c.1629G>A","polyphen_impact":"benign","polyphen_score":0.003,"sift_impact":"tolerated","sift_score":0.07,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":true,"transcript_id":"ENST00000290039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMxNDZhYjgtMGMwNi01YmE1LWJiNjktNTc2YzQzYjRmMGYwOjVmMWQ3ZWYwLTJkOTktNTNmNi1iNmJhLTBhNTAwMWNlNDg5MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2012G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000495994"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMxNDZhYjgtMGMwNi01YmE1LWJiNjktNTc2YzQzYjRmMGYwOjEzMWY2YmFkLTExZDUtNTQwNy04YmE3LWQ1NjI4NjA2ZjQ3MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1720G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000470527"}}}]}},"cosmic_id":["COSM426581","COSM5832652"],"end_position":64654803,"genomic_dna_change":"chr1:g.64654803G>A","id":"U3NtOjBjMTQ2YWI4LTBjMDYtNWJhNS1iYjY5LTU3NmM0M2I0ZjBmMCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0c146ab8-0c06-5ba5-bb69-576c43b4f0f0","start_position":64654803}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMyNTBmNjYtNzU5NC01Mzc4LThiZDEtYzE3YTI1ZWNmMmZkOjE4OWVjZTdiLTY1OTUtNWY4My04YWM1LTRiMGQzN2ViNzU0ZA==","transcript":{"aa_change":"R157W","annotation":{"hgvsc":"c.469C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.586,"sift_impact":"tolerated","sift_score":0.17,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116133","gene_strand":-1,"symbol":"DHCR24"},"is_canonical":false,"transcript_id":"ENST00000535035"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMyNTBmNjYtNzU5NC01Mzc4LThiZDEtYzE3YTI1ZWNmMmZkOmRjOGVlYzNkLTVhYWUtNWJlNy04OGNiLTQ5ZmE1NDhmMGEyNg==","transcript":{"aa_change":"R246W","annotation":{"hgvsc":"c.736C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.586,"sift_impact":"tolerated","sift_score":0.17,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116133","gene_strand":-1,"symbol":"DHCR24"},"is_canonical":true,"transcript_id":"ENST00000371269"}}}]}},"cosmic_id":["COSM4009006"],"end_position":54871490,"genomic_dna_change":"chr1:g.54871490G>A","id":"U3NtOjBjMjUwZjY2LTc1OTQtNTM3OC04YmQxLWMxN2EyNWVjZjJmZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0c250f66-7594-5378-8bd1-c17a25ecf2fd","start_position":54871490}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM0ZTE3YTYtNzYyZS01ZmM0LTlhM2EtYWMxZDIxMjRjOTc4OjRhMzRkNmE5LTkxNjEtNTg2ZS05MjRjLTllNWQyMjQwYjczOQ==","transcript":{"aa_change":"Y946Y","annotation":{"hgvsc":"c.2838C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":true,"transcript_id":"ENST00000371069"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM0ZTE3YTYtNzYyZS01ZmM0LTlhM2EtYWMxZDIxMjRjOTc4OjY3OTUzMTBlLTM1NGQtNTRjNi1hMzM0LWNmYWY4ZGM0YjZhYg==","transcript":{"aa_change":"Y889Y","annotation":{"hgvsc":"c.2667C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000395325"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM0ZTE3YTYtNzYyZS01ZmM0LTlhM2EtYWMxZDIxMjRjOTc4OmY2N2ZmZTVkLTYwY2EtNTliMC1hNDQyLTkwNGVkYWRmNDI0Zg==","transcript":{"aa_change":"Y876Y","annotation":{"hgvsc":"c.2628C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000263441"}}}]}},"cosmic_id":null,"end_position":65412950,"genomic_dna_change":"chr1:g.65412950C>T","id":"U3NtOjBjNGUxN2E2LTc2MmUtNWZjNC05YTNhLWFjMWQyMTI0Yzk3OCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0c4e17a6-762e-5fc4-9a3a-ac1d2124c978","start_position":65412950}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM1MzkwOTEtMWM1YS01ZmMxLWFmZTktODM0YTRhNDIzODc0OmZiNTFlZTZlLWE2MWItNTY2OC1hYjNjLTZhMjQ4NWUxYWRmMg==","transcript":{"aa_change":"V248F","annotation":{"hgvsc":"c.742G>T","polyphen_impact":"probably_damaging","polyphen_score":0.932,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085832","gene_strand":-1,"symbol":"EPS15"},"is_canonical":false,"transcript_id":"ENST00000371730"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM1MzkwOTEtMWM1YS01ZmMxLWFmZTktODM0YTRhNDIzODc0OjkwNTg5MzEyLTZlOWEtNWQwMy05NDg1LTMwZjhlODQzNDllZQ==","transcript":{"aa_change":"V248F","annotation":{"hgvsc":"c.742G>T","polyphen_impact":"probably_damaging","polyphen_score":0.921,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085832","gene_strand":-1,"symbol":"EPS15"},"is_canonical":true,"transcript_id":"ENST00000371733"}}}]}},"cosmic_id":["COSM426422"],"end_position":51447015,"genomic_dna_change":"chr1:g.51447015C>A","id":"U3NtOjBjNTM5MDkxLTFjNWEtNWZjMS1hZmU5LTgzNGE0YTQyMzg3NCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0c539091-1c5a-5fc1-afe9-834a4a423874","start_position":51447015}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmI1YTg3MDhkLTU2YmEtNTM3NS04NmUzLTFhNThmMjA5ZmNhZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.149+6566C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000479364"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmRhZjJkMWMxLWY1YmItNTUxYy1hNjQ3LTllOWIzODI0OTYwMQ==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000403491"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmY4ZTdmYzc4LTBhM2UtNTU4OS1iMWQ3LWMzY2MwODI4M2NjYw==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000371185"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmFkOThiOTgzLWY2MzQtNThhMi04ZTI0LTRjOWUzM2M5OGY3OQ==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000371184"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmZlODg2ZjllLTdhODgtNTkxMi1iNzg0LTJjYzQ0ZWFkZGI4ZA==","transcript":{"aa_change":"L112L","annotation":{"hgvsc":"c.336C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000407417"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOjc0ZDYxMWQ0LTVjOWItNWRmOC04YjhkLTY2YTY5Y2E4Nzg1Yg==","transcript":{"aa_change":"L24L","annotation":{"hgvsc":"c.70C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000496712"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmM4OWViNTYzLWRmZTctNTE3Mi1iNmE2LWQzYmJiMzI1MDljNQ==","transcript":{"aa_change":"L165L","annotation":{"hgvsc":"c.495C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":true,"transcript_id":"ENST00000371189"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOjkxZmM4NzFlLThhZGItNTIyMC04ODY2LTZlM2IzZTg3M2YwMQ==","transcript":{"aa_change":"L143L","annotation":{"hgvsc":"c.429C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000371191"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmE2MTQyNzllLTM5N2UtNTgzMC1hY2NmLWIwODBjMmM3MzU0Mw==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000485903"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOjY3ODJkNDI2LWM0ZjYtNTFmYi1hNWUyLWU1ODFiZTc1NDljNQ==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000371187"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOjEzMWYxNGU4LTg5ZjktNTA2My05OTBlLTczNzMzZWIwMjk0Mg==","transcript":{"aa_change":"L73L","annotation":{"hgvsc":"c.219C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000476646"}}}]}},"cosmic_id":["COSM4834830","COSM4834831","COSM4834832"],"end_position":61088481,"genomic_dna_change":"chr1:g.61088481C>T","id":"U3NtOjBkNGNhM2E0LWZmODYtNWM2Yi1iYzZmLTFiZmI5MDdmOTRlZSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0d4ca3a4-ff86-5c6b-bc6f-1bfb907f94ee","start_position":61088481}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOjI0NTgyZWI1LTU5N2EtNTAxMC05MDhkLWM3MjcwODZlMzk3OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.3381+6978A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000613764"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmE3N2M2NjZmLWNhMDItNTg0ZS04MjRiLTA2NmUwM2M1MDY1MQ==","transcript":{"aa_change":"G1149G","annotation":{"hgvsc":"c.3447A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000316485"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmIzOTEyNjJjLTRlZmUtNWZiZi1iM2RhLTk2N2QwMjcxZTUxNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.66A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000494842"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmQwY2Y3MmJiLWY0ZGEtNTEzZi05MmZlLWFiNzNjNGM3MTBiOQ==","transcript":{"aa_change":"G608G","annotation":{"hgvsc":"c.1824A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484937"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmVhMTA4ZTc3LTgwODEtNTdhMy1hY2E0LWIxNjBhNDRkZjRjNw==","transcript":{"aa_change":"G1149G","annotation":{"hgvsc":"c.3447A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":true,"transcript_id":"ENST00000371158"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOjBiZTRjODE1LTAzZGItNTE2Mi05YzBhLTI1ZjY3ZjRjNjMzZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3561A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484562"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmI5MmI4YmZiLWE0NGUtNTFjYi04YjAxLTY2NGE4YTZlNjYyZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3561A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000459752"}}}]}},"cosmic_id":["COSM3805692"],"end_position":61908437,"genomic_dna_change":"chr1:g.61908437A>G","id":"U3NtOjBkNGZhMGZlLWIzM2ItNTlmMS1hZTJlLTQxYzAwMzcxYjFkYiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"0d4fa0fe-b33b-59f1-ae2e-41c00371b1db","start_position":61908437}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ3ODU5YzItYjM2Zi01MTA4LTg4YzAtZGYyOGM0MGM2NzA2OjUwMDIwY2U3LTU5YTUtNWE4NS1hYWM0LWU5OTFhODc2MjAwMQ==","transcript":{"aa_change":"K1090Q","annotation":{"hgvsc":"c.3268A>C","polyphen_impact":"benign","polyphen_score":0.018,"sift_impact":"deleterious","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":true,"transcript_id":"ENST00000342505"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ3ODU5YzItYjM2Zi01MTA4LTg4YzAtZGYyOGM0MGM2NzA2OjBkM2EyM2E4LTMxZDMtNTlmZi04OThmLTZiNjExYzBlMzE5MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000481702"}}}]}},"cosmic_id":["COSM426587"],"end_position":64835497,"genomic_dna_change":"chr1:g.64835497T>G","id":"U3NtOjBkNzg1OWMyLWIzNmYtNTEwOC04OGMwLWRmMjhjNDBjNjcwNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"0d7859c2-b36f-5108-88c0-df28c40c6706","start_position":64835497}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGRhMDYyYjItYjkxZC01MzZjLTgzMzMtZDU0OGE0YTAxYWExOjQyYmIwNGM0LWZkZDctNTY5My04MzFhLWNlMWI5ZDUyODFmNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*3C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":true,"transcript_id":"ENST00000354431"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGRhMDYyYjItYjkxZC01MzZjLTgzMzMtZDU0OGE0YTAxYWExOjVlOTUzNjhmLTFiN2EtNWQ3ZS04YTc2LTY4MTJlZDU0OGI5Yw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*3C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000395089"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGRhMDYyYjItYjkxZC01MzZjLTgzMzMtZDU0OGE0YTAxYWExOjAzYjEyOTQzLWUxZjAtNWNmOS1iNGM0LTFmMzQ5YjcwNDYxZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*107C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000417067"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGRhMDYyYjItYjkxZC01MzZjLTgzMzMtZDU0OGE0YTAxYWExOjdmNzM2YmVlLTBiYWItNWE1Yy1hMDNkLWE4NmNiZjQxOWM5ZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*2863C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000415760"}}}]}},"cosmic_id":null,"end_position":74026810,"genomic_dna_change":"chr1:g.74026810G>C","id":"U3NtOjBkYTA2MmIyLWI5MWQtNTM2Yy04MzMzLWQ1NDhhNGEwMWFhMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0da062b2-b91d-536c-8333-d548a4a01aa1","start_position":74026810}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjY4Yjk2MDE3LTBhYTktNWE2Ny1iNDU1LWU5ZDVmMWJhYzkxNg==","transcript":{"aa_change":"R853Dfs*13","annotation":{"hgvsc":"c.2556_2557insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000371454"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjljMDZlZDZkLWJhODctNWFiZS05YWJhLWY2NDQ2ODI1YWQ3MQ==","transcript":{"aa_change":"R853Dfs*13","annotation":{"hgvsc":"c.2556_2557insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":true,"transcript_id":"ENST00000306052"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjE3YjM0YTY4LThlNDItNWZjNC04ODI2LWNiN2Y5MDAyZTU1OA==","transcript":{"aa_change":"R649Dfs*13","annotation":{"hgvsc":"c.1944_1945insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000354412"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OmE3YThkYTI3LTkyNmUtNWM4NS05ZDM0LWQ0MzBhOTkyNWUxZg==","transcript":{"aa_change":"R406Dfs*13","annotation":{"hgvsc":"c.1215_1216insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000465675"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjI5MmQ2MWQwLTM1NTctNTMwYS05NTcyLTQxZTEzODA1M2QzYw==","transcript":{"aa_change":"R683Dfs*13","annotation":{"hgvsc":"c.2046_2047insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000347547"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OmU4NTEwNTkwLTNkNTYtNTU4MC04YmEyLTJkZTJlMzA3MGQ1Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1498_*1499insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000480045"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjI3ODI5NGI5LWY2MmItNWRhOC1iODM4LTljMTQ1NmUyMDRiYQ==","transcript":{"aa_change":"R648Dfs*13","annotation":{"hgvsc":"c.1941_1942insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000613948"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OmQ4ZDBlY2JhLWU5MDgtNTNmZC04ODg4LTJhOWQ3YTlmMzI2OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3255_3256insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000459674"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OmVkZTI3ZWU2LTFlY2QtNWY2MC04MWVlLTI3OWUyZjg3ZDgzNw==","transcript":{"aa_change":"R70Dfs*13","annotation":{"hgvsc":"c.206_207insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000529670"}}}]}},"cosmic_id":null,"end_position":53250810,"genomic_dna_change":"chr1:g.53250809_53250810insTCCTTCCGTC","id":"U3NtOjBlMDJjNGY3LWE1YTQtNTAyNS1hNDAzLTQ4ZmY3NmI1NGM0NiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small insertion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"-","score":1,"ssm_id":"0e02c4f7-a5a4-5025-a403-48ff76b54c46","start_position":53250809}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDRjNGUtODlkMi01NGQxLWI2MDAtYTdkNGMwN2Q1ZWNhOjk1Mjk3OWQwLTM1MDEtNWFmYi04ODQ5LTVkM2RmMGNiOWE0Mw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-181G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000123080","gene_strand":1,"symbol":"CDKN2C"},"is_canonical":false,"transcript_id":"ENST00000371761"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDRjNGUtODlkMi01NGQxLWI2MDAtYTdkNGMwN2Q1ZWNhOjlhNjliMjljLTVlNWQtNTI2Ny1hNDZkLTEyODc5Y2U2YzM0OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-11-170G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000123080","gene_strand":1,"symbol":"CDKN2C"},"is_canonical":true,"transcript_id":"ENST00000262662"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDRjNGUtODlkMi01NGQxLWI2MDAtYTdkNGMwN2Q1ZWNhOjkyZTk4NzM0LWRmNzItNTljZi1hZTc1LWQ3YWE5OTBjM2NjYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-11-170G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000123080","gene_strand":1,"symbol":"CDKN2C"},"is_canonical":false,"transcript_id":"ENST00000396148"}}}]}},"cosmic_id":null,"end_position":50970188,"genomic_dna_change":"chr1:g.50970188G>C","id":"U3NtOjBlNmQ0YzRlLTg5ZDItNTRkMS1iNjAwLWE3ZDRjMDdkNWVjYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0e6d4c4e-89d2-54d1-b600-a7d4c07d5eca","start_position":50970188}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjVmYjg4NWJjLTYwMjItNTA1Ni04M2VhLTY5NjVjNjI0MjliZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.3382-48237A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000613764"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjYyMzQ5MTA5LThkNzctNTk5OS04MTNiLWExMDhmMmZlNzVhMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3854A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484562"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjQ0NTBiOTkyLTA2ODEtNWM0ZS04MTRhLWYzYjA5MGIzY2RjZg==","transcript":{"aa_change":"N1247T","annotation":{"hgvsc":"c.3740A>C","polyphen_impact":"possibly_damaging","polyphen_score":0.563,"sift_impact":"tolerated","sift_score":0.15,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000316485"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjI0MjUzMTg1LTMwOGMtNWIyOS05MmJjLWI1NDM0MGYxNTJmMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.359A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000494842"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OmRmYWNiMDk0LTcyNjAtNTI4Yi1hZTc1LTgwYzk1NTEwNjJmMg==","transcript":{"aa_change":"N706T","annotation":{"hgvsc":"c.2117A>C","polyphen_impact":"possibly_damaging","polyphen_score":0.786,"sift_impact":"tolerated","sift_score":0.26,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484937"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OmQ2Nzk2ZDIwLTkxYjktNWNiZi1hZWE5LWZkZjAxYzJmMjI1ZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3854A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000459752"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OmU1OTlhY2JkLTg4ZTItNWUzNC05ZjcwLTIxOWIwZTNiNTA4Mg==","transcript":{"aa_change":"N1247T","annotation":{"hgvsc":"c.3740A>C","polyphen_impact":"possibly_damaging","polyphen_score":0.905,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":true,"transcript_id":"ENST00000371158"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OmM4Yzc5ZGM4LWJmODYtNTQ5Mi04MTdmLTJlYmM1NDUwMWFkYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.172A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000490547"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjQ1OWQwOTNhLTcwMjYtNTBlNi1hZTI4LWI4ZjgyOTg3NzlkMA==","transcript":{"aa_change":"N31T","annotation":{"hgvsc":"c.92A>C","polyphen_impact":"benign","polyphen_score":0.181,"sift_impact":"tolerated","sift_score":0.33,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000307297"}}}]}},"cosmic_id":null,"end_position":61990237,"genomic_dna_change":"chr1:g.61990237A>C","id":"U3NtOjBlNmQ4Nzg2LTZiNTktNThhYy05ZmFlLTkzOTliYTEyYjU4OCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"0e6d8786-6b59-58ac-9fae-9399ba12b588","start_position":61990237}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZjYjRkMGUtM2I4ZS01Njk1LTk0NDgtNmQ1NDRlOTViZGI4OjBjNTQ0YWZkLTg5OTMtNTk5My1hNzU3LWIzOTQ4MTkwNzcxYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.2393-3T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000237247"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZjYjRkMGUtM2I4ZS01Njk1LTk0NDgtNmQ1NDRlOTViZGI4OjdlNGQzNjE2LTYwMmMtNWNjMC05YTcwLThmOTdiOThmZjI0NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1709-3T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000371039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZjYjRkMGUtM2I4ZS01Njk1LTk0NDgtNmQ1NDRlOTViZGI4OjE4YTc2Y2EwLTdkNjMtNTFjYi1iMzkyLTBiYTBiYmY4NjQwYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.2300-3T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":true,"transcript_id":"ENST00000371037"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZjYjRkMGUtM2I4ZS01Njk1LTk0NDgtNmQ1NDRlOTViZGI4OjNjMDFlYjA4LTBlYWMtNTRmMS04OTNlLTRmNDg4YmE2ZGY2Nw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.815-3T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000435165"}}}]}},"cosmic_id":null,"end_position":66741269,"genomic_dna_change":"chr1:g.66741269T>A","id":"U3NtOjBmY2I0ZDBlLTNiOGUtNTY5NS05NDQ4LTZkNTQ0ZTk1YmRiOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"0fcb4d0e-3b8e-5695-9448-6d544e95bdb8","start_position":66741269}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2Ojg3MmUxYWM3LTRiMmYtNWJkYi1iZmZlLTQ3NDA1YjQyY2YxZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000494789"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OmQ2ZDJjZTMzLTNkNjYtNTQ5MS04NWQ2LWIyY2QwN2NiYjU4Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000460261"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OjgwNmMwZGZkLTQ4ODUtNWM4ZC04OGUxLWJhNGQ0MDI1ODllYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000450942"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OjA0MGJjNjIwLWZmZGItNWM3Yy1iNzM2LTE2Njk4NDBlYTQwZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000438021"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OmRjM2Q3ZDJlLWI2OTktNWJjMS05ZDVkLWEyMmRmODIxMmMzMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.355G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000491136"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OjJmZjRkOTk1LTYyOTYtNWFlMy1iZGZkLTlmZjU1MjRhZTI2NA==","transcript":{"aa_change":"D85H","annotation":{"hgvsc":"c.253G>C","polyphen_impact":"probably_damaging","polyphen_score":0.991,"sift_impact":"tolerated","sift_score":0.05,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000284376"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OmZiOWI0ZjY1LTQ0Y2EtNWQ5NC04NDdhLWY2NzdhZjM2MTdjMQ==","transcript":{"aa_change":"D85H","annotation":{"hgvsc":"c.253G>C","polyphen_impact":"probably_damaging","polyphen_score":0.987,"sift_impact":"tolerated","sift_score":0.05,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":true,"transcript_id":"ENST00000371586"}}}]}},"cosmic_id":["COSM3805541"],"end_position":52361578,"genomic_dna_change":"chr1:g.52361578C>G","id":"U3NtOjBmZGI3ZjM3LTU2OGEtNWZlYS04MWFkLWIxMzJlN2QyZmEwNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0fdb7f37-568a-5fea-81ad-b132e7d2fa06","start_position":52361578}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjE0NDkzNjE5LTE4NGEtNTJhZi1hNTk2LWU1ZGNhODBkOWQwZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000527864"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjIxZGVjMTU0LTI2NWItNWExZS1hYzM2LTI5ZGQ3ZjJiMzNiMw==","transcript":{"aa_change":"R158G","annotation":{"hgvsc":"c.472C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000262348"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4Ojg4ZDIyYzA4LTNmNWQtNWIyNS1iNjgwLTAwODU1NTY5ZTRhNg==","transcript":{"aa_change":"R113G","annotation":{"hgvsc":"c.337C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000471243"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjlhZjkyY2E1LWQ3ODYtNWQ4MS05NWUxLTc0OTBjOGE1NmFlMw==","transcript":{"aa_change":"R156G","annotation":{"hgvsc":"c.466C>G","polyphen_impact":"probably_damaging","polyphen_score":1,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":true,"transcript_id":"ENST00000354777"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjNhYjI1ODg0LTIzZDktNWMyZS05NzljLWJhZTJlYTQ2MDMzNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*390C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000491076"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OmUzNTI1NDQ0LWFhNWEtNTY4MC1iZDY5LTBiOWE5N2ZkNGVhZA==","transcript":{"aa_change":"R61G","annotation":{"hgvsc":"c.180C>G","polyphen_impact":"probably_damaging","polyphen_score":1,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000534713"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OmE3ODkzYzNkLTMwYmEtNWRiNC05OGEyLTkyNDFmZmVhZTdhNA==","transcript":{"aa_change":"R67G","annotation":{"hgvsc":"c.199C>G","polyphen_impact":"probably_damaging","polyphen_score":0.934,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000370976"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjNlYzAyYmQ3LTcxNWItNWVkNy04ZWIxLWI5OGJmYWU3OGZiNQ==","transcript":{"aa_change":"R25G","annotation":{"hgvsc":"c.73C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000533537"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjVlNzE4ZjFlLThkOTYtNWI3OS1hMGJlLWFlYTQzMzExMDc4NA==","transcript":{"aa_change":"R113G","annotation":{"hgvsc":"c.337C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000530486"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4Ojk4ZDk4ZTBjLTA1NGUtNWZlNy05Zjg3LTJiYmMxZTVmYmExYg==","transcript":{"aa_change":"R25G","annotation":{"hgvsc":"c.73C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000370973"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjVhNmM1YmEyLTQ0ZDItNTBlNS1hM2U4LTEzN2VlZDQ2ZWU0Yw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000491811"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4Ojg4YjFjNTk5LTQ0YTItNTJjNC04MTc1LTQ3N2YxY2Q2NzZiNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.153C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000497187"}}}]}},"cosmic_id":["COSM426636","COSM426637"],"end_position":68159155,"genomic_dna_change":"chr1:g.68159155G>C","id":"U3NtOjBmZTQwMzA5LTEwMTUtNTEyYS1iNGUzLTNlN2FlZTA1ZDIwOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0fe40309-1015-512a-b4e3-3e7aee05d208","start_position":68159155}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlOWFlYzItMzUzOS01M2M3LWFkOGMtYjBhYzI5MTUwNmM4OjcxZjcwNDgzLTI2ZGItNTIwOS04MjhhLWNiNjQ5MmY5OGU1ZA==","transcript":{"aa_change":"L1388L","annotation":{"hgvsc":"c.4164G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162402","gene_strand":-1,"symbol":"USP24"},"is_canonical":true,"transcript_id":"ENST00000294383"}}}]}},"cosmic_id":["COSM3805629","COSM3805630"],"end_position":55123559,"genomic_dna_change":"chr1:g.55123559C>T","id":"U3NtOjBmZTlhZWMyLTM1MzktNTNjNy1hZDhjLWIwYWMyOTE1MDZjOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0fe9aec2-3539-53c7-ad8c-b0ac291506c8","start_position":55123559}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOmYwMDI2MzZlLWFkNjAtNTQyOC1hMWU3LWQ3NDQzYzc0MDEwNA==","transcript":{"aa_change":"D42N","annotation":{"hgvsc":"c.124G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.539,"sift_impact":"tolerated_low_confidence","sift_score":0.38,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000539524"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjYxMjQ2NjI2LWViM2ItNWYyMC05OWJiLWIwZDI5M2Y4ZDMzNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000475715"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjQ0NTcwZGQxLTA4NDAtNTU3Ny1hMWVhLWRkODE0ZjUzNTNkYQ==","transcript":{"aa_change":"D174N","annotation":{"hgvsc":"c.520G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.539,"sift_impact":"tolerated_low_confidence","sift_score":0.3,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":true,"transcript_id":"ENST00000354831"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjI5MzM4ZWRlLTY0YmMtNWYwNy04MGY1LWNlNmE0N2Y2YzE1NQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.119G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000485608"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjJlNTY3OTkyLWU2NDUtNWNkYy1iNWM0LWZkNDMzNGUyOGI4NA==","transcript":{"aa_change":"D174N","annotation":{"hgvsc":"c.520G>A","polyphen_impact":"benign","polyphen_score":0.001,"sift_impact":"tolerated","sift_score":0.24,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000615102"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOmFiZmZhYjVmLWYxYjctNTQ1ZS1hYjdkLWU3N2EzMzAzZThkNA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.676G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000491410"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjU2NDI0ZWFjLTEwZTctNTJhYi04ZGU3LTNmZDU5ZjkyMDM1Mg==","transcript":{"aa_change":"D174N","annotation":{"hgvsc":"c.520G>A","polyphen_impact":"benign","polyphen_score":0.028,"sift_impact":"tolerated","sift_score":0.23,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000544028"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOmVmZmQxNDk4LTY5MjMtNThhOC04NmUzLWY3NjM4YTRkOGUxMA==","transcript":{"aa_change":"D174N","annotation":{"hgvsc":"c.520G>A","polyphen_impact":"benign","polyphen_score":0.007,"sift_impact":"tolerated","sift_score":0.26,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000352171"}}}]}},"cosmic_id":null,"end_position":51840336,"genomic_dna_change":"chr1:g.51840336C>T","id":"U3NtOjBmZjQzOTIwLWZjYzItNTJhYS1hNTU5LTUzZWZlYzE2NWMyZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0ff43920-fcc2-52aa-a559-53efec165c2f","start_position":51840336}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOjJkYzhlYTNiLWEzMjgtNTZjZS1iNzgzLWMyMTJjZGZiMjJlNw==","transcript":{"aa_change":"R428Q","annotation":{"hgvsc":"c.1283G>A","polyphen_impact":"benign","polyphen_score":0,"sift_impact":"tolerated","sift_score":0.72,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":false,"transcript_id":"ENST00000611397"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOjAwOWFkMTZlLTYyNjEtNTAxOS05NjZkLTQ0ZmEyYmY1YzQ4MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1701G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":false,"transcript_id":"ENST00000620288"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOmYyMTY1MDYwLTQzODctNTg3Yy05YWQyLTlmN2EzMjdkN2FiMg==","transcript":{"aa_change":"E553K","annotation":{"hgvsc":"c.1657G>A","polyphen_impact":"benign","polyphen_score":0.043,"sift_impact":"tolerated","sift_score":0.12,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":true,"transcript_id":"ENST00000620347"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOjc2OTY0ZjA0LTIxY2EtNTY1OC04NWQ0LTNhZWU3ZjgzZjc3Yg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1302G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":false,"transcript_id":"ENST00000488036"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOmJhZWY1MDBiLTUyOGMtNWUwMS1hZDBiLTMyYjMwNjE4YjI5Yw==","transcript":{"aa_change":"E494K","annotation":{"hgvsc":"c.1480G>A","polyphen_impact":"benign","polyphen_score":0.069,"sift_impact":"tolerated","sift_score":0.1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":false,"transcript_id":"ENST00000371494"}}}]}},"cosmic_id":null,"end_position":53088212,"genomic_dna_change":"chr1:g.53088212C>T","id":"U3NtOjBmZjZiN2ZmLTZkMTUtNTFjMS04OTgzLWI3ZDRhN2Q0Y2Y2MCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0ff6b7ff-6d15-51c1-8983-b7d4a7d4cf60","start_position":53088212}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOmNjYjQyZDA1LWViZTMtNWY0YS05ZDU5LTBmNTM0ZGI3NzIyMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*394G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000438846"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjk1YTQyZTBiLWEyNTEtNTRjNS1hNjk4LWZmZjk4MDFjYTYxNA==","transcript":{"aa_change":"L322L","annotation":{"hgvsc":"c.966G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000409996"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOmRjODVmMzFmLWZmMWEtNTlkZi1hM2E5LWI0MzZhOGRjYmVkMg==","transcript":{"aa_change":"L754L","annotation":{"hgvsc":"c.2262G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":true,"transcript_id":"ENST00000421030"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjExZWM5OWU1LTIyYjktNWY1NS1iNTg4LWRlMzExODliMzhiOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*394G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000422659"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjA5Njk0YmMyLTA5NGItNWZkNi04NTI2LTIxMDRiMTBlOTM0MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*358+487G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000413188"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjU1NTIwNTMyLTY4NmItNTc3MS1hOGExLTNiZWZjN2YzZTk0Ng==","transcript":{"aa_change":"L754L","annotation":{"hgvsc":"c.2262G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000395690"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOmJiOTFiMmU5LTAzOWMtNWQwOC05OTc3LTdiN2JjMGJlODliOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.2226+487G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000440047"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjY2ZmMwZjJmLTE5NTktNTZhMS04MzliLTdmZDk3NjA2NmU4Mg==","transcript":{"aa_change":"L754L","annotation":{"hgvsc":"c.2262G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000339553"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjZhMGUzMmVkLTZiY2YtNTZkMC1hNTRhLWQ3ZTU1N2JhZDlhMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*673G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000440217"}}}]}},"cosmic_id":["COSM426483","COSM426484","COSM5227224"],"end_position":54679926,"genomic_dna_change":"chr1:g.54679926G>A","id":"U3NtOjEwM2I5ZDUwLTdjNDQtNWM1OS04OWYwLTE0MmYwMjlkMWRkMCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"103b9d50-7c44-5c59-89f0-142f029d1dd0","start_position":54679926}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTBiYTBiMzItNWI0MC01NmY2LTg3ZTktODI1NGMyNmM0OGU3Ojg2YzhmM2Q2LTIzYjYtNTQ2MC1hYTI4LWM2NzUzMGQ0Nzk3Ng==","transcript":{"aa_change":"A18A","annotation":{"hgvsc":"c.54G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000116704","gene_strand":-1,"symbol":"SLC35D1"},"is_canonical":true,"transcript_id":"ENST00000235345"}}}]}},"cosmic_id":["COSM426630"],"end_position":67053960,"genomic_dna_change":"chr1:g.67053960C>A","id":"U3NtOjEwYmEwYjMyLTViNDAtNTZmNi04N2U5LTgyNTRjMjZjNDhlNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"10ba0b32-5b40-56f6-87e9-8254c26c48e7","start_position":67053960}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTBkNTUzNjQtOTM4MS01NTllLWJhZmItYmYyODhmMWYxZTAxOmVjZWFmN2FhLTFiYjAtNWI1Zi1hMTViLTRhZjg3NmE2NGVkOA==","transcript":{"aa_change":"N132Kfs*2","annotation":{"hgvsc":"c.395_396insATAAAGT","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000162396","gene_strand":-1,"symbol":"PARS2"},"is_canonical":true,"transcript_id":"ENST00000371279"}}}]}},"cosmic_id":null,"end_position":54758767,"genomic_dna_change":"chr1:g.54758766_54758767insACTTTAT","id":"U3NtOjEwZDU1MzY0LTkzODEtNTU5ZS1iYWZiLWJmMjg4ZjFmMWUwMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small insertion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"-","score":1,"ssm_id":"10d55364-9381-559e-bafb-bf288f1f1e01","start_position":54758766}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOmM2NDhiYzQ5LTgxOTYtNTZkYi1hNzg4LTE4OTJhOTk4NTU1Mw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.677+2559T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000371077"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOjlhYTkzMDYzLTEzYzEtNWE1Zi1hNTE5LWZhOGJhMzkxNzM2YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.456T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000464349"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOjkwMDBhMmUyLWQzYmYtNTE3MS05YzA4LTU5NWE0YjVhMWJjMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.338+2559T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000608020"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOjAxMTM5ODQ5LWI1Y2UtNWQyMi1hMzMzLTU4M2IzODUwZDJkMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.126+2559T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000608956"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOmY2ZGNkZDI4LTY1NDQtNWIzOC1iZjlhLTUzZDRlMmJiNWIzZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.677+2559T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000611228"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOjAyZjY4MjQzLWQ3ZjMtNTc3NS1iNTkzLTU0NDgzYmZjMjMyNA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*159T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":true,"transcript_id":"ENST00000371076"}}}]}},"cosmic_id":null,"end_position":64244292,"genomic_dna_change":"chr1:g.64244292T>A","id":"U3NtOjExNThmMmI4LWI0YWQtNTQxMy04NTllLTZlOWQ0MzliY2JlYiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"1158f2b8-b4ad-5413-859e-6e9d439bcbeb","start_position":64244292}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjkxMTNmODg5LWJlZGQtNTc5Yi1hM2Q1LTVmZGZjYTRlMTg2OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.126-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000527205"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjJkYWViOGRlLWMyZWItNWM3Mi1iZGQyLWEzZTk1YjY2NmIxMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.54-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000401051"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOmM0YTllOTJhLTQ4MDgtNTRmMy05MjY5LTdhNGY4MjBiZTI5Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.42-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000371747"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjAzNDQ2MjQ4LWFmNTctNWU3YS04NDI2LWU1YmQxNThkODhiOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":true,"transcript_id":"ENST00000447632"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjdlMzJjNGU4LTgyNzMtNTBmMS1iNjJlLTY5NzZmMDZhYTEwOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000532836"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjBjNWY4OGVhLTVjNWMtNWRiMi04MTc3LWUwMGMwNGU1ODdiOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000380849"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOmI2YzUzMjhmLTFlY2EtNWRmNS1iNGRhLTdkYmU5OWQ1NDFmYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000411642"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjM4ODkwZjllLTEzMmQtNWI0My1hOTMyLTMwZGJlNWZiMzg3NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.33-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000262676"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjE5NTg3MzZmLWRkZTUtNTFiZS1iOGUzLWY1NTg5NmFhYTA4NQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.42-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000439482"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjk2NWFlNTA3LTA1MjYtNTg3NS05MTFjLTZiNzhiNjMzNGVkZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-53G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000371750"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjc0ZDQ0MmI2LTNkYjUtNTczNC1iYWNiLTNkZWVhZjk0OGYwZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000262675"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjJlYjI0ZjJkLWM3M2MtNWIyMC1hNGRhLTdjNzQ2YjliNWE4MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000422925"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOmJkMGFlNDA5LTk3YjMtNWRjMS05ZjViLTM3NzE0ODZlYTkxNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.54-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000413473"}}}]}},"cosmic_id":null,"end_position":51322214,"genomic_dna_change":"chr1:g.51322214C>T","id":"U3NtOjExNmEwM2JmLWRlNDYtNWRmMi04NzBjLTY5MmRiZTU0YTYxMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"116a03bf-de46-5df2-870c-692dbe54a611","start_position":51322214}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjMxNTQwOTJmLWVmMjgtNTAzNi1hOTQyLTNhMjlmODZjMGFlMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.261+3083A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000463650"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjNkMzdhYzE3LTI5OGQtNWUxNS1iYjhmLWU0MTk0M2Q3Y2E1MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.117+2640A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000357083"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjMyMTA3N2E3LTI2MTAtNTRmOS04YzI5LTQwNWYyMWJlNzc5Yw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.9+5033A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371827"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjI5NzU0ZThjLTkwMmUtNTI5ZS04ZWFkLWIwNDRjMzlhNmZkYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371821"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjFkNzA5MzcwLWRhZTgtNWM3OS05OTY0LTJkNjlmZDZiN2RhZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-157A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371823"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOmY3MDBiMjI1LTgyNWEtNTM3Yy04ZDdiLTZhOWIyOTFhNjg0ZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000494555"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOmVhMDVmN2M2LThmMDEtNTIxMC05MDUxLWE2NGYxNDNkYTc4NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-157A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371824"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOmM4MDYwOWQwLTM4YWQtNTg3Ni1hMjYwLTk1MjI5NzMwYTQxNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371819"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOmUwNTFiMDg2LTI3NmMtNWE0Ni04NTg4LWI5NzE3NTNhNTIzMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.60+2640A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":true,"transcript_id":"ENST00000625794"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjliOTczZmVhLThhZjktNTJkYi1iM2VmLWMxNWQ0MTEzMDIyYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.19-35924A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000448907"}}}]}},"cosmic_id":null,"end_position":50109033,"genomic_dna_change":"chr1:g.50109033A>C","id":"U3NtOjExNmE4YTBkLWY1OGYtNTJjMi05NjU5LTg5NGQ4OTk2YTNkYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"116a8a0d-f58f-52c2-9659-894d8996a3dc","start_position":50109033}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OmQ4YzhlZWM3LTU1Y2MtNWEwZi1iMGY3LTQ3OTFlMzg5MTA3ZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.162G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000467646"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OjY2YmJhNmZhLTdiY2MtNTY2OS04M2NlLTRkMWI1NGRlYTMwYQ==","transcript":{"aa_change":"E121K","annotation":{"hgvsc":"c.361G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.524,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000479111"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OmRjNDJjZGY0LTBlNDctNTI2Ni05Nzc1LTc1MjJiM2M0NTY1NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000485401"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OjExM2Y5N2Q0LWViOTctNTExOS04Nzk3LWI2MDA0Nzg5MzRmYw==","transcript":{"aa_change":"E241K","annotation":{"hgvsc":"c.721G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.524,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":true,"transcript_id":"ENST00000370867"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OmNmM2EzOTA0LTQwNmUtNWE2Yy1iZTAyLTU5Y2E3NjhiNDViNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000486467"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OjEwM2IzOGI5LWM5NDAtNWI5NS1hNDVmLTZmMGI1ZjI1YTIxZQ==","transcript":{"aa_change":"E208K","annotation":{"hgvsc":"c.622G>A","polyphen_impact":"benign","polyphen_score":0.345,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000457880"}}}]}},"cosmic_id":["COSM4557287"],"end_position":74764054,"genomic_dna_change":"chr1:g.74764054G>A","id":"U3NtOjExYWY1MGI2LTNmZTEtNTJhYy1iMjQxLTAzMTU4MjNjZGI3NyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"11af50b6-3fe1-52ac-b241-0315823cdb77","start_position":74764054}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFiNTM2ZGEtZDE2OC01MDA4LTlkNjMtZjY0NDkzNTkzNjhkOjFmNDIyMzQ2LTA3MjAtNTdmOS05YjNhLWY3YjMwZTMyZTIyZQ==","transcript":{"aa_change":"A611E","annotation":{"hgvsc":"c.1832C>A","polyphen_impact":"benign","polyphen_score":0.444,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000371039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFiNTM2ZGEtZDE2OC01MDA4LTlkNjMtZjY0NDkzNTkzNjhkOjMzYjU4M2Y1LThkNTMtNWI2MS04MWEyLTBiOTFiNjYxNTI0MA==","transcript":{"aa_change":"A808E","annotation":{"hgvsc":"c.2423C>A","polyphen_impact":"benign","polyphen_score":0.138,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":true,"transcript_id":"ENST00000371037"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFiNTM2ZGEtZDE2OC01MDA4LTlkNjMtZjY0NDkzNTkzNjhkOjhjMmZlNDU0LTQyOWMtNTM3Yi05MmRhLWY4YzBiMTQ4MTEzZg==","transcript":{"aa_change":"A313E","annotation":{"hgvsc":"c.938C>A","polyphen_impact":"benign","polyphen_score":0.428,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000435165"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFiNTM2ZGEtZDE2OC01MDA4LTlkNjMtZjY0NDkzNTkzNjhkOjBjM2VjZDAzLWM4M2QtNWU0MC1iNTFmLWNhZmRkZjdmZDQwNQ==","transcript":{"aa_change":"A839E","annotation":{"hgvsc":"c.2516C>A","polyphen_impact":"probably_damaging","polyphen_score":0.93,"sift_impact":"tolerated","sift_score":0.07,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000237247"}}}]}},"cosmic_id":null,"end_position":66741395,"genomic_dna_change":"chr1:g.66741395C>A","id":"U3NtOjExYjUzNmRhLWQxNjgtNTAwOC05ZDYzLWY2NDQ5MzU5MzY4ZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"11b536da-d168-5008-9d63-f6449359368d","start_position":66741395}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OmUzZDJmNzdjLTc1ZDctNTRhMC05OTU3LTJmNmE3YjMyNjczZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*623G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000421415"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OjlmYWRlNjkzLWI0YjQtNTFiZS04MzIxLTIyYjMwN2Y2Y2NiYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3417G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000490863"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OmZmYTBkMWYyLTNmZDItNWYzZi1iNWRmLTRjZDM2MzA2YjU5NQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*37G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":true,"transcript_id":"ENST00000534324"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OjlkZmUxYjBiLTcwNDQtNThjNy1hN2ZlLWIyYjBkNTNkMjQ4Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*979G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000420054"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OjNmMWM5MmVmLTdkNTAtNTQ3Yi05ZWM4LWZmMDY1NzM2MTY3Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*37G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000287899"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OjU2Y2Q0ZDlkLTZhZGMtNTg1Ny05ZmI3LTliZWE4NmI5Y2RhYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*623G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000528287"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OmUwNTc5YjU2LTMwYTAtNWFkZC1hMzYzLWJmZmRmOGNlNGRiMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000493530"}}}]}},"cosmic_id":null,"end_position":54174582,"genomic_dna_change":"chr1:g.54174582C>T","id":"U3NtOjEyMGZkNzIwLTI0MWMtNWFkZC05ZGM3LWVjZmQyNmJmM2E5NSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"120fd720-241c-5add-9dc7-ecfd26bf3a95","start_position":54174582}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjQzNTM0YTI1LWVlYTktNTdjYi05NGZlLTM4M2E3NmRkZGRkNA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000603691"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjRlYjZmODRiLTI5MzAtNTA3ZS05Yjk2LTMxN2RjYTIxNWJmNA==","transcript":{"aa_change":"R218*","annotation":{"hgvsc":"c.652C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":true,"transcript_id":"ENST00000371007"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjhjODRhZTE5LWIzZTYtNTU0Ni1hNzEyLTA2NGJjNTU0YjVlNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*24C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000475209"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OmUyNDBiMTBmLTNjNDktNWM2Mi1iYzcxLTFlMzMwMDc3ODkwNA==","transcript":{"aa_change":"R218*","annotation":{"hgvsc":"c.652C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000371006"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3Ojg4N2I1NTA4LWQ4YzgtNTZjNi04NjMxLWIxOGFiYzdlMzdkMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*2756C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000621590"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjMxMGVlOGE2LTc3NjQtNWM4OC05ODM0LTUxZTEwZTNjZGY5Nw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3143C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000371004"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjgxMDM1MGQ1LTY1NzctNWIwZS1hYTE4LWM1MTRiODRhODljYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*464C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000544837"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OmY2OGJkNjFiLTUzYWQtNTc3ZS1iZmUzLThlNGNlOTUzMTRhYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000448166"}}}]}},"cosmic_id":["COSM2240225"],"end_position":67093556,"genomic_dna_change":"chr1:g.67093556G>A","id":"U3NtOjEyY2QyZTYzLTU0MzYtNWZiMS1iODRlLTQ3NmFiNDhjYzZjNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"12cd2e63-5436-5fb1-b84e-476ab48cc6c7","start_position":67093556}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTMwYzIzYjktMGEzNi01ZjZhLThkZGItM2IzNTg5MDU0Y2M5OjhiNmZjY2Y3LTUxZWYtNTVmOC04ZTYwLWEzZGI3NDAxOWE2ZQ==","transcript":{"aa_change":"I427I","annotation":{"hgvsc":"c.1281C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157184","gene_strand":1,"symbol":"CPT2"},"is_canonical":true,"transcript_id":"ENST00000371486"}}}]}},"cosmic_id":null,"end_position":53210955,"genomic_dna_change":"chr1:g.53210955C>T","id":"U3NtOjEzMGMyM2I5LTBhMzYtNWY2YS04ZGRiLTNiMzU4OTA1NGNjOSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"130c23b9-0a36-5f6a-8ddb-3b3589054cc9","start_position":53210955}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTM2NTMyNGYtNWU1ZC01ZjQwLWFjOWItY2EzYzdmZGM5YjQxOmNjZDFlZDAwLWZkNTQtNWMzNS05NGI0LTYzOTgwZGQ3NzQxMA==","transcript":{"aa_change":"S1386L","annotation":{"hgvsc":"c.4157C>T","polyphen_impact":"benign","polyphen_score":0.228,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":true,"transcript_id":"ENST00000287727"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTM2NTMyNGYtNWU1ZC01ZjQwLWFjOWItY2EzYzdmZGM5YjQxOjkyNjM0MmFkLWEzNzYtNTE4Yy05MGQyLTUwNTU2OWNkMjQzYQ==","transcript":{"aa_change":"S1327L","annotation":{"hgvsc":"c.3980C>T","polyphen_impact":"benign","polyphen_score":0.102,"sift_impact":"tolerated","sift_score":0.05,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000357206"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTM2NTMyNGYtNWU1ZC01ZjQwLWFjOWItY2EzYzdmZGM5YjQxOjM5YzU2YzBhLTA5M2YtNTZlYy1hYjQyLTUwYWU1MTA3OTA4ZA==","transcript":{"aa_change":"S1386L","annotation":{"hgvsc":"c.4157C>T","polyphen_impact":"benign","polyphen_score":0.228,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000371591"}}}]}},"cosmic_id":["COSM426435"],"end_position":52346100,"genomic_dna_change":"chr1:g.52346100C>T","id":"U3NtOjEzNjUzMjRmLTVlNWQtNWY0MC1hYzliLWNhM2M3ZmRjOWI0MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1365324f-5e5d-5f40-ac9b-ca3c7fdc9b41","start_position":52346100}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTNjN2EzMmQtZjcyMC01ZTE3LWEwM2ItZmFhYjUyYWFiY2EyOjc2YzgxMWQwLWZkOGUtNTRmNS04NDY3LTU5MTY0Y2I4ZmVmOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000494710"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTNjN2EzMmQtZjcyMC01ZTE3LWEwM2ItZmFhYjUyYWFiY2EyOjE5NDhkNGRlLTI5M2ItNTMwYS1iMjE2LWI2ZTA3ZTY2MmZkYQ==","transcript":{"aa_change":"F586I","annotation":{"hgvsc":"c.1756T>A","polyphen_impact":"benign","polyphen_score":0.063,"sift_impact":"tolerated","sift_score":0.07,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000263441"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTNjN2EzMmQtZjcyMC01ZTE3LWEwM2ItZmFhYjUyYWFiY2EyOjNiOTU5YmM0LWNmZGEtNTk2ZS04NjNlLTNkODM4NWE2ODljMg==","transcript":{"aa_change":"F599I","annotation":{"hgvsc":"c.1795T>A","polyphen_impact":"benign","polyphen_score":0.063,"sift_impact":"deleterious","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000395325"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTNjN2EzMmQtZjcyMC01ZTE3LWEwM2ItZmFhYjUyYWFiY2EyOmU5MTE1MWUxLWM0MzUtNWM2MS1iNjk0LTBlYmQ4MDU2MDU2ZA==","transcript":{"aa_change":"F656I","annotation":{"hgvsc":"c.1966T>A","polyphen_impact":"benign","polyphen_score":0.133,"sift_impact":"deleterious","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":true,"transcript_id":"ENST00000371069"}}}]}},"cosmic_id":["COSM426593","COSM5196857"],"end_position":65394960,"genomic_dna_change":"chr1:g.65394960T>A","id":"U3NtOjEzYzdhMzJkLWY3MjAtNWUxNy1hMDNiLWZhYWI1MmFhYmNhMiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"13c7a32d-f720-5e17-a03b-faab52aabca2","start_position":65394960}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQwZDQ5MTYtZTYyYi01ODVmLTkwMjQtOWRkNjNjNjBiMDg1OmJiOTkzMmRhLTY2MGItNTBhMy04MTQxLTBiYzQwODgzOWZlMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000474695"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQwZDQ5MTYtZTYyYi01ODVmLTkwMjQtOWRkNjNjNjBiMDg1OmYzMGUyNTIwLWZhYzUtNThiZi04ZDA5LTIyZGJlY2E1YmE4MQ==","transcript":{"aa_change":"V466G","annotation":{"hgvsc":"c.1397T>G","polyphen_impact":"possibly_damaging","polyphen_score":0.505,"sift_impact":"deleterious","sift_score":0.04,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":true,"transcript_id":"ENST00000371208"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQwZDQ5MTYtZTYyYi01ODVmLTkwMjQtOWRkNjNjNjBiMDg1OjU0ZGYxNmU5LTY1ODAtNTc2Yy05YzE3LWUxYmFhNDEwZjg4Yg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000466803"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQwZDQ5MTYtZTYyYi01ODVmLTkwMjQtOWRkNjNjNjBiMDg1OjI5NWE1ZGQxLWQ5NDktNWU3Ny1hZjJkLTdiZGFmYmEzMDYyNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1514T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000465876"}}}]}},"cosmic_id":null,"end_position":59860193,"genomic_dna_change":"chr1:g.59860193T>G","id":"U3NtOjE0MGQ0OTE2LWU2MmItNTg1Zi05MDI0LTlkZDYzYzYwYjA4NSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"140d4916-e62b-585f-9024-9dd63c60b085","start_position":59860193}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQ0NzY0NmEtMDlmYi01MWY1LTllZTMtNDQzYTcwNDhiOGIyOjM4ZmMyNTdkLTA1NjktNTRlZC1iYTk1LTI1MjE4ZWI1MDllYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000132854","gene_strand":-1,"symbol":"KANK4"},"is_canonical":false,"transcript_id":"ENST00000371150"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQ0NzY0NmEtMDlmYi01MWY1LTllZTMtNDQzYTcwNDhiOGIyOjYzMjMzOGNmLWZkYjQtNTdjNi1iNDg5LWMyMDczZmI1Y2Y1ZQ==","transcript":{"aa_change":"V633M","annotation":{"hgvsc":"c.1897G>A","polyphen_impact":"benign","polyphen_score":0,"sift_impact":"tolerated","sift_score":0.35,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132854","gene_strand":-1,"symbol":"KANK4"},"is_canonical":true,"transcript_id":"ENST00000371153"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQ0NzY0NmEtMDlmYi01MWY1LTllZTMtNDQzYTcwNDhiOGIyOmZkOGM2NzFiLTAzOTktNThkOS05YjdmLWVhYjkwNzViNGUxMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.17-1618G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000132854","gene_strand":-1,"symbol":"KANK4"},"is_canonical":false,"transcript_id":"ENST00000354381"}}}]}},"cosmic_id":["COSM426548"],"end_position":62273207,"genomic_dna_change":"chr1:g.62273207C>T","id":"U3NtOjE0NDc2NDZhLTA5ZmItNTFmNS05ZWUzLTQ0M2E3MDQ4YjhiMiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1447646a-09fb-51f5-9ee3-443a7048b8b2","start_position":62273207}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OmRlOTM4ZGE4LTlkODUtNWE0Ni1hZjg5LWI4Njc4NTAwMjU0Nw==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.053,"sift_impact":"deleterious_low_confidence","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000371544"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OmM4Yjk3M2Q0LWEwMzYtNWQ3Ni1hNGVlLTViNDA1NGE3ODBlOQ==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000355809"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjVlMjA0YTRkLTZlZTgtNTQwNi1iOTg4LTBkNDMxMWZiZWVmNA==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.053,"sift_impact":"deleterious_low_confidence","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000470626"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OmQyYmY1OTk4LTBiOTgtNTAxYS1iNTk5LWZkNmU5MjhjMTg2Ng==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.001,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000473856"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjM2NmM4YjVjLWRlMzYtNWM5Zi1iMTJiLWE1MGZjNThlMmE2Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-5-10091G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000484723"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjkzZWRkYjFjLTQ1ZjAtNTUyZi1iM2JmLWMxMjllNmNhMGIyNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000371541"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjRhMmRmMDIxLWU0YTktNTc3Zi05NWNhLTkyMWI5OTlhYzgwNA==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"unknown","polyphen_score":0,"sift_impact":"deleterious_low_confidence","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000528642"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjI0OTUzODFhLTk1NzUtNTNjOS04YmJlLWEwNzg1NzExOTk5Yg==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.053,"sift_impact":"deleterious_low_confidence","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000524582"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OmJlYzcyMDI1LTgyNWMtNTg2ZS04MmQ2LThjNzJiNjc2ZDQ4YQ==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.053,"sift_impact":"deleterious_low_confidence","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":true,"transcript_id":"ENST00000257177"}}}]}},"cosmic_id":["COSM3805549"],"end_position":52526145,"genomic_dna_change":"chr1:g.52526145C>T","id":"U3NtOjE1MzI2MTRjLTI3NGUtNTQ4OS05NjMwLWQwZGM0ZjU4NmFjOSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1532614c-274e-5489-9630-d0dc4f586ac9","start_position":52526145}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzN2VkMTUtMTg0OS01N2ZjLTg5ZjAtZjMyMTQ1NWIwNTU2OjEyNmI1MzI5LWI5MWYtNTg5ZS1iYTM5LTJjZDFhOGRkY2ZhNg==","transcript":{"aa_change":"L245_L249del","annotation":{"hgvsc":"c.734_748delTGATGCATATGCTGC","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODERATE"},"consequence_type":"inframe_deletion","gene":{"gene_id":"ENSG00000162409","gene_strand":1,"symbol":"PRKAA2"},"is_canonical":true,"transcript_id":"ENST00000371244"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzN2VkMTUtMTg0OS01N2ZjLTg5ZjAtZjMyMTQ1NWIwNTU2OmNiNjUyMzkwLTlkZDktNTlkNC05M2M1LWY3MDlkMzZjMTY3OQ==","transcript":{"aa_change":"L245_L249del","annotation":{"hgvsc":"c.734_748delTGATGCATATGCTGC","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODERATE"},"consequence_type":"inframe_deletion","gene":{"gene_id":"ENSG00000162409","gene_strand":1,"symbol":"PRKAA2"},"is_canonical":false,"transcript_id":"ENST00000610361"}}}]}},"cosmic_id":null,"end_position":56696118,"genomic_dna_change":"chr1:g.56696104delCTGATGCATATGCTG","id":"U3NtOjE1MzdlZDE1LTE4NDktNTdmYy04OWYwLWYzMjE0NTViMDU1NiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"CTGATGCATATGCTG","score":1,"ssm_id":"1537ed15-1849-57fc-89f0-f321455b0556","start_position":56696104}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0NTVmYjktNWExNC01ZjkwLWFkZTItYzc4NDU2M2MzNDdlOjY5MzY5NTY5LWE1ZDktNTU5Ny1hNThjLTA0YWU3MzMzZDM1Zg==","transcript":{"aa_change":"T178T","annotation":{"hgvsc":"c.534C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000172260","gene_strand":-1,"symbol":"NEGR1"},"is_canonical":false,"transcript_id":"ENST00000306821"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0NTVmYjktNWExNC01ZjkwLWFkZTItYzc4NDU2M2MzNDdlOjU0NTNlNmU5LWZlN2UtNTJhOC1iODhiLWExZTA3ZTBjNTE3Nw==","transcript":{"aa_change":"T306T","annotation":{"hgvsc":"c.918C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000172260","gene_strand":-1,"symbol":"NEGR1"},"is_canonical":true,"transcript_id":"ENST00000357731"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0NTVmYjktNWExNC01ZjkwLWFkZTItYzc4NDU2M2MzNDdlOmUwNWY1MzJkLTJkMjctNTliNi04OGJiLTNlYjU5YTY5ZDcyNQ==","transcript":{"aa_change":"T251T","annotation":{"hgvsc":"c.753C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000172260","gene_strand":-1,"symbol":"NEGR1"},"is_canonical":false,"transcript_id":"ENST00000434200"}}}]}},"cosmic_id":null,"end_position":71592839,"genomic_dna_change":"chr1:g.71592839G>C","id":"U3NtOjE1NDU1ZmI5LTVhMTQtNWY5MC1hZGUyLWM3ODQ1NjNjMzQ3ZSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"15455fb9-5a14-5f90-ade2-c784563c347e","start_position":71592839}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0ZTYwNTYtMjM0Ny01NjhjLTkzM2MtNjk1NjYzZmEyMjllOmZiODFlMjI4LWYxZTEtNTNjYi05YjUwLWVmNWUxMWRkZmEwMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000481702"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0ZTYwNTYtMjM0Ny01NjhjLTkzM2MtNjk1NjYzZmEyMjllOjg3MTBmZjk3LWUxN2QtNWMxMi1hZWE0LTI4Nzk4MDIzYmY5OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*17T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":true,"transcript_id":"ENST00000342505"}}}]}},"cosmic_id":null,"end_position":64834545,"genomic_dna_change":"chr1:g.64834545A>G","id":"U3NtOjE1NGU2MDU2LTIzNDctNTY4Yy05MzNjLTY5NTY2M2ZhMjI5ZSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"154e6056-2347-568c-933c-695663fa229e","start_position":64834545}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU4ZjIwZGUtZWVkZC01N2MwLTg2MTUtOTJhMTQxOGZlODE2OmRhNDMyOWIxLWFkYjUtNTNiYy05OWRiLTdjMzY5NmE1ZjY4YQ==","transcript":{"aa_change":"L309L","annotation":{"hgvsc":"c.927G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000143006","gene_strand":1,"symbol":"DMRTB1"},"is_canonical":true,"transcript_id":"ENST00000371445"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU4ZjIwZGUtZWVkZC01N2MwLTg2MTUtOTJhMTQxOGZlODE2OjAwMDRiMzEyLTMxMTUtNWI0Ny04OWVmLWNjOGQzMTVkYjE3OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000143006","gene_strand":1,"symbol":"DMRTB1"},"is_canonical":false,"transcript_id":"ENST00000463126"}}}]}},"cosmic_id":["COSM3805567"],"end_position":53464813,"genomic_dna_change":"chr1:g.53464813G>A","id":"U3NtOjE1OGYyMGRlLWVlZGQtNTdjMC04NjE1LTkyYTE0MThmZTgxNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"158f20de-eedd-57c0-8615-92a1418fe816","start_position":53464813}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjJjMzk0ODVhLTYyOTQtNTgxMC04YmNjLTE1MzIwZTQwNWY5NQ==","transcript":{"aa_change":"Y19Y","annotation":{"hgvsc":"c.57C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000525990"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjRhOWM4ZjQzLTJjNWQtNTZlZi04NTVlLTcwYWUyYjNiMWFhMw==","transcript":{"aa_change":"Y121Y","annotation":{"hgvsc":"c.363C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000610401"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOmJmMGQxMzhjLWE5NzMtNWQ3ZC1iNWJjLTgxOTEzOTg0NmRiMw==","transcript":{"aa_change":"Y156Y","annotation":{"hgvsc":"c.468C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":true,"transcript_id":"ENST00000371320"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOmJiNjIzMDQ3LTZlMWItNTkxYi04N2UxLThlNmZiNmE0MGY2OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.447+903C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000357475"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjlhYWM2MWQ1LTZiNTMtNThkMC1hMzIzLWZkOGEwM2U1MzcxZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.515C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000326956"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjliMDU0NWU4LTc2NjMtNTBiZi05YWZkLTNiNzBmNzg2MjY0Mw==","transcript":{"aa_change":"Y129Y","annotation":{"hgvsc":"c.387C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000371319"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOmE5MDU0YmVhLTdlNDItNWYxOC1iZjkwLWQxMTMzMjM5YTZkMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.254C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000533946"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjczNDE1MzEyLWQwY2YtNTE3ZS1hMjI5LWEzYjU0MDRjZjBmMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.277C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000528787"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOmI5NThmY2Y1LTEyZDQtNTEzYS1iYzA4LTZmMWI3Zjc2OWJhYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.182C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000426150"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjY0ODZjNDY5LTQxMWYtNTgxOC04NDFkLTlhNDQ2ZTk1Nzg3NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.258C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000533209"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjZjNTBhMWVkLWRmNTQtNTc5My1hOWUwLWJhZmRiYjI3ZjNmNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.101C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000420121"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjQ4NTEyNzcwLTRlMzYtNWJmYi04OGEwLTlhMjJhMDY0OGI4Mg==","transcript":{"aa_change":"Y46Y","annotation":{"hgvsc":"c.138C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000417664"}}}]}},"cosmic_id":["COSM3805587","COSM3805588"],"end_position":54257166,"genomic_dna_change":"chr1:g.54257166G>A","id":"U3NtOjE1YzdiZjlkLTJkMDktNTE3Ni05M2I4LWQyYzM5MmJkOTU2MCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"15c7bf9d-2d09-5176-93b8-d2c392bd9560","start_position":54257166}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTY4NzYwNzYtMzdiMC01ZjFiLTg4MmUtNzU2ZTU0MGJmZjdmOjQzN2JlOGU2LTA5NzktNTY3Mi1iNmIyLTE5ZmI3ZDNhNTgyMA==","transcript":{"aa_change":"R202G","annotation":{"hgvsc":"c.604C>G","polyphen_impact":"probably_damaging","polyphen_score":0.997,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162396","gene_strand":-1,"symbol":"PARS2"},"is_canonical":true,"transcript_id":"ENST00000371279"}}}]}},"cosmic_id":null,"end_position":54758558,"genomic_dna_change":"chr1:g.54758558G>C","id":"U3NtOjE2ODc2MDc2LTM3YjAtNWYxYi04ODJlLTc1NmU1NDBiZmY3ZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"16876076-37b0-5f1b-882e-756e540bff7f","start_position":54758558}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc1NDUwY2EtZTg1MC01ZjEyLWI1NTctNWRjOWU0OGZiYjk0OjZjMzJkMTUzLTg2ZTktNTFjYi05OTMzLTJkNzc4MjM3ZmMxYw==","transcript":{"aa_change":"S311L","annotation":{"hgvsc":"c.932C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.838,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085832","gene_strand":-1,"symbol":"EPS15"},"is_canonical":true,"transcript_id":"ENST00000371733"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc1NDUwY2EtZTg1MC01ZjEyLWI1NTctNWRjOWU0OGZiYjk0OmEzMjdjNDM5LWZhYmItNThjZi05Nzc1LTEzZGRlNjc5NGZjMw==","transcript":{"aa_change":"S311L","annotation":{"hgvsc":"c.932C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.899,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085832","gene_strand":-1,"symbol":"EPS15"},"is_canonical":false,"transcript_id":"ENST00000371730"}}}]}},"cosmic_id":null,"end_position":51444911,"genomic_dna_change":"chr1:g.51444911G>A","id":"U3NtOjE3NTQ1MGNhLWU4NTAtNWYxMi1iNTU3LTVkYzllNDhmYmI5NCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"175450ca-e850-5f12-b557-5dc9e48fbb94","start_position":51444911}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc2NDIxY2YtOTZjYy01MTU3LTk5ZTQtNTM2NWUwMzJjNjU5OjgxNWQ3ODdiLTZlOTMtNWNkMS04MWE5LWU4ZGI0MzZiMWRjMg==","transcript":{"aa_change":"L1182L","annotation":{"hgvsc":"c.3546G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":true,"transcript_id":"ENST00000326665"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc2NDIxY2YtOTZjYy01MTU3LTk5ZTQtNTM2NWUwMzJjNjU5Ojk5NjljNzQzLTE2N2YtNTdhMS05NDRiLTI0ZGIzYmM3ODA1ZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":false,"transcript_id":"ENST00000614534"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc2NDIxY2YtOTZjYy01MTU3LTk5ZTQtNTM2NWUwMzJjNjU5OjRiNjFmMGFhLTMyZWItNWI0Ny1hZmJjLTYzNTc1NDM3OTAyZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1688G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":false,"transcript_id":"ENST00000433746"}}}]}},"cosmic_id":null,"end_position":74572164,"genomic_dna_change":"chr1:g.74572164C>T","id":"U3NtOjE3NjQyMWNmLTk2Y2MtNTE1Ny05OWU0LTUzNjVlMDMyYzY1OSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"176421cf-96cc-5157-99e4-5365e032c659","start_position":74572164}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTdhZjMxZTgtNTExNS01YTdmLTkzYzMtN2E4MzUxZGE0ZTJhOmI4ZTAzNjUzLTFmZTUtNWE4ZC05MGFjLWFkOThkNzYwNTI4Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":false,"transcript_id":"ENST00000614534"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTdhZjMxZTgtNTExNS01YTdmLTkzYzMtN2E4MzUxZGE0ZTJhOmVmOWI2YTQ2LTU2YmMtNWExMS1iZDRmLTZjNmQ2ODc1ZjM0Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.564C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":false,"transcript_id":"ENST00000433746"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTdhZjMxZTgtNTExNS01YTdmLTkzYzMtN2E4MzUxZGE0ZTJhOmUwYzg4YzIxLTM2MTEtNTRmMS1hYTkwLTEzNDM5MGQ1NGMwNw==","transcript":{"aa_change":"P808S","annotation":{"hgvsc":"c.2422C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.857,"sift_impact":"tolerated","sift_score":0.07,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":true,"transcript_id":"ENST00000326665"}}}]}},"cosmic_id":["COSM3805878"],"end_position":74573288,"genomic_dna_change":"chr1:g.74573288G>A","id":"U3NtOjE3YWYzMWU4LTUxMTUtNWE3Zi05M2MzLTdhODM1MWRhNGUyYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"17af31e8-5115-5a7f-93c3-7a8351da4e2a","start_position":74573288}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTgxMzM0YjYtMTgzYS01NTFkLWJmNDMtODRkMTUyYTMwNDgyOjg2ODNjMjBjLTg1NzktNTkzMy1iZGQxLWE3M2E3NGMzNTc0OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.918-97G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162391","gene_strand":-1,"symbol":"FAM151A"},"is_canonical":false,"transcript_id":"ENST00000371304"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTgxMzM0YjYtMTgzYS01NTFkLWJmNDMtODRkMTUyYTMwNDgyOmM0NzAxMzUxLTJlZTgtNTAwYS04N2FiLTBhMTI3YzYwMTFmNQ==","transcript":{"aa_change":"R461T","annotation":{"hgvsc":"c.1382G>C","polyphen_impact":"benign","polyphen_score":0.026,"sift_impact":"tolerated","sift_score":0.29,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162391","gene_strand":-1,"symbol":"FAM151A"},"is_canonical":true,"transcript_id":"ENST00000302250"}}}]}},"cosmic_id":null,"end_position":54609644,"genomic_dna_change":"chr1:g.54609644C>G","id":"U3NtOjE4MTMzNGI2LTE4M2EtNTUxZC1iZjQzLTg0ZDE1MmEzMDQ4MiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"181334b6-183a-551d-bf43-84d152a30482","start_position":54609644}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTg1ODcxYzgtMmI3ZS01ZjBlLWI1NTMtM2U1NWZkZDBjNjYwOmE5YzEzZGY5LTUwYzktNTRjNC1hYWU4LTk1NzRkNTY5NTczNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2717G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000470527"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTg1ODcxYzgtMmI3ZS01ZjBlLWI1NTMtM2U1NWZkZDBjNjYwOmVjMTVmMzUwLTVkNDctNTY4Mi04MDZiLTcyNDRmZTk4YzYyOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3009G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000495994"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTg1ODcxYzgtMmI3ZS01ZjBlLWI1NTMtM2U1NWZkZDBjNjYwOmNmMWE2MThlLTU3MWItNWVjNS1iYzg1LTdjMGNlMThmMDJlMA==","transcript":{"aa_change":"A876S","annotation":{"hgvsc":"c.2626G>T","polyphen_impact":"benign","polyphen_score":0.015,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":true,"transcript_id":"ENST00000290039"}}}]}},"cosmic_id":null,"end_position":64675452,"genomic_dna_change":"chr1:g.64675452G>T","id":"U3NtOjE4NTg3MWM4LTJiN2UtNWYwZS1iNTUzLTNlNTVmZGQwYzY2MCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"185871c8-2b7e-5f0e-b553-3e55fdd0c660","start_position":64675452}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk2Yjg5ZmMtYjI4ZS01YzM2LWI3YzUtZjcxNDIyZjRlODNmOmM5Mzc5ZTI5LWU1OGQtNTBhYi05Zjg1LTY4ZDFlNmFjZTQ1OA==","transcript":{"aa_change":"S281L","annotation":{"hgvsc":"c.842C>T","polyphen_impact":"benign","polyphen_score":0.052,"sift_impact":"tolerated","sift_score":0.08,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162391","gene_strand":-1,"symbol":"FAM151A"},"is_canonical":true,"transcript_id":"ENST00000302250"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk2Yjg5ZmMtYjI4ZS01YzM2LWI3YzUtZjcxNDIyZjRlODNmOjFkMmM3OGY4LWJiOWYtNTRmMy04NmQ2LTQ3OTc5ZmI1NjliMA==","transcript":{"aa_change":"S281L","annotation":{"hgvsc":"c.842C>T","polyphen_impact":"benign","polyphen_score":0.001,"sift_impact":"deleterious","sift_score":0.04,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162391","gene_strand":-1,"symbol":"FAM151A"},"is_canonical":false,"transcript_id":"ENST00000371304"}}}]}},"cosmic_id":["COSM910894"],"end_position":54611704,"genomic_dna_change":"chr1:g.54611704G>A","id":"U3NtOjE5NmI4OWZjLWIyOGUtNWMzNi1iN2M1LWY3MTQyMmY0ZTgzZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"196b89fc-b28e-5c36-b7c5-f71422f4e83f","start_position":54611704}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk4ZjI5MTgtOWM3ZC01MGU4LTgzMjEtMjJlMzI2NDVkNDZlOmQ1YTQ2OWJjLTlhZDctNTBkMC05YjgzLTRhN2IzZGE0NDQ1YQ==","transcript":{"aa_change":"W71C","annotation":{"hgvsc":"c.213G>C","polyphen_impact":"probably_damaging","polyphen_score":0.985,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":true,"transcript_id":"ENST00000371208"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk4ZjI5MTgtOWM3ZC01MGU4LTgzMjEtMjJlMzI2NDVkNDZlOjhmYTdmODJhLTczY2ItNTJiNS1iM2VhLTE3MzRjYjBmYTIzMA==","transcript":{"aa_change":"W71C","annotation":{"hgvsc":"c.213G>C","polyphen_impact":"probably_damaging","polyphen_score":0.985,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000455990"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk4ZjI5MTgtOWM3ZC01MGU4LTgzMjEtMjJlMzI2NDVkNDZlOjBiYWUwYmE3LTQ3MTAtNWE0MC1iODI4LTQ3Zjk2NjA0MTk2Mw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.330G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000465876"}}}]}},"cosmic_id":["COSM1474117"],"end_position":59828843,"genomic_dna_change":"chr1:g.59828843G>C","id":"U3NtOjE5OGYyOTE4LTljN2QtNTBlOC04MzIxLTIyZTMyNjQ1ZDQ2ZSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"198f2918-9c7d-50e8-8321-22e32645d46e","start_position":59828843}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjgyZmU0MGFmLWI0NDUtNWMwYi1hYzFlLTY0NmVhMjBjNGY4Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.949+5426C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000371509"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjc0NTI0MzdhLTBjOWUtNTc3NC1hNjUxLTg4M2I1MzJiZDNkOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*285C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000478631"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjFhMmNhYzFjLTI2NWQtNWRkMC04OWZlLTM0Y2Y3Njk4ZDlkMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1081+5426C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":true,"transcript_id":"ENST00000371514"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjM0ZGFiM2UxLWMxYjgtNTJiYS1iY2U3LWFmMzYzYzdiZWZmMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*285C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000371513"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOmYyMzEwOTQwLTFmMGUtNTYyNy1iYWI3LTE3ZmM2ODUwYjQ2NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.838+5426C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000528311"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjRjN2E2MGUwLTNmOTQtNTM3MS04MWJlLTdjMzNjMGZhMzYwMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1009+5426C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000407246"}}}]}},"cosmic_id":null,"end_position":52993562,"genomic_dna_change":"chr1:g.52993562C>T","id":"U3NtOjE5YzA5MDIyLTlmNGQtNTVmNi05ZDZkLTJiMDVkMjA1NjgzYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"19c09022-9f4d-55f6-9d6d-2b05d205683c","start_position":52993562}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOjE3NGMyM2I0LTIyOWMtNTBkZC05ZTc3LTc5MDhmNTJjYmE1Nw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":false,"transcript_id":"ENST00000477905"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOmVkODMxNjAyLTg1MTItNWNjNS1iMGYyLWQ5NmVkNDY0YTNkNA==","transcript":{"aa_change":"L191V","annotation":{"hgvsc":"c.571C>G","polyphen_impact":"possibly_damaging","polyphen_score":0.848,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":false,"transcript_id":"ENST00000371368"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOjUwYjRjNDM3LTE2OTgtNWZmNy05ZGQ2LTI3M2YyNWY5NjYyNQ==","transcript":{"aa_change":"L191V","annotation":{"hgvsc":"c.571C>G","polyphen_impact":"possibly_damaging","polyphen_score":0.848,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":false,"transcript_id":"ENST00000444987"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOjE3NmI1MzI1LTE2YzYtNThkYS04OTQ5LTQ2YjM5ODVhYmEzZQ==","transcript":{"aa_change":"L191V","annotation":{"hgvsc":"c.571C>G","polyphen_impact":"possibly_damaging","polyphen_score":0.848,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":true,"transcript_id":"ENST00000371370"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOmJlZTU2NTdiLTRkYmEtNWRmMi1hMGUzLWM2ODVkZTkxM2U3Nw==","transcript":{"aa_change":"L191V","annotation":{"hgvsc":"c.571C>G","polyphen_impact":"possibly_damaging","polyphen_score":0.848,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":false,"transcript_id":"ENST00000319223"}}}]}},"cosmic_id":["COSM426467"],"end_position":53958246,"genomic_dna_change":"chr1:g.53958246C>G","id":"U3NtOjFhZWE3MDc5LTljNTAtNTE0My04YjdkLWRkNmY5ZjJjMWFjYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1aea7079-9c50-5143-8b7d-dd6f9f2c1aca","start_position":53958246}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFmODM0M2EtYzM3Yi01ODkyLTkxYTctM2I2ZTQ3ZGEzNWVhOjNkODJiMmQxLWE0ZWItNWNjZi1iNWIyLWY3ODZhZWQ1ZDlkNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.10G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157211","gene_strand":-1,"symbol":"CDCP2"},"is_canonical":false,"transcript_id":"ENST00000530059"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFmODM0M2EtYzM3Yi01ODkyLTkxYTctM2I2ZTQ3ZGEzNWVhOjJjMjI4Y2MyLWViNzUtNTMyOS1iZmQ0LWUxYTc1MmVhNjNhMQ==","transcript":{"aa_change":"V344L","annotation":{"hgvsc":"c.1030G>T","polyphen_impact":"benign","polyphen_score":0.025,"sift_impact":"tolerated","sift_score":0.31,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157211","gene_strand":-1,"symbol":"CDCP2"},"is_canonical":true,"transcript_id":"ENST00000371330"}}}]}},"cosmic_id":null,"end_position":54139840,"genomic_dna_change":"chr1:g.54139840C>A","id":"U3NtOjFhZjgzNDNhLWMzN2ItNTg5Mi05MWE3LTNiNmU0N2RhMzVlYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1af8343a-c37b-5892-91a7-3b6e47da35ea","start_position":54139840}}],"total":864}}}}}} \ No newline at end of file +{"data":{"viewer":{"explore":{"ssms":{"hits":{"edges":[{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOjBmMmIzOTk0LWRiNTktNTczNS1iODhkLTIyZjkxZjFhNzI1Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.287+25192delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000467509"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOjZiMGYyZjdiLWU5NmUtNTExNS05ODA3LTNkYzI4NTY5NTNlZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.141-18074delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000460671"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOjAwN2U3ODUxLTE2MzgtNTdlYS1hN2E1LWFhM2E0N2QyNTQwMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000476933"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOmY0MmI4MDYwLWE3MmItNTU4Yi05NmI3LTMzNzM2NDliZTc5MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.890-6900delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000421528"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDJhYWEzOWEtYWNmMS01YjY0LWJjMjctYmIzYjk3N2EwY2ZhOjc4Nzk0ZTFlLTBkNmEtNTJkNC05ZjQwLTk0MDZiNGYwMWM4YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*97delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":true,"transcript_id":"ENST00000371226"}}}]}},"cosmic_id":["COSN1106466"],"end_position":58480868,"genomic_dna_change":"chr1:g.58480868delT","id":"U3NtOjAyYWFhMzlhLWFjZjEtNWI2NC1iYzI3LWJiM2I5NzdhMGNmYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":6,"ssm_id":"02aaa39a-acf1-5b64-bc27-bb3b977a0cfa","start_position":58480868}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6N2ZmYjVlMjItMDVkNi01NjY0LWEwYjAtOTA4MTg0YmFjYmI5OmQ2YjY2MGM2LTU2MmQtNWE4OC04NWU3LWE1YzZiOTkwZDAxZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-112delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000117862","gene_strand":-1,"symbol":"TXNDC12"},"is_canonical":true,"transcript_id":"ENST00000371626"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6N2ZmYjVlMjItMDVkNi01NjY0LWEwYjAtOTA4MTg0YmFjYmI5OjcyZTQwYTVjLTU2M2UtNTE1Ny1hY2JlLTU1NjJmYWYxYTlhZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000117862","gene_strand":-1,"symbol":"TXNDC12"},"is_canonical":false,"transcript_id":"ENST00000610127"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6N2ZmYjVlMjItMDVkNi01NjY0LWEwYjAtOTA4MTg0YmFjYmI5OjQ0MzliNDg2LWY1NTYtNWFmNC1iNjEzLWZiOTBjODRiMGY1YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000117862","gene_strand":-1,"symbol":"TXNDC12"},"is_canonical":false,"transcript_id":"ENST00000472624"}}}]}},"cosmic_id":["COSN15664798","COSN15666161","COSN18724033","COSN18724364","COSN18725063"],"end_position":52055208,"genomic_dna_change":"chr1:g.52055208delT","id":"U3NtOjdmZmI1ZTIyLTA1ZDYtNTY2NC1hMGIwLTkwODE4NGJhY2JiOSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":4,"ssm_id":"7ffb5e22-05d6-5664-a0b0-908184bacbb9","start_position":52055208}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6ZWM2OTA5OTgtZDU1NS01ZWQzLWFiMTgtNTVlODY4NWIyYmZkOjI1NzkyZjMwLTQ1OWMtNWFlZC04NWU1LWRhZGU0ZTY2YThhYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162407","gene_strand":-1,"symbol":"PPAP2B"},"is_canonical":false,"transcript_id":"ENST00000459962"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6ZWM2OTA5OTgtZDU1NS01ZWQzLWFiMTgtNTVlODY4NWIyYmZkOjY4OGQ1ZTgxLWMyZjUtNWQwOS04YmQyLTA1NmMxNmFhM2U2NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.555delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162407","gene_strand":-1,"symbol":"PPAP2B"},"is_canonical":false,"transcript_id":"ENST00000472957"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6ZWM2OTA5OTgtZDU1NS01ZWQzLWFiMTgtNTVlODY4NWIyYmZkOjFjNDMzMTE0LTJkYWItNWFjNC1hZmRiLTRiYWJjYTc1Y2I2YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*134delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162407","gene_strand":-1,"symbol":"PPAP2B"},"is_canonical":true,"transcript_id":"ENST00000371250"}}}]}},"cosmic_id":null,"end_position":56496417,"genomic_dna_change":"chr1:g.56496417delT","id":"U3NtOmVjNjkwOTk4LWQ1NTUtNWVkMy1hYjE4LTU1ZTg2ODViMmJmZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":4,"ssm_id":"ec690998-d555-5ed3-ab18-55e8685b2bfd","start_position":56496417}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOjI5MjBmYWZiLTJkYWYtNTRkZC1hNjdmLWZhMWMyZTdhMGQyZA==","transcript":{"aa_change":"S432*","annotation":{"hgvsc":"c.1295C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000371231"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOjZhNGNkMWUzLTQ4MWItNWM5Zi05YzZlLTU2M2ZiNjA3ODQxMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000371232"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOmUwYTA3MDAzLTc5MGMtNWViOS1iMWEzLTU1YmJhNGUwYmRkYQ==","transcript":{"aa_change":"S399*","annotation":{"hgvsc":"c.1196C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":true,"transcript_id":"ENST00000371236"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOmFkNzQyYWVjLWQ1NDktNWFiOS1hZGE5LWMyMjUxOWY5ODFkNg==","transcript":{"aa_change":"S397*","annotation":{"hgvsc":"c.1190C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000420954"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOjJiNzhkMjIzLWFmZDAtNTk1OC1hNDRjLWNiMjAzZTE4YWI1YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1951C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000485760"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhhZmNlYmMtZTRiYy01YWYyLWEyMTUtNmI1ZWFjMWJmMzMxOjIzZjNmYTBmLTkwMjAtNTBiNi05N2RkLTIyMGEwY2UzM2UzZA==","transcript":{"aa_change":"S399*","annotation":{"hgvsc":"c.1196C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000414851"}}}]}},"cosmic_id":["COSM3805647","COSM3805648"],"end_position":57015131,"genomic_dna_change":"chr1:g.57015131G>C","id":"U3NtOjA4YWZjZWJjLWU0YmMtNWFmMi1hMjE1LTZiNWVhYzFiZjMzMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":2,"ssm_id":"08afcebc-e4bc-5af2-a215-6b5eac1bf331","start_position":57015131}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjE0ZDZhNWEwLWFhZGItNWQ2Yy04YzZkLTZkNmQyMDNlOGZmOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*100delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000370990"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjAxYTgxYWJmLTgwYzYtNTJlNy1hZDhlLTdkYWQ0YTUyODQ5ZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000493607"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjRhMzViMTFlLTM0MmUtNTJiMC04MjAxLWYzMmY0Mjk0ZTA2Yg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*100delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":true,"transcript_id":"ENST00000370995"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjUyOWYyMWQ1LTZjNjctNTMxYy04Mzk4LThmZmM1NmRjNWVmZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*100delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000370994"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjE5YjljZjAyLTFiM2UtNWQyMy05NTU0LTgwNThlODkxYjg5OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*100delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000361219"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MjA3ZjE2YjQtNzkwYy01Njg0LWIwYjAtZTk5MzE4YmVmOGEyOjFjMDAxY2RjLWFhMjgtNTg4Ni04Zjk1LTFkMzYxMDMyMzlmMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000142864","gene_strand":-1,"symbol":"SERBP1"},"is_canonical":false,"transcript_id":"ENST00000462814"}}}]}},"cosmic_id":null,"end_position":67413107,"genomic_dna_change":"chr1:g.67413107delT","id":"U3NtOjIwN2YxNmI0LTc5MGMtNTY4NC1iMGIwLWU5OTMxOGJlZjhhMiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":2,"ssm_id":"207f16b4-790c-5684-b0b0-e99318bef8a2","start_position":67413107}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NjBkMDEyNTgtZjhkOS01MjkzLWE4OTUtNjMxMGIyYjI1MzI3OjhlMTQyY2IyLTNiNjctNTIzMS04YTk0LTVhZWRlNjkwN2ZhMA==","transcript":{"aa_change":"F16delinsLS","annotation":{"hgvsc":"c.47_48insATC","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODERATE"},"consequence_type":"protein_altering_variant","gene":{"gene_id":"ENSG00000187889","gene_strand":-1,"symbol":"C1orf168"},"is_canonical":true,"transcript_id":"ENST00000343433"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NjBkMDEyNTgtZjhkOS01MjkzLWE4OTUtNjMxMGIyYjI1MzI3OjNhZDE1MmI2LTJhMWMtNTU3NC04Y2RiLWU5YjM5NTEzM2VjNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.453_454insATC","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000187889","gene_strand":-1,"symbol":"C1orf168"},"is_canonical":false,"transcript_id":"ENST00000484327"}}}]}},"cosmic_id":null,"end_position":56792766,"genomic_dna_change":"chr1:g.56792765_56792766insGAT","id":"U3NtOjYwZDAxMjU4LWY4ZDktNTI5My1hODk1LTYzMTBiMmIyNTMyNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small insertion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"-","score":2,"ssm_id":"60d01258-f8d9-5293-a895-6310b2b25327","start_position":56792765}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NzEzMzA5OWYtOTI1MS01ZGE5LTgxNmItNmQ5NTM2YmIxOWVkOmQ1MTNlOWM5LWFiNDMtNTE5OC1hYWQ2LWQ0NjcyNzk4MWU4OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000465376"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NzEzMzA5OWYtOTI1MS01ZGE5LTgxNmItNmQ5NTM2YmIxOWVkOjQ3MDJkYTEwLWZhMTAtNTRiMi1hZTc3LTc1OWM1YTkwZmQ4OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000481702"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NzEzMzA5OWYtOTI1MS01ZGE5LTgxNmItNmQ5NTM2YmIxOWVkOjk0NGRkNWUxLTFiMTgtNWU5NC1hNjA1LTU1MzU5OTc0OWQwZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000471473"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6NzEzMzA5OWYtOTI1MS01ZGE5LTgxNmItNmQ5NTM2YmIxOWVkOmY4NDUxZjNkLTY4MjMtNWM5OC05ZTQxLWY4NTQ0YzYyNjBhNw==","transcript":{"aa_change":"K860Nfs*16","annotation":{"hgvsc":"c.2580delA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":true,"transcript_id":"ENST00000342505"}}}]}},"cosmic_id":["COSM1343905"],"end_position":64841314,"genomic_dna_change":"chr1:g.64841314delT","id":"U3NtOjcxMzMwOTlmLTkyNTEtNWRhOS04MTZiLTZkOTUzNmJiMTllZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":2,"ssm_id":"7133099f-9251-5da9-816b-6d9536bb19ed","start_position":64841314}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOjEwOTZhZTk0LTdjYmUtNWEyZS05MTI4LTFkNTdkYTVjNjZlZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.214C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000468759"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOjE2NzI3NjhkLTFmMzktNTM5Ni1iM2YyLTFkMDA4YzMwZmM2Yw==","transcript":{"aa_change":"L268L","annotation":{"hgvsc":"c.804C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":true,"transcript_id":"ENST00000354431"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOjM2MGYzMzliLTBiZWItNTk4Yy05MDYwLThmOTUyNWUwN2EyNA==","transcript":{"aa_change":"L160L","annotation":{"hgvsc":"c.480C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000370909"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOjc1OGZhNGU5LTIwMGQtNWVlYS05Y2Q2LWE4M2FhYjBhNTE1ZA==","transcript":{"aa_change":"L268L","annotation":{"hgvsc":"c.804C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000415760"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6YTVlOWVmMzgtZjQ4ZS01MzI3LWIwNzgtOGJiY2JjZmNjNzkxOmFjZGNiNjIwLTIwZDgtNWM5MS04M2I1LWE0YjNmOTE4NmE5ZQ==","transcript":{"aa_change":"L268L","annotation":{"hgvsc":"c.804C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000395089"}}}]}},"cosmic_id":null,"end_position":74109457,"genomic_dna_change":"chr1:g.74109457G>A","id":"U3NtOmE1ZTllZjM4LWY0OGUtNTMyNy1iMDc4LThiYmNiY2ZjYzc5MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":2,"ssm_id":"a5e9ef38-f48e-5327-b078-8bbcbcfcc791","start_position":74109457}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6ZjVkOTg1NjgtMWE5ZS01NzJjLTgzMWQtODA1NDFiNzkzM2MzOjMzNzA3ZjQwLWZiYzItNWE0MS1iNGQ4LTUxZTlmYzBjZDhlNQ==","transcript":{"aa_change":"A214G","annotation":{"hgvsc":"c.641C>G","polyphen_impact":"benign","polyphen_score":0.048,"sift_impact":"tolerated","sift_score":0.39,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184292","gene_strand":-1,"symbol":"TACSTD2"},"is_canonical":true,"transcript_id":"ENST00000371225"}}}]}},"cosmic_id":null,"end_position":58576516,"genomic_dna_change":"chr1:g.58576516G>C","id":"U3NtOmY1ZDk4NTY4LTFhOWUtNTcyYy04MzFkLTgwNTQxYjc5MzNjMyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":2,"ssm_id":"f5d98568-1a9e-572c-831d-80541b7933c3","start_position":58576516}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDAxYzU0M2MtZWRhNS01ZjdhLTg5NmUtNmMwZjQ2ODIwMzFjOjc5Y2I4ZDYwLTk5MTctNWYxYy1hNmQ0LTlhMzA0YjlmYjE3Mg==","transcript":{"aa_change":"N38S","annotation":{"hgvsc":"c.113A>G","polyphen_impact":"probably_damaging","polyphen_score":0.998,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203985","gene_strand":-1,"symbol":"LDLRAD1"},"is_canonical":false,"transcript_id":"ENST00000420619"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDAxYzU0M2MtZWRhNS01ZjdhLTg5NmUtNmMwZjQ2ODIwMzFjOjhlNGRhYTkzLTM3MTctNWUzZC1iOTQxLTJiMjg2NzMwOTZiMw==","transcript":{"aa_change":"N77S","annotation":{"hgvsc":"c.230A>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203985","gene_strand":-1,"symbol":"LDLRAD1"},"is_canonical":true,"transcript_id":"ENST00000371360"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDAxYzU0M2MtZWRhNS01ZjdhLTg5NmUtNmMwZjQ2ODIwMzFjOjZjNDFhMzFlLWU3NmQtNTIwNC04YWQ3LWUzMmZlODc0NzA0MA==","transcript":{"aa_change":"N34S","annotation":{"hgvsc":"c.101A>G","polyphen_impact":"probably_damaging","polyphen_score":0.995,"sift_impact":"deleterious","sift_score":0.04,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203985","gene_strand":-1,"symbol":"LDLRAD1"},"is_canonical":false,"transcript_id":"ENST00000545928"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDAxYzU0M2MtZWRhNS01ZjdhLTg5NmUtNmMwZjQ2ODIwMzFjOjZmOTQ3Njk0LWJkZDEtNWRhZi04NzBjLTZmYzNmODU3ZDlhNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.74-1843A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203985","gene_strand":-1,"symbol":"LDLRAD1"},"is_canonical":false,"transcript_id":"ENST00000371362"}}}]}},"cosmic_id":["COSM3805580","COSM3805581"],"end_position":54012253,"genomic_dna_change":"chr1:g.54012253T>C","id":"U3NtOjAwMWM1NDNjLWVkYTUtNWY3YS04OTZlLTZjMGY0NjgyMDMxYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"001c543c-eda5-5f7a-896e-6c0f4682031c","start_position":54012253}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDA4N2QyZDgtZjc0My01YmYzLTgxMWMtMzE5MjFhZjdmZDgxOjIzMTYzOWQ5LThkZTUtNTAyNC1hODI4LWYwMDFlZTAyYTdmYQ==","transcript":{"aa_change":"P219P","annotation":{"hgvsc":"c.657G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000143006","gene_strand":1,"symbol":"DMRTB1"},"is_canonical":true,"transcript_id":"ENST00000371445"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDA4N2QyZDgtZjc0My01YmYzLTgxMWMtMzE5MjFhZjdmZDgxOmZlYmE1MGJjLTEwY2EtNTI5MS04ZDhjLThjNTU5ODdlYTRjOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.665G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000143006","gene_strand":1,"symbol":"DMRTB1"},"is_canonical":false,"transcript_id":"ENST00000463126"}}}]}},"cosmic_id":["COSM1474082"],"end_position":53461552,"genomic_dna_change":"chr1:g.53461552G>A","id":"U3NtOjAwODdkMmQ4LWY3NDMtNWJmMy04MTFjLTMxOTIxYWY3ZmQ4MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0087d2d8-f743-5bf3-811c-31921af7fd81","start_position":53461552}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDBiNTllOGYtYzU1My01MWYxLWFiYWEtOTJlYTM5N2JmMmVjOjdjMTJhMTQ1LTA3ZmMtNWZlYi04M2Q4LWNiZDhjZTFjYWFiZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-872-12141G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000033122","gene_strand":1,"symbol":"LRRC7"},"is_canonical":false,"transcript_id":"ENST00000415775"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDBiNTllOGYtYzU1My01MWYxLWFiYWEtOTJlYTM5N2JmMmVjOmM2Y2ZiZTJkLWE5MzMtNTQyZS05MDg4LWU3M2UxODZhZDg4MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.534-12141G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000033122","gene_strand":1,"symbol":"LRRC7"},"is_canonical":true,"transcript_id":"ENST00000035383"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDBiNTllOGYtYzU1My01MWYxLWFiYWEtOTJlYTM5N2JmMmVjOjRlMjkyYWI3LTJkMzItNTNmOC1hYmIxLTRjOGZiZGUzMTgyMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.549-12141G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000033122","gene_strand":1,"symbol":"LRRC7"},"is_canonical":false,"transcript_id":"ENST00000310961"}}}]}},"cosmic_id":null,"end_position":69919366,"genomic_dna_change":"chr1:g.69919366G>A","id":"U3NtOjAwYjU5ZThmLWM1NTMtNTFmMS1hYmFhLTkyZWEzOTdiZjJlYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"00b59e8f-c553-51f1-abaa-92ea397bf2ec","start_position":69919366}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOjIxYjFmYmY0LWE1MDMtNWQ4MS1iMWJkLTk0YThkYjA1MmU5MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*67C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":false,"transcript_id":"ENST00000370985"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOjk2MjllZWQyLTk4MDMtNTJlNi1iMzU4LTkzZTQ0ZTU5OTJjNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*144C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":false,"transcript_id":"ENST00000617962"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOjZkNGM1NDY4LTk5NWEtNTBiZS04ZGNlLTUyNTEwYjVlYTRkYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*67C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":true,"transcript_id":"ENST00000370986"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOmQ0MTBkMmMyLTVmYzgtNWFkNi1iMTczLTk5NmY5ZjUzY2Q1Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":false,"transcript_id":"ENST00000460575"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExYmQxMDAtNzFhMy01Mjk5LWEwNjgtODI3Y2FhODMyMzcxOjEzNGY4MTg3LTU0ZjAtNTg4ZS04NjFmLTZkMTU1YmJiZGRmMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116717","gene_strand":1,"symbol":"GADD45A"},"is_canonical":false,"transcript_id":"ENST00000484245"}}}]}},"cosmic_id":null,"end_position":67687841,"genomic_dna_change":"chr1:g.67687841C>G","id":"U3NtOjAxMWJkMTAwLTcxYTMtNTI5OS1hMDY4LTgyN2NhYTgzMjM3MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"011bd100-71a3-5299-a068-827caa832371","start_position":67687841}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExZWY0NTItZDY2OS01ZWY2LWE1ZjgtYTk0ZWM0YmI0YWFjOjM4OGI0NTQwLTU0OTgtNTk2OC1iZGViLTZmNWJmNzRhMTM5NA==","transcript":{"aa_change":"L24F","annotation":{"hgvsc":"c.72G>C","polyphen_impact":"benign","polyphen_score":0.272,"sift_impact":"tolerated_low_confidence","sift_score":0.72,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":true,"transcript_id":"ENST00000329654"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDExZWY0NTItZDY2OS01ZWY2LWE1ZjgtYTk0ZWM0YmI0YWFjOjk0MDA2YjgxLWMyODYtNWNhOS1hYTMxLTMyN2ZmODg2Yjc3OA==","transcript":{"aa_change":"L24F","annotation":{"hgvsc":"c.72G>C","polyphen_impact":"benign","polyphen_score":0.272,"sift_impact":"tolerated_low_confidence","sift_score":0.72,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000341517"}}}]}},"cosmic_id":["COSM1474150"],"end_position":65918626,"genomic_dna_change":"chr1:g.65918626G>C","id":"U3NtOjAxMWVmNDUyLWQ2NjktNWVmNi1hNWY4LWE5NGVjNGJiNGFhYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"011ef452-d669-5ef6-a5f8-a94ec4bb4aac","start_position":65918626}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDEyYWQ0YTAtOTMzOC01NmY0LTg5ODItNDEwMGJjNjMxYmFiOmMyNmYxOGYxLWViY2ItNTU3YS1hY2Q5LTJhN2RjZGExYjhmZQ==","transcript":{"aa_change":"R176R","annotation":{"hgvsc":"c.528A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000198841","gene_strand":-1,"symbol":"KTI12"},"is_canonical":true,"transcript_id":"ENST00000371614"}}}]}},"cosmic_id":null,"end_position":52033234,"genomic_dna_change":"chr1:g.52033234T>C","id":"U3NtOjAxMmFkNGEwLTkzMzgtNTZmNC04OTgyLTQxMDBiYzYzMWJhYiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"012ad4a0-9338-56f4-8982-4100bc631bab","start_position":52033234}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjkyOTlkZWFmLTYyMGYtNTkyZS1hOGY3LTBjYzAyY2NlOGYyNQ==","transcript":{"aa_change":"A334A","annotation":{"hgvsc":"c.1002G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":false,"transcript_id":"ENST00000371274"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjczYjY4ODM4LTFhZDMtNWMxMC04YzI1LTk1ZGFkODQzMTFkNA==","transcript":{"aa_change":"A334A","annotation":{"hgvsc":"c.1002G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":true,"transcript_id":"ENST00000371276"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjU4ZTY2ODA3LWFlYWMtNWE1Yy1hNGE4LWQ5MzJiMmNkMWQxYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":false,"transcript_id":"ENST00000474654"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjYxMzRjZjYxLWM2NjMtNTJlYS05YWQ3LTA3ZTBkYjBhYjEzYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1995G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":false,"transcript_id":"ENST00000488771"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFhYjdkOWUtODQzZS01ODhkLWJlZDgtOTQ2MzVhZmQ1NzM3OjU2MjhjOTYwLTc3OWYtNTZhZi04YWZjLTUzZDZkNzhmNjFhMQ==","transcript":{"aa_change":"A115A","annotation":{"hgvsc":"c.345G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000006555","gene_strand":-1,"symbol":"TTC22"},"is_canonical":false,"transcript_id":"ENST00000448308"}}}]}},"cosmic_id":["COSM1474092","COSM1474093"],"end_position":54786001,"genomic_dna_change":"chr1:g.54786001C>T","id":"U3NtOjAxYWI3ZDllLTg0M2UtNTg4ZC1iZWQ4LTk0NjM1YWZkNTczNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"01ab7d9e-843e-588d-bed8-94635afd5737","start_position":54786001}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFiMjAwOTAtYmZkZS01ZGUzLWIwOTYtOTAyNGQ0MTAxOWQ1OjIyZDAzMzQzLTczZjAtNWVmMy1hMTZkLTBkYjZhY2E3ODRhNA==","transcript":{"aa_change":"X393_splice","annotation":{"hgvsc":"c.1177_1184+3delCTCATGCAGTG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"splice_case_variant","gene":{"gene_id":"ENSG00000162398","gene_strand":1,"symbol":"C1orf177"},"is_canonical":true,"transcript_id":"ENST00000371273"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDFiMjAwOTAtYmZkZS01ZGUzLWIwOTYtOTAyNGQ0MTAxOWQ1Ojg3YWZiYjM1LTQzYWMtNTYyMy1hYTkxLWY1MmMxNWNiMTQwZQ==","transcript":{"aa_change":"X393_splice","annotation":{"hgvsc":"c.1177_1184+3delCTCATGCAGTG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"splice_case_variant","gene":{"gene_id":"ENSG00000162398","gene_strand":1,"symbol":"C1orf177"},"is_canonical":false,"transcript_id":"ENST00000358193"}}}]}},"cosmic_id":null,"end_position":54817123,"genomic_dna_change":"chr1:g.54817113delTGCTCATGCAG","id":"U3NtOjAxYjIwMDkwLWJmZGUtNWRlMy1iMDk2LTkwMjRkNDEwMTlkNSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"TGCTCATGCAG","score":1,"ssm_id":"01b20090-bfde-5de3-b096-9024d41019d5","start_position":54817113}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI2ZDZmNjAtYTE4ZS01NjJiLWI4YWQtN2Y3ZjZlYWVhMTM3OjM5Yzg1ODExLWFjYTYtNTFiNS05NTY3LTU3MmM4MDE3MjU2NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000461039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI2ZDZmNjAtYTE4ZS01NjJiLWI4YWQtN2Y3ZjZlYWVhMTM3OmY1Mzc0OGQ5LTA4MTctNTg2ZS05Y2M1LTFiOGYyYmE5NTE3MA==","transcript":{"aa_change":"R349Q","annotation":{"hgvsc":"c.1046G>A","polyphen_impact":"benign","polyphen_score":0.015,"sift_impact":"tolerated","sift_score":0.36,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":true,"transcript_id":"ENST00000371088"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI2ZDZmNjAtYTE4ZS01NjJiLWI4YWQtN2Y3ZjZlYWVhMTM3OjNmNDgxNzQ0LWZkM2QtNTg5ZS1iNWQ1LWFjYzUxMWNlMmY5OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.485G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000460678"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI2ZDZmNjAtYTE4ZS01NjJiLWI4YWQtN2Y3ZjZlYWVhMTM3OjdiNWM4Y2RjLTIxZTgtNWZmMy1hMzM1LTA0YzJkMDk4N2U2MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.326G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000496956"}}}]}},"cosmic_id":["COSM3805749"],"end_position":63551824,"genomic_dna_change":"chr1:g.63551824G>A","id":"U3NtOjAyNmQ2ZjYwLWExOGUtNTYyYi1iOGFkLTdmN2Y2ZWFlYTEzNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"026d6f60-a18e-562b-b8ad-7f7f6eaea137","start_position":63551824}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI4YzRkOWEtY2NjYi01OWE2LTg3ZTgtMjIzNWRjYTkzOGIzOmIzYzA4NDNmLWZhNzgtNTY0My1iNzRjLTIzMTBlMjAwZWE2MQ==","transcript":{"aa_change":"P305S","annotation":{"hgvsc":"c.913C>T","polyphen_impact":"probably_damaging","polyphen_score":0.988,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000066557","gene_strand":-1,"symbol":"LRRC40"},"is_canonical":true,"transcript_id":"ENST00000370952"}}}]}},"cosmic_id":["COSM426655"],"end_position":70175874,"genomic_dna_change":"chr1:g.70175874G>A","id":"U3NtOjAyOGM0ZDlhLWNjY2ItNTlhNi04N2U4LTIyMzVkY2E5MzhiMyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"028c4d9a-cccb-59a6-87e8-2235dca938b3","start_position":70175874}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI5ZDUyY2EtYjVlMC01NDJiLTg3NWQtZGVmZDg4OGE1NWY2OmEyM2UwYjQzLTBhMjUtNWMwNC05ZWQ2LTFjNDhjYzZkYzhjYQ==","transcript":{"aa_change":"M187V","annotation":{"hgvsc":"c.557A>G","polyphen_impact":"benign","polyphen_score":0.26,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116641","gene_strand":-1,"symbol":"DOCK7"},"is_canonical":false,"transcript_id":"ENST00000454575"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI5ZDUyY2EtYjVlMC01NDJiLTg3NWQtZGVmZDg4OGE1NWY2OjgyY2ZjZGI1LTg0OTctNTkyMC04NmM1LTJmYzAxYjBhNzY1YQ==","transcript":{"aa_change":"M1015V","annotation":{"hgvsc":"c.3043A>G","polyphen_impact":"benign","polyphen_score":0.187,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116641","gene_strand":-1,"symbol":"DOCK7"},"is_canonical":true,"transcript_id":"ENST00000251157"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI5ZDUyY2EtYjVlMC01NDJiLTg3NWQtZGVmZDg4OGE1NWY2OjZlYzk1ZDJhLTJjZjYtNTFiZS1hN2UyLTEwOGIxNWVlNzUyMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116641","gene_strand":-1,"symbol":"DOCK7"},"is_canonical":false,"transcript_id":"ENST00000614472"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDI5ZDUyY2EtYjVlMC01NDJiLTg3NWQtZGVmZDg4OGE1NWY2OjMwOTAwMWZkLTg2MTAtNTllNy05YTQyLTQxYWJkNTlhOTQzOQ==","transcript":{"aa_change":"M984V","annotation":{"hgvsc":"c.2950A>G","polyphen_impact":"benign","polyphen_score":0.036,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116641","gene_strand":-1,"symbol":"DOCK7"},"is_canonical":false,"transcript_id":"ENST00000340370"}}}]}},"cosmic_id":null,"end_position":62542610,"genomic_dna_change":"chr1:g.62542610T>C","id":"U3NtOjAyOWQ1MmNhLWI1ZTAtNTQyYi04NzVkLWRlZmQ4ODhhNTVmNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"029d52ca-b5e0-542b-875d-defd888a55f6","start_position":62542610}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOjFiMGNhMTg5LWFhYTctNWNiNi1iMjc2LTMxNGNkMDBkNmI2NQ==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.941,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000371341"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOjI1MmQ4ODdjLWNkNmEtNTNmYy04YjgzLWRmOGFlY2M1NDM4Ng==","transcript":{"aa_change":"S182Y","annotation":{"hgvsc":"c.545C>A","polyphen_impact":"probably_damaging","polyphen_score":0.941,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":true,"transcript_id":"ENST00000234831"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmUzNzUzYzFlLTI1MGMtNWM1YS04NDU5LTAyYzBmNjViNmMzZQ==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.941,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000371344"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmUxODkyZmIzLTNhMTAtNWRjMC04YjlkLTgwZjFmMjAzYWNjMQ==","transcript":{"aa_change":"S193Y","annotation":{"hgvsc":"c.578C>A","polyphen_impact":"probably_damaging","polyphen_score":0.99,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000452421"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmU0NTEyZWU3LWRhNGEtNTY3Yy1iMzM4LTMyMTM2ZjA3OWQyOQ==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.941,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000371348"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmJiOTM5ZTE3LWVlNmMtNWZmNy1hMDNhLWE0YTY1YjQxMzk1YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000371337"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOjljNzM1NWIwLTgxM2MtNWQzNC04YjgxLTIxMTE5ZWQ1MTYzNA==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.964,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000440019"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDMxMDVkNGYtYTBiZi01ZmU2LWIwNTItM2UxYTAxZGM0OTVmOmNhZGFiNjVjLTBjYTctNTM5Zi05MTA1LTBkNjQxOGY1YzgwMA==","transcript":{"aa_change":"S51Y","annotation":{"hgvsc":"c.152C>A","polyphen_impact":"probably_damaging","polyphen_score":0.964,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116209","gene_strand":-1,"symbol":"TMEM59"},"is_canonical":false,"transcript_id":"ENST00000420738"}}}]}},"cosmic_id":["COSM3805582","COSM3805583","COSM3805584"],"end_position":54041804,"genomic_dna_change":"chr1:g.54041804G>T","id":"U3NtOjAzMTA1ZDRmLWEwYmYtNWZlNi1iMDUyLTNlMWEwMWRjNDk1ZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"03105d4f-a0bf-5fe6-b052-3e1a01dc495f","start_position":54041804}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDM4MmM2YjUtOWYwOS01YTY5LTllNjItNzg5NzM1NzkyZDA4OmNlMmY2MzJkLWFjMTItNTFlNS1iMTAzLTYxYjc3NjdlMDQwMg==","transcript":{"aa_change":"P399S","annotation":{"hgvsc":"c.1195C>T","polyphen_impact":"probably_damaging","polyphen_score":0.968,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157184","gene_strand":1,"symbol":"CPT2"},"is_canonical":true,"transcript_id":"ENST00000371486"}}}]}},"cosmic_id":["COSM426458"],"end_position":53210869,"genomic_dna_change":"chr1:g.53210869C>T","id":"U3NtOjAzODJjNmI1LTlmMDktNWE2OS05ZTYyLTc4OTczNTc5MmQwOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0382c6b5-9f09-5a69-9e62-789735792d08","start_position":53210869}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjAwYjQxZmJkLTg5ZGQtNTg1ZC05MWQ0LTI5MWExMDYxYTlkYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.277T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000493533"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjNjNjg5MTcyLTYxNDktNWM1Ny1hMTY1LWRlMDJjNjhiNjkxMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1076T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000440217"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmI5NTQ2OTEyLWQ2ZmUtNWRhNC1iYzE1LTJjZjg5MjFkZTVkNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*936T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000438846"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmI4NjY1MTFlLTVhY2EtNTA0ZC1iZmNlLTY2OTk0ZmVjMzdkOQ==","transcript":{"aa_change":"M503T","annotation":{"hgvsc":"c.1508T>C","polyphen_impact":"possibly_damaging","polyphen_score":0.557,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000409996"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjAzZGEzZmRhLTQ4MGEtNWYxOC1iZmViLTQwZjVjZTc3NDA4Zg==","transcript":{"aa_change":"M935T","annotation":{"hgvsc":"c.2804T>C","polyphen_impact":"benign","polyphen_score":0.402,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000339553"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjQzMWE5Mjk5LWE4OTUtNTE1Ni05NzdkLWVhYTdiNzVlNzIxOQ==","transcript":{"aa_change":"M935T","annotation":{"hgvsc":"c.2804T>C","polyphen_impact":"possibly_damaging","polyphen_score":0.557,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":true,"transcript_id":"ENST00000421030"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjg2NzI4N2RjLTY5NjItNWZkYy1hYWE0LWRiNjdlOGNhZmMxMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*384T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000440047"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOjE3MGI1ZWUzLWM2ZWEtNWNhYi05ZDI5LWJkYjNhOWE2YTU5OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*590T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000413188"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmNlNThmMWRhLWJhM2MtNWZlMS1iNjg5LTQ5YmQ0OTNhODc4Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000371287"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmY1ODIwMzljLWU1YjAtNTcwZS1hYWM3LTBmYzRkYmE4YTJkMg==","transcript":{"aa_change":"M935T","annotation":{"hgvsc":"c.2804T>C","polyphen_impact":"possibly_damaging","polyphen_score":0.617,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000395690"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQwNDU5MjEtZGQ1Yy01ZDMzLWJhYTEtODc4YzA5Nzc0YjYzOmE4ZTNjMjYwLWUwY2QtNWFhMS1iN2M5LTc2NzdjMGJlOGFlOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*936T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000422659"}}}]}},"cosmic_id":["COSM426487","COSM426488","COSM5200993"],"end_position":54692516,"genomic_dna_change":"chr1:g.54692516T>C","id":"U3NtOjA0MDQ1OTIxLWRkNWMtNWQzMy1iYWExLTg3OGMwOTc3NGI2MyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"04045921-dd5c-5d33-baa1-878c09774b63","start_position":54692516}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQ2OGYwZTctYWViNC01NDQzLTgwMTEtMjNlMDRmYzlkNjg1OjNlOTZjYTkyLWEyNjgtNTA1NS1hMDQwLWFmMDVmMWEzMGM0NA==","transcript":{"aa_change":"K87T","annotation":{"hgvsc":"c.260A>C","polyphen_impact":"possibly_damaging","polyphen_score":0.703,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116133","gene_strand":-1,"symbol":"DHCR24"},"is_canonical":true,"transcript_id":"ENST00000371269"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDQ2OGYwZTctYWViNC01NDQzLTgwMTEtMjNlMDRmYzlkNjg1OmYxMTFhOGRjLThmNzMtNTIwMy1iMjQxLWUwOTFmZWUyYzE2NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-8A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000116133","gene_strand":-1,"symbol":"DHCR24"},"is_canonical":false,"transcript_id":"ENST00000535035"}}}]}},"cosmic_id":["COSM1474096"],"end_position":54883745,"genomic_dna_change":"chr1:g.54883745T>G","id":"U3NtOjA0NjhmMGU3LWFlYjQtNTQ0My04MDExLTIzZTA0ZmM5ZDY4NSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"0468f0e7-aeb4-5443-8011-23e04fc9d685","start_position":54883745}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOjU4NWMyM2Q2LWFlOTEtNTZiOS1hYWUwLWI2NWYxOTJlYWE3ZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.141-18163T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000460671"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOjk2MDQ4ZTVhLTQ0NjYtNWM5Zi05ZTg1LTVmMzg0YTA2ZDYyMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.287+25103T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000467509"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOjk3YWM5ZmYxLWJjZWEtNWIwNy04OGEwLTZlNjczNmE0MTQwNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.890-6989T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000421528"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOjZhYWE0NjM1LTVkMWMtNWZmMS1hNjgzLWNhYWUwNTc0NjI1YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*8T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":true,"transcript_id":"ENST00000371226"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUxM2ZlZTctMGQ3MS01MmQ2LTlkNDItNDVjNGFiMTQ3ZDFkOmQ2OWIzMzgyLWZiZGEtNTk1MS04ZGU3LWMxNjE1ZjlkYzFkYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.330T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162600","gene_strand":-1,"symbol":"OMA1"},"is_canonical":false,"transcript_id":"ENST00000476933"}}}]}},"cosmic_id":["COSN23014397"],"end_position":58480957,"genomic_dna_change":"chr1:g.58480957A>C","id":"U3NtOjA1MTNmZWU3LTBkNzEtNTJkNi05ZDQyLTQ1YzRhYjE0N2QxZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"0513fee7-0d71-52d6-9d42-45c4ab147d1d","start_position":58480957}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjg4NmQ4OWFlLTYyNjEtNTRhOS1iNTMzLTBhM2VlNDlmMzBhMg==","transcript":{"aa_change":"S155L","annotation":{"hgvsc":"c.464C>T","polyphen_impact":"benign","polyphen_score":0,"sift_impact":"tolerated","sift_score":0.13,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":true,"transcript_id":"ENST00000371007"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjYwOGExOTgwLWQyZjctNTgxNy05OGZmLTQyMjEzZTJhMzQzNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1325C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000371004"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOmQyOTc5MjliLWMzNTUtNTcyNC04OTE4LTA0NmU5YWMzYjBkOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*415+878C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000544837"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjIxNTg3NjVkLTM2YjktNTM4NC1hMWRjLWE5NGUyNjI0NDhjNQ==","transcript":{"aa_change":"S155L","annotation":{"hgvsc":"c.464C>T","polyphen_impact":"benign","polyphen_score":0,"sift_impact":"tolerated","sift_score":0.13,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000371006"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjJhM2UzMzUwLWMyNjktNWE3Yi04NWEzLTBjOTgzNDc0OThjYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.629+878C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000475209"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOmE1ZTE1NDAwLTAzMjEtNTUxOS04M2RhLTE0NjRjYWRjNjk0Mw==","transcript":{"aa_change":"S226L","annotation":{"hgvsc":"c.677C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.519,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000448166"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjQ0ODBjODk1LWJiNzMtNTRlYS04ZGY4LTA3OGUwZjA3ZjJhNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000603691"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDUzZTkzN2YtOTBlNy01MWMwLTlhNDctZDJhNmUwNmY3MzNmOjlhNjNhZDEwLTdjNjAtNWIyMy1iM2JkLTEzYWM4YmQ5YzRiYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*938C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000621590"}}}]}},"cosmic_id":["COSM279327"],"end_position":67095374,"genomic_dna_change":"chr1:g.67095374G>A","id":"U3NtOjA1M2U5MzdmLTkwZTctNTFjMC05YTQ3LWQyYTZlMDZmNzMzZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"053e937f-90e7-51c0-9a47-d2a6e06f733f","start_position":67095374}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjlmMGFhNGMxLTZiZmUtNTE2Zi05NmNlLWM5ODY5ODkyNWM5Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.238_248delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000483863"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmQyNDdjYTU3LWEzNDgtNTFkNS1hYWM0LWM2NDUwMGI0NjhmMw==","transcript":{"aa_change":"V474Sfs*16","annotation":{"hgvsc":"c.1420_1430delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":true,"transcript_id":"ENST00000329654"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmJkZWQ0NmEyLTFkYjMtNWQwZS05NmI2LTMwZjUxNjc2MDBjMA==","transcript":{"aa_change":"V459Sfs*16","annotation":{"hgvsc":"c.1375_1385delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000423207"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjQ5OTQ4ZWU1LTA3YjItNTA3NS1hMDAzLWE5YzI5MjI0YjZlNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000526197"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjY0YTFjZGU2LWFhMjAtNTFhOC04MTZkLThlZWNkMWZjN2IzNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000531025"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmU4ZTUwMDYzLTdiMGYtNWNlMC05ZjU5LWI0NWY2YjQwNGMxMA==","transcript":{"aa_change":"V474Sfs*16","annotation":{"hgvsc":"c.1420_1430delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000341517"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5Ojc5YThiMjczLTk4M2MtNWM5OC1hN2E1LTFkN2Y5MjE0OGUzZQ==","transcript":{"aa_change":"V302Sfs*16","annotation":{"hgvsc":"c.904_914delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000371045"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjBhNzAzZjg1LTJjYzEtNThhZS1iNTk3LWY1OTE5OTcyZjIwZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000534463"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OjE5MzhlNTQ5LTU0NGMtNTNmNy04ZjU2LWQzYTkxMGRlZThhOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000528771"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmIwY2RhNWM1LWI2MWUtNTRhMi05YTEwLWEzNjFlZjRmMWZhOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000524999"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU3ZTZjZDUtNGM4Yy01MGRhLTllNWEtNmVlMDdlMDliZDY5OmRjY2E1NjdhLTRlOTMtNTM3ZC04ZDcyLTU3M2M2M2NkYWY3Yg==","transcript":{"aa_change":"V241Sfs*16","annotation":{"hgvsc":"c.721_731delGTGTTGGAAAA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000184588","gene_strand":1,"symbol":"PDE4B"},"is_canonical":false,"transcript_id":"ENST00000480109"}}}]}},"cosmic_id":null,"end_position":66367741,"genomic_dna_change":"chr1:g.66367731delGTGTTGGAAAA","id":"U3NtOjA1N2U2Y2Q1LTRjOGMtNTBkYS05ZTVhLTZlZTA3ZTA5YmQ2OSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"GTGTTGGAAAA","score":1,"ssm_id":"057e6cd5-4c8c-50da-9e5a-6ee07e09bd69","start_position":66367731}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU4MmRjMjUtNzAzMi01ZTgwLThlNGEtYzY3ZTgwMzgxNjE1OjJjZTY0OWFkLTlkZWEtNTViNC04MWVhLWMzODk0ZmE5Zjk4MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.804+3A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000066557","gene_strand":-1,"symbol":"LRRC40"},"is_canonical":true,"transcript_id":"ENST00000370952"}}}]}},"cosmic_id":null,"end_position":70178848,"genomic_dna_change":"chr1:g.70178848T>C","id":"U3NtOjA1ODJkYzI1LTcwMzItNWU4MC04ZTRhLWM2N2U4MDM4MTYxNSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"0582dc25-7032-5e80-8e4a-c67e80381615","start_position":70178848}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjIwYzJiMGM5LTNhNzMtNTVlZS05NDQ0LTlkZDY3MzM5OWRhMw==","transcript":{"aa_change":"D88N","annotation":{"hgvsc":"c.262G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.743,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000545314"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjU0YWMxOTljLWQzMTktNTUxYi1hNTFhLTg2NDliNTE4OWZlNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.205G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000479060"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1Ojk0Y2ZlYjNmLTlhZDAtNWM1OS1hNDhjLTQ2YTM0MzI2NWVlMA==","transcript":{"aa_change":"D36N","annotation":{"hgvsc":"c.106G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.743,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000546702"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OmJjZjcyZGVlLTUwMDEtNTFmZS1iMWJlLTQ5NWRiM2VkMTFmMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.509G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000497030"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjQzZDcwNTBmLTI2MDgtNTIzMS1hYjY3LWY0M2QxMjVmYTdlMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.781G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000470888"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjRhYWI2YzUzLTZkYmEtNTQ4MS1iNDViLTMyZmUyNjg4NmVlNA==","transcript":{"aa_change":"D88N","annotation":{"hgvsc":"c.262G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.743,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":true,"transcript_id":"ENST00000395334"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OjJhN2MyNGJhLTM5OGUtNTc0Yi05NzViLTY5ZWFmN2M5YmMyNA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.256G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000474968"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDU5YTk4ZmMtOGFiMi01MjhiLTk3OGUtZDQ2ZDllMDA5YzM1OmFjYzFjOTQwLTE5NTItNTM3My04MmM3LWM2YzU2ZDJiY2RhYw==","transcript":{"aa_change":"D88N","annotation":{"hgvsc":"c.262G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.743,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162433","gene_strand":1,"symbol":"AK4"},"is_canonical":false,"transcript_id":"ENST00000327299"}}}]}},"cosmic_id":["COSM426591"],"end_position":65190826,"genomic_dna_change":"chr1:g.65190826G>A","id":"U3NtOjA1OWE5OGZjLThhYjItNTI4Yi05NzhlLWQ0NmQ5ZTAwOWMzNSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"059a98fc-8ab2-528b-978e-d46d9e009c35","start_position":65190826}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDVhY2MwY2QtZGU4Yy01NmFjLWE5OTEtM2Y2NzY0NTViNDc1OjI1MzRjN2FiLTYzZjItNTlkMC05ZDNjLWQxMGUwMjk5NzdmYg==","transcript":{"aa_change":"R484Gfs*36","annotation":{"hgvsc":"c.1449_1459delGCGCCGCGCCT","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157131","gene_strand":1,"symbol":"C8A"},"is_canonical":true,"transcript_id":"ENST00000361249"}}}]}},"cosmic_id":null,"end_position":56912478,"genomic_dna_change":"chr1:g.56912468delCCTGCGCCGCG","id":"U3NtOjA1YWNjMGNkLWRlOGMtNTZhYy1hOTkxLTNmNjc2NDU1YjQ3NSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"CCTGCGCCGCG","score":1,"ssm_id":"05acc0cd-de8c-56ac-a991-3f676455b475","start_position":56912468}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDVkMjMyM2MtYTJkZC01NTU4LWFjMjEtZjY5NTkwNjYwMDUxOjVlMjY2ZjkwLWE0NmItNTVlYi05YzQ0LTU5ZWVmZTBhMjFlMQ==","transcript":{"aa_change":"A881G","annotation":{"hgvsc":"c.2642C>G","polyphen_impact":"benign","polyphen_score":0.005,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000395325"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDVkMjMyM2MtYTJkZC01NTU4LWFjMjEtZjY5NTkwNjYwMDUxOmE4MDdhZTJiLTc2OTktNWJiYy1iYTVkLTA5MDNjMDJmYmVhYg==","transcript":{"aa_change":"A938G","annotation":{"hgvsc":"c.2813C>G","polyphen_impact":"benign","polyphen_score":0.027,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":true,"transcript_id":"ENST00000371069"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDVkMjMyM2MtYTJkZC01NTU4LWFjMjEtZjY5NTkwNjYwMDUxOjg5MWEzOGIzLTRhOGMtNTczMi1hNmYyLTY1ZjZjYWI4MDA1Zg==","transcript":{"aa_change":"A868G","annotation":{"hgvsc":"c.2603C>G","polyphen_impact":"benign","polyphen_score":0.005,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000263441"}}}]}},"cosmic_id":["COSM426594","COSM5217668"],"end_position":65412925,"genomic_dna_change":"chr1:g.65412925C>G","id":"U3NtOjA1ZDIzMjNjLWEyZGQtNTU1OC1hYzIxLWY2OTU5MDY2MDA1MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"05d2323c-a2dd-5558-ac21-f69590660051","start_position":65412925}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDYzYjVhYTQtMWQzZC01ZjI0LWE4ZTMtMDJiMmRkMDgzZTUyOjg4YmNkMDA2LTVmMTUtNWY0Yi1iNTE5LTc5NDYzMTVhMTQ4Nw==","transcript":{"aa_change":"T455T","annotation":{"hgvsc":"c.1365G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000085840","gene_strand":-1,"symbol":"ORC1"},"is_canonical":true,"transcript_id":"ENST00000371568"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDYzYjVhYTQtMWQzZC01ZjI0LWE4ZTMtMDJiMmRkMDgzZTUyOmU3ZTNjMWQyLTE0OGYtNWZhOS1hMTgxLTI5MGU4OTI1MDlkYg==","transcript":{"aa_change":"T455T","annotation":{"hgvsc":"c.1365G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000085840","gene_strand":-1,"symbol":"ORC1"},"is_canonical":false,"transcript_id":"ENST00000371566"}}}]}},"cosmic_id":null,"end_position":52388460,"genomic_dna_change":"chr1:g.52388460C>T","id":"U3NtOjA2M2I1YWE0LTFkM2QtNWYyNC1hOGUzLTAyYjJkZDA4M2U1MiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"063b5aa4-1d3d-5f24-a8e3-02b2dd083e52","start_position":52388460}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY3ZjUxNjYtNGZlMi01YmJmLTkxYWQtYjk2MTUwNDYyMGE4OmI0ZGM2NGZlLWE2ODMtNWQwZC05YTNhLWZkNjIxNzcyOTMzMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*2703+4T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000415760"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY3ZjUxNjYtNGZlMi01YmJmLTkxYWQtYjk2MTUwNDYyMGE4OjZmMTJjOTQxLTE1YTgtNTA5MC04ZWUxLWIwNDllY2E0NjQ4Zg==","transcript":{"aa_change":"M415R","annotation":{"hgvsc":"c.1244T>G","polyphen_impact":"possibly_damaging","polyphen_score":0.543,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000395089"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY3ZjUxNjYtNGZlMi01YmJmLTkxYWQtYjk2MTUwNDYyMGE4OjZhNTIyMTVjLTk1MGYtNWU1Yy1hYWE3LWM2NzIzZjlkYWI3MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.131-14718T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000417067"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY3ZjUxNjYtNGZlMi01YmJmLTkxYWQtYjk2MTUwNDYyMGE4OjdmNDgwZWQ3LTc4MzMtNTRlYi04MmU2LTQ3Yzc5NTE0YTVjNA==","transcript":{"aa_change":"M415R","annotation":{"hgvsc":"c.1244T>G","polyphen_impact":"possibly_damaging","polyphen_score":0.543,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":true,"transcript_id":"ENST00000354431"}}}]}},"cosmic_id":["COSM426679"],"end_position":74041687,"genomic_dna_change":"chr1:g.74041687A>C","id":"U3NtOjA2N2Y1MTY2LTRmZTItNWJiZi05MWFkLWI5NjE1MDQ2MjBhOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"067f5166-4fe2-5bbf-91ad-b961504620a8","start_position":74041687}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZGZlZmMtYTQwZi01ZjFmLTllNmYtZmZlZDdhYzEyOTE1OmE1NTljYjg0LTg3ODEtNTBjNy05N2Y3LTM2ODQ3YmFiZDc3ZQ==","transcript":{"aa_change":"E39K","annotation":{"hgvsc":"c.115G>A","polyphen_impact":"benign","polyphen_score":0.005,"sift_impact":"tolerated","sift_score":0.67,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162437","gene_strand":1,"symbol":"RAVER2"},"is_canonical":false,"transcript_id":"ENST00000294428"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZGZlZmMtYTQwZi01ZjFmLTllNmYtZmZlZDdhYzEyOTE1OmIwMTFkMDhlLTNiNDQtNTE4MC04ZDE5LTkzNzAxYWI0NTU4Zg==","transcript":{"aa_change":"E39K","annotation":{"hgvsc":"c.115G>A","polyphen_impact":"benign","polyphen_score":0.011,"sift_impact":"tolerated","sift_score":0.61,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162437","gene_strand":1,"symbol":"RAVER2"},"is_canonical":true,"transcript_id":"ENST00000371072"}}}]}},"cosmic_id":["COSM3805767","COSM5832659"],"end_position":64745287,"genomic_dna_change":"chr1:g.64745287G>A","id":"U3NtOjA2OGRmZWZjLWE0MGYtNWYxZi05ZTZmLWZmZWQ3YWMxMjkxNSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"068dfefc-a40f-5f1f-9e6f-ffed7ac12915","start_position":64745287}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZmJhYjAtYTVjYy01ZDE5LThmNDEtNWI4NTE4N2ZmNzZkOjY3ZTc1MTEzLTdjNDMtNWU3Yy1hMWNlLTBkMDliNTcwNTIwMg==","transcript":{"aa_change":"E107E","annotation":{"hgvsc":"c.320G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000125703","gene_strand":1,"symbol":"ATG4C"},"is_canonical":false,"transcript_id":"ENST00000414558"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZmJhYjAtYTVjYy01ZDE5LThmNDEtNWI4NTE4N2ZmNzZkOjQ5OWU4YjRhLWQ5YzAtNWNmYi1hZmIxLWNiZjc5ZDQ3NWM3YQ==","transcript":{"aa_change":"E363E","annotation":{"hgvsc":"c.1089G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000125703","gene_strand":1,"symbol":"ATG4C"},"is_canonical":false,"transcript_id":"ENST00000371120"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDY4ZmJhYjAtYTVjYy01ZDE5LThmNDEtNWI4NTE4N2ZmNzZkOmZkODM1NzdhLTQ0MTctNTk3Zi04ZTQ2LTNiYjVmNDJiMThjZA==","transcript":{"aa_change":"E363E","annotation":{"hgvsc":"c.1089G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000125703","gene_strand":1,"symbol":"ATG4C"},"is_canonical":true,"transcript_id":"ENST00000317868"}}}]}},"cosmic_id":null,"end_position":62834852,"genomic_dna_change":"chr1:g.62834852G>A","id":"U3NtOjA2OGZiYWIwLWE1Y2MtNWQxOS04ZjQxLTViODUxODdmZjc2ZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"068fbab0-a5cc-5d19-8f41-5b85187ff76d","start_position":62834852}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwYjNkNWQtNmU4Ny01YzZjLThiZGUtZjQ3MjQ3M2QwZDU3OjIxYmMwZGY2LTYwNWEtNTZiNC1hNDNjLWZhZDI4Y2IwZjdmNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.947-2438C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":true,"transcript_id":"ENST00000371088"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwYjNkNWQtNmU4Ny01YzZjLThiZGUtZjQ3MjQ3M2QwZDU3OmE0YjU5MTI1LTc3NDEtNWRmNy05NjQwLTljNDRjNzYwNDhhZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.227-2438C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000496956"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwYjNkNWQtNmU4Ny01YzZjLThiZGUtZjQ3MjQ3M2QwZDU3OmNlN2MwMmY2LWUxYzEtNWZmYy05ODhhLWMxOWMwZTk3YjdjZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.342+937C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000203965","gene_strand":1,"symbol":"EFCAB7"},"is_canonical":false,"transcript_id":"ENST00000460678"}}}]}},"cosmic_id":null,"end_position":63549287,"genomic_dna_change":"chr1:g.63549287C>G","id":"U3NtOjA3MGIzZDVkLTZlODctNWM2Yy04YmRlLWY0NzI0NzNkMGQ1NyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"070b3d5d-6e87-5c6c-8bde-f472473d0d57","start_position":63549287}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwZDkwYzEtZjA4YS01NzljLWE2MGUtNTY4NmE4ZjliOGU4OjQ1MmJhNGQ5LWY1OGYtNTMyZC05OTk1LTBjNWJkYzY0ZjVkNQ==","transcript":{"aa_change":"G397C","annotation":{"hgvsc":"c.1189G>T","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000021852","gene_strand":-1,"symbol":"C8B"},"is_canonical":true,"transcript_id":"ENST00000371237"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwZDkwYzEtZjA4YS01NzljLWE2MGUtNTY4NmE4ZjliOGU4OjVhMmRhZmFkLWM4OGMtNTA3ZC1hOWIxLWE5NTU5MjhhNmI3Yw==","transcript":{"aa_change":"G345C","annotation":{"hgvsc":"c.1033G>T","polyphen_impact":"probably_damaging","polyphen_score":0.998,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000021852","gene_strand":-1,"symbol":"C8B"},"is_canonical":false,"transcript_id":"ENST00000543257"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDcwZDkwYzEtZjA4YS01NzljLWE2MGUtNTY4NmE4ZjliOGU4OjI2YTZiZjJkLTY0ZGUtNTA2NS1hMDRiLTdhOTcxMTVjYWYyOQ==","transcript":{"aa_change":"G335C","annotation":{"hgvsc":"c.1003G>T","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000021852","gene_strand":-1,"symbol":"C8B"},"is_canonical":false,"transcript_id":"ENST00000535057"}}}]}},"cosmic_id":["COSM3805642"],"end_position":56943741,"genomic_dna_change":"chr1:g.56943741C>A","id":"U3NtOjA3MGQ5MGMxLWYwOGEtNTc5Yy1hNjBlLTU2ODZhOGY5YjhlOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"070d90c1-f08a-579c-a60e-5686a8f9b8e8","start_position":56943741}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDczZWE2ZjEtYjAyNy01MzkwLWI1M2QtNDdjMTc5MzZjMzE2OmVlMWY0N2E4LTI4ZTgtNWM2MS1iYzc4LWU3NjA5YTIzMWM1Nw==","transcript":{"aa_change":"I1016Dfs*10","annotation":{"hgvsc":"c.3045dupG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":true,"transcript_id":"ENST00000290039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDczZWE2ZjEtYjAyNy01MzkwLWI1M2QtNDdjMTc5MzZjMzE2OjFiMWJiMTRjLTlhYjYtNTg4Mi05YzNjLWQ1OGIyZTk2ZWVhYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3136dupG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000470527"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDczZWE2ZjEtYjAyNy01MzkwLWI1M2QtNDdjMTc5MzZjMzE2OmI2MjM4MGY1LTI4YzYtNTQ2ZC04MTAxLWRhYzc0YWNlY2VjNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3428dupG","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000495994"}}}]}},"cosmic_id":["COSM5218159","COSM5832656"],"end_position":64678259,"genomic_dna_change":"chr1:g.64678258_64678259insG","id":"U3NtOjA3M2VhNmYxLWIwMjctNTM5MC1iNTNkLTQ3YzE3OTM2YzMxNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small insertion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"-","score":1,"ssm_id":"073ea6f1-b027-5390-b53d-47c17936c316","start_position":64678258}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjViYjQ1ZWU3LWE3ZmQtNWRiZi05NjNiLWVlYzA5ZjUyOGIwNw==","transcript":{"aa_change":"E591D","annotation":{"hgvsc":"c.1773G>T","polyphen_impact":"benign","polyphen_score":0.03,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000453295"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjM2ZjUwOTY3LTY1NjYtNTRhNi04N2I2LTI2Zjk1NzhmNTdmZA==","transcript":{"aa_change":"E595D","annotation":{"hgvsc":"c.1785G>T","polyphen_impact":"benign","polyphen_score":0.116,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000371714"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OmYyNjdmZDdjLWIwYjUtNTVlNy05MWExLWYwYWYyNWJmNTY3OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2308G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000475697"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjE5NzE1MjJiLThmN2QtNWUyZS05OTYwLTllODRlZGViZGY3MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1594G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000531819"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjM1YWZmZGM1LTA1ZjQtNWMxMi04MWNmLTM2NTdjN2QxY2MxOA==","transcript":{"aa_change":"E608D","annotation":{"hgvsc":"c.1824G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000428468"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjgwNGY5ZjNkLWVkZTMtNTQxZC04MzdkLTE0OTZlNTk0YTE2OQ==","transcript":{"aa_change":"E443D","annotation":{"hgvsc":"c.1329G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000531828"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjM1ODU3YTFiLTQ4M2YtNTQ0YS05MGE0LTJlYTBmYjNmNzNmZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1736G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000435274"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OmQxYjA4ZDkwLWY1NmEtNTlhMi05NmMwLTFkYmM0MWQ1YjJlOA==","transcript":{"aa_change":"E498D","annotation":{"hgvsc":"c.1494G>T","polyphen_impact":"benign","polyphen_score":0.017,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000361556"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjJjOTM0NDhiLWU2YWYtNTc3My04MzcwLWYzN2ExYThmYmU4YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1541G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000495776"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjU5M2EwZjI1LWRkNWUtNWE1OS05MTJjLWVjZDkwMTRlMTQyYw==","transcript":{"aa_change":"E1?","annotation":{"hgvsc":"c.3G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.1,"vep_impact":"HIGH"},"consequence_type":"start_lost","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000625138"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjY4MDQyNWY1LTgzMzItNTIwOS1iMjdkLWMxMzc0MTlhNDkyZQ==","transcript":{"aa_change":"E430D","annotation":{"hgvsc":"c.1290G>T","polyphen_impact":"benign","polyphen_score":0.116,"sift_impact":"tolerated","sift_score":0.11,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000462759"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjFkZjg1OWI5LWU2ZjctNWI4ZS04ODYxLWViM2RlNmU2OWM5ZQ==","transcript":{"aa_change":"E618D","annotation":{"hgvsc":"c.1854G>T","polyphen_impact":"benign","polyphen_score":0.107,"sift_impact":"tolerated","sift_score":0.09,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":true,"transcript_id":"ENST00000447887"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjU4M2U2Yjc5LTBjYmMtNWI4NC1hMWFlLTAxM2I4MTcwODg2ZA==","transcript":{"aa_change":"E430D","annotation":{"hgvsc":"c.1290G>T","polyphen_impact":"benign","polyphen_score":0.116,"sift_impact":"tolerated","sift_score":0.11,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000486942"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg0YjI5YzctYzcyNS01Y2FhLThjZDYtZjFjMGQwODA1MTg0OjQ5YzI2ZWFkLTg2YTEtNWFmYi05NWFlLTEzNzBkMzMwZDFiZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000117859","gene_strand":1,"symbol":"OSBPL9"},"is_canonical":false,"transcript_id":"ENST00000533825"}}}]}},"cosmic_id":["COSM3805528","COSM3805529","COSM3805530","COSM3805531","COSM3805532","COSM5832627"],"end_position":51784577,"genomic_dna_change":"chr1:g.51784577G>T","id":"U3NtOjA4NGIyOWM3LWM3MjUtNWNhYS04Y2Q2LWYxYzBkMDgwNTE4NCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"084b29c7-c725-5caa-8cd6-f1c0d0805184","start_position":51784577}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOjJmYWFlMWIxLTMyODAtNTNmNi04OWRiLTRhYjdkMmYxYmMxNA==","transcript":{"aa_change":"S319*","annotation":{"hgvsc":"c.956C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000316485"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOmVkZTIzYzQ2LWEyZDEtNTk1NS1hZTE4LTMzYjQwYjk2ZWI3YQ==","transcript":{"aa_change":"S319*","annotation":{"hgvsc":"c.956C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000613764"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOjc2NzA1ODBlLWZlNmYtNWQ1Yy1iYjJjLWFjMTQ4YzYyMWU1NQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1070C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000459752"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOmU2NjMxOGFjLWUzZjUtNTA1Ny04NTYwLTkxMzc4YzdlMjY4MA==","transcript":{"aa_change":"S319*","annotation":{"hgvsc":"c.956C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":true,"transcript_id":"ENST00000371158"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDg4YmUxYmItZTEzYi01MzUyLWJkNzMtMjJhYzJiMTU4MzRiOjA5NmY5ZDU5LWJlZWItNThkNi1iYjc5LWIzNGFkYjMyZTIyMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1070C>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484562"}}}]}},"cosmic_id":["COSM3805690"],"end_position":61787860,"genomic_dna_change":"chr1:g.61787860C>A","id":"U3NtOjA4OGJlMWJiLWUxM2ItNTM1Mi1iZDczLTIyYWMyYjE1ODM0YiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"088be1bb-e13b-5352-bd73-22ac2b15834b","start_position":61787860}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhkZDBkNDUtNjM1OC01ZmJmLWI1YmYtNzUzODNlMzc0NTExOmI5MTJmMWVhLWYyZjctNTc2OC05N2RjLTM3NjNhYTg5NGQzZg==","transcript":{"aa_change":"Q158L","annotation":{"hgvsc":"c.473A>T","polyphen_impact":"probably_damaging","polyphen_score":0.928,"sift_impact":"deleterious","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162594","gene_strand":1,"symbol":"IL23R"},"is_canonical":false,"transcript_id":"ENST00000425614"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhkZDBkNDUtNjM1OC01ZmJmLWI1YmYtNzUzODNlMzc0NTExOmVjYzU5MzYwLTJmMjItNTc5Zi05Njc1LTkxNjhjNTA0YmQyMg==","transcript":{"aa_change":"Q413L","annotation":{"hgvsc":"c.1238A>T","polyphen_impact":"possibly_damaging","polyphen_score":0.607,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162594","gene_strand":1,"symbol":"IL23R"},"is_canonical":true,"transcript_id":"ENST00000347310"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhkZDBkNDUtNjM1OC01ZmJmLWI1YmYtNzUzODNlMzc0NTExOjc4NDAwNDZlLTAyMmUtNTQ1My05NzRlLTNmN2VjMTkwNzI0OQ==","transcript":{"aa_change":"Q11L","annotation":{"hgvsc":"c.32A>T","polyphen_impact":"possibly_damaging","polyphen_score":0.607,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162594","gene_strand":1,"symbol":"IL23R"},"is_canonical":false,"transcript_id":"ENST00000395227"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhkZDBkNDUtNjM1OC01ZmJmLWI1YmYtNzUzODNlMzc0NTExOmIwODIzNjcyLWYwMzQtNTQ4Ni1iYjNlLTUyNzVmNjU0MjllYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*64A>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000162594","gene_strand":1,"symbol":"IL23R"},"is_canonical":false,"transcript_id":"ENST00000473881"}}}]}},"cosmic_id":["COSM3805839"],"end_position":67255926,"genomic_dna_change":"chr1:g.67255926A>T","id":"U3NtOjA4ZGQwZDQ1LTYzNTgtNWZiZi1iNWJmLTc1MzgzZTM3NDUxMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"08dd0d45-6358-5fbf-b5bf-75383e374511","start_position":67255926}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjgzNGUxYTY0LWJmNmItNWM0MC1iMjJlLTQ0NjJkNWJiMmRhMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.866-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000354412"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjUwMzkxZDYxLTMxYjMtNTFiZS1iNmQyLWVkNTA4NDVkMDVlYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1884G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000459674"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjAxMjlmNTBiLWRlYmItNWVmZi04YzVjLWJhNzU0M2RmZjVlNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.743-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000347547"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjBhYzMxYmZmLTdkMjgtNWMwZC05YzE4LTFmNzExNjI0NzNiYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000481431"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjZjNDQ0OTg5LWM3YWYtNTZiNi05MDE3LWVmZTNiYzBjNmNmOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.866-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000613948"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOmExNmJjZTQ4LTcwYzUtNThhNC1hMWM4LTcyNDNhNzg4NzAwOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1253-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":true,"transcript_id":"ENST00000306052"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjlmNTYyN2Q5LTg0ZDMtNWEwZi1iOTE4LTAzNDExMmNiY2ZlZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-89-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000465675"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOmU0OGYxMTgxLTQzMDMtNTcwZi1iZjdlLTcyMjViMjVkMDE0Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000460214"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOmFjMmY4ZTYzLTk3YzktNTYwNy04ZTM1LWFlZDk4NThlNGI1Zg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*195-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000480045"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOjNkMjA5MmI3LTdjZTItNWY1My1iMzE4LTQ3ZjA0N2ZkZTFmNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.319-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000475501"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlMThmNzItZmI3Yy01YjMxLWFhOWYtYjY2NTJkNDEzZTQzOmFhYWQ4NjNiLTY4YTMtNTNhNC1iMWQ0LWEwMzRlMzYwZmQ1MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1253-68G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000371454"}}}]}},"cosmic_id":["COSN24004383"],"end_position":53266715,"genomic_dna_change":"chr1:g.53266715C>G","id":"U3NtOjA4ZTE4ZjcyLWZiN2MtNWIzMS1hYTlmLWI2NjUyZDQxM2U0MyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"08e18f72-fb7c-5b31-aa9f-b6652d413e43","start_position":53266715}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlODQzMWEtMjM2Yi01YmI5LTgzZjAtMjc1ZTA1MjAyZTRmOjIwMmMxZTQ4LWJmNGYtNWUxYi1hMzhjLTBlOGJhODM4NGQwZg==","transcript":{"aa_change":"C21F","annotation":{"hgvsc":"c.62G>T","polyphen_impact":"probably_damaging","polyphen_score":0.986,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000406510"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlODQzMWEtMjM2Yi01YmI5LTgzZjAtMjc1ZTA1MjAyZTRmOjc1ZjAxMTE2LTM1ZDMtNTUxNC1hYjc2LTQxMDcyOWQ5Y2RkMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000616738"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlODQzMWEtMjM2Yi01YmI5LTgzZjAtMjc1ZTA1MjAyZTRmOjY4OTdmYzYyLWUxZDAtNTllMS04OGU3LWUxZWQ4ZDNhMWJmOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000371060"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDhlODQzMWEtMjM2Yi01YmI5LTgzZjAtMjc1ZTA1MjAyZTRmOmY4ZGQ3OThlLWYxYWYtNTU1Ni1hZjJmLTQ1MzBkYzMxMzc1ZA==","transcript":{"aa_change":"C954F","annotation":{"hgvsc":"c.2861G>T","polyphen_impact":"probably_damaging","polyphen_score":0.986,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":true,"transcript_id":"ENST00000349533"}}}]}},"cosmic_id":null,"end_position":65636378,"genomic_dna_change":"chr1:g.65636378G>T","id":"U3NtOjA4ZTg0MzFhLTIzNmItNWJiOS04M2YwLTI3NWUwNTIwMmU0ZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"08e8431a-236b-5bb9-83f0-275e05202e4f","start_position":65636378}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkwYmEwNjUtZmRjMy01ZWUwLWI1YjQtZWU0Y2FlOWQ3NjYwOmVhNGM2YjcyLTgyZmItNWIyZS04ZDNkLTZhZWFhZjViMjg0Mw==","transcript":{"aa_change":"R748T","annotation":{"hgvsc":"c.2243G>C","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000357206"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkwYmEwNjUtZmRjMy01ZWUwLWI1YjQtZWU0Y2FlOWQ3NjYwOjNiZmEyNGZlLTIyNmYtNWI2MC1iMWJlLWNlM2RhNWQwYzg1ZA==","transcript":{"aa_change":"R748T","annotation":{"hgvsc":"c.2243G>C","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000371591"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkwYmEwNjUtZmRjMy01ZWUwLWI1YjQtZWU0Y2FlOWQ3NjYwOjk3M2M2YTM3LTJkMTMtNWE5Yi04MDU3LThiMDAyM2MxNTE2Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2415G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000361625"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkwYmEwNjUtZmRjMy01ZWUwLWI1YjQtZWU0Y2FlOWQ3NjYwOjJkMzMyZmQwLTY4YjktNWJjOS04ZWQyLTkyNjRlYjIxYzg4NQ==","transcript":{"aa_change":"R748T","annotation":{"hgvsc":"c.2243G>C","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":true,"transcript_id":"ENST00000287727"}}}]}},"cosmic_id":["COSM3805540"],"end_position":52263837,"genomic_dna_change":"chr1:g.52263837G>C","id":"U3NtOjA5MGJhMDY1LWZkYzMtNWVlMC1iNWI0LWVlNGNhZTlkNzY2MCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"090ba065-fdc3-5ee0-b5b4-ee4cae9d7660","start_position":52263837}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OmE4NmE3YjNmLWU3YjItNTFhYi05ZWM1LTc5MjU2ZjRmNGFhMQ==","transcript":{"aa_change":"R33R","annotation":{"hgvsc":"c.99T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000370893"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OmEyMjU4NjZhLTQ5NzctNTlmNy1hOGMzLTU1MzZiYjZlNzFlOA==","transcript":{"aa_change":"R33R","annotation":{"hgvsc":"c.99T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000370899"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OjA1ZTNhODljLWQ0YmYtNTJlOS1hYmY0LTcyNjk1MDUwZmEyYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.125T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000533006"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OjYyNDMyNWVmLWM1YzEtNTlkNi04YzhhLThkNjVjZmZmOTIwNQ==","transcript":{"aa_change":"R33R","annotation":{"hgvsc":"c.99T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000370895"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OmI4MWNmNGJiLTIxNmYtNTQ3MS1hYzI5LWJjOTI1MTFmYjQwNA==","transcript":{"aa_change":"R46R","annotation":{"hgvsc":"c.138T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":true,"transcript_id":"ENST00000557284"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MDkyYzYyNjYtNGUxNy01MDRkLTg1ODMtYjlkMjljYTdkNzE5OmQwZTQxYjU5LWM4Y2QtNWQzOC1iMGU4LTZmZjkyNGJlN2FiMw==","transcript":{"aa_change":"R33R","annotation":{"hgvsc":"c.99T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000259030","gene_strand":1,"symbol":"FPGT-TNNI3K"},"is_canonical":false,"transcript_id":"ENST00000534632"}}}]}},"cosmic_id":["COSM682195"],"end_position":74199680,"genomic_dna_change":"chr1:g.74199680T>C","id":"U3NtOjA5MmM2MjY2LTRlMTctNTA0ZC04NTgzLWI5ZDI5Y2E3ZDcxOSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"092c6266-4e17-504d-8583-b9d29ca7d719","start_position":74199680}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGEzMjBkYmUtOTdkNC01ZmJlLWEyMTUtNzg4NDVjYzQ4ZmMzOjJhMzA0ZDY0LWE4YTgtNTI5Zi1hYTUzLTJmNzlmMzg0YjA0NA==","transcript":{"aa_change":"R110W","annotation":{"hgvsc":"c.328C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.843,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162409","gene_strand":1,"symbol":"PRKAA2"},"is_canonical":true,"transcript_id":"ENST00000371244"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGEzMjBkYmUtOTdkNC01ZmJlLWEyMTUtNzg4NDVjYzQ4ZmMzOjVkMWVlNjFhLTNlZDAtNWI5Ni1iNmUwLTUxOGQ1OTc0YzM3Yw==","transcript":{"aa_change":"R110W","annotation":{"hgvsc":"c.328C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.825,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162409","gene_strand":1,"symbol":"PRKAA2"},"is_canonical":false,"transcript_id":"ENST00000610361"}}}]}},"cosmic_id":null,"end_position":56691485,"genomic_dna_change":"chr1:g.56691485C>T","id":"U3NtOjBhMzIwZGJlLTk3ZDQtNWZiZS1hMjE1LTc4ODQ1Y2M0OGZjMyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0a320dbe-97d4-5fbe-a215-78845cc48fc3","start_position":56691485}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjQ5YWQ2ZmYzLWE1Y2MtNTg3Ni1iZWQzLTFmZjllNGE2MmE0ZQ==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000371060"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOmEyMTE3NzUzLWJiMjgtNTEzZS04NGI3LTEyOWZhODAwNWMyZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-389C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000406510"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOmRhOTM4MDkwLWY4ZDEtNWFkNi1hZjhhLWMwMjcyNmYzYzI2Mg==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000371059"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjZlMTNkMDQ0LWU2ODItNTM1OC1hY2RlLWNkMjkyN2MyOTE3NA==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000344610"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjNlYzRjYmNiLTcyZDUtNTFkMi04YWM4LWY1MjdmZjMxOTNlZA==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000616738"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjEyY2JmZTNkLTI2ODAtNTE3Ni05OGUyLTJmZmQ1NGRlNjE0YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.382C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000462765"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOmIxYTM1YWY2LTRhNjgtNTllYy04ZmU3LTllNTUzMWE1NjZkYw==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":false,"transcript_id":"ENST00000371058"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGE5ODJkNTUtZTUxMC01MzhiLTkyZGQtZjNhZWJjZDJkOTVkOjAxMTNlZjViLTBhY2ItNTFjMC04YjdhLWYwNjUwNTkxM2VhZQ==","transcript":{"aa_change":"H78Y","annotation":{"hgvsc":"c.232C>T","polyphen_impact":"benign","polyphen_score":0.001,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116678","gene_strand":1,"symbol":"LEPR"},"is_canonical":true,"transcript_id":"ENST00000349533"}}}]}},"cosmic_id":["COSM6005812","COSM6005813","COSM6005814","COSM6005815"],"end_position":65570664,"genomic_dna_change":"chr1:g.65570664C>T","id":"U3NtOjBhOTgyZDU1LWU1MTAtNTM4Yi05MmRkLWYzYWViY2QyZDk1ZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0a982d55-e510-538b-92dd-f3aebcd2d95d","start_position":65570664}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOmU4ODFkZTMzLTEzZTctNWQ3MC04ZDIzLTI2ZjkzMzYyMzNiNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3671G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000466440"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOjM5N2Q2ZTc2LTg1Y2EtNTMyMy1hNmNjLTcyZmE4YzBlNjgzYw==","transcript":{"aa_change":"R81Q","annotation":{"hgvsc":"c.241G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.629,"sift_impact":"tolerated_low_confidence","sift_score":0.64,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000494469"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOjllNjc3MTQ2LWNlOWYtNTU5MS04ODI5LTNiY2FmMzk5YWE1OQ==","transcript":{"aa_change":"R77Q","annotation":{"hgvsc":"c.228G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.562,"sift_impact":"tolerated_low_confidence","sift_score":0.82,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000528457"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOjNlMGJiZTEyLWQ3YzItNTBjOS04MGJjLWRiNjVhZDU4ZDY0MA==","transcript":{"aa_change":"R38Q","annotation":{"hgvsc":"c.113G>A","polyphen_impact":"benign","polyphen_score":0.003,"sift_impact":"tolerated_low_confidence","sift_score":0.84,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000527941"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOjg5N2QxODY0LTBiY2EtNTc2Ni05NjVjLWUyZDgwNmI4Y2YwZA==","transcript":{"aa_change":"R1575Q","annotation":{"hgvsc":"c.4724G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.47,"sift_impact":"tolerated_low_confidence","sift_score":0.81,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":true,"transcript_id":"ENST00000257177"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOmY4NTI5MzE2LWU2M2EtNWI1ZC1iMzUwLTFlNjc5ZjhmYjJjNA==","transcript":{"aa_change":"R28Q","annotation":{"hgvsc":"c.82G>A","polyphen_impact":"benign","polyphen_score":0.06,"sift_impact":"tolerated","sift_score":1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000471623"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFjMGYwNjQtM2NiNS01NDY0LThlNGItNGNjN2NiZmI2MjQyOmI4NDhhYzc5LTdmNjYtNTVlMy04MTdlLTAwMGE3YjYzMTE1NA==","transcript":{"aa_change":"R1574Q","annotation":{"hgvsc":"c.4721G>A","polyphen_impact":"benign","polyphen_score":0.003,"sift_impact":"tolerated_low_confidence","sift_score":0.81,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000371544"}}}]}},"cosmic_id":["COSM910669"],"end_position":52425495,"genomic_dna_change":"chr1:g.52425495C>T","id":"U3NtOjBhYzBmMDY0LTNjYjUtNTQ2NC04ZTRiLTRjYzdjYmZiNjI0MiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0ac0f064-3cb5-5464-8e4b-4cc7cbfb6242","start_position":52425495}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFkMDFhODgtNDJiOC01Y2JjLWFkYTYtZmM5ZDkyYzZmZDgyOmQ0OGY4ZmQ4LTUyOWEtNTg2MS1iNzRhLTQ0NTE5MWVjNTdjMQ==","transcript":{"aa_change":"L176F","annotation":{"hgvsc":"c.528G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.12,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085840","gene_strand":-1,"symbol":"ORC1"},"is_canonical":true,"transcript_id":"ENST00000371568"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGFkMDFhODgtNDJiOC01Y2JjLWFkYTYtZmM5ZDkyYzZmZDgyOmIzNTJhZDg3LTU2YmMtNTk2NS1iOWY1LWViZWUxNWFlY2QxYg==","transcript":{"aa_change":"L176F","annotation":{"hgvsc":"c.528G>T","polyphen_impact":"benign","polyphen_score":0.02,"sift_impact":"tolerated","sift_score":0.12,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085840","gene_strand":-1,"symbol":"ORC1"},"is_canonical":false,"transcript_id":"ENST00000371566"}}}]}},"cosmic_id":["COSM3805545"],"end_position":52396239,"genomic_dna_change":"chr1:g.52396239C>A","id":"U3NtOjBhZDAxYTg4LTQyYjgtNWNiYy1hZGE2LWZjOWQ5MmM2ZmQ4MiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0ad01a88-42b8-5cbc-ada6-fc9d92c6fd82","start_position":52396239}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2MjYxYzYtZTE1YS01ZDYyLTkwNmQtYWE4Zjg1NWEzMThhOmU4NDZkYTczLTZlMTctNTcyZC04NDQ3LWQ5NWU1OGFhNTgyMg==","transcript":{"aa_change":"E198Q","annotation":{"hgvsc":"c.592G>C","polyphen_impact":"benign","polyphen_score":0.374,"sift_impact":"tolerated","sift_score":0.17,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132855","gene_strand":1,"symbol":"ANGPTL3"},"is_canonical":true,"transcript_id":"ENST00000371129"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2MjYxYzYtZTE1YS01ZDYyLTkwNmQtYWE4Zjg1NWEzMThhOjExMjY1MGVkLTkyMDktNWQwZC1iNGE2LTIwZDY4ZTVkOGI2Yw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000132855","gene_strand":1,"symbol":"ANGPTL3"},"is_canonical":false,"transcript_id":"ENST00000493994"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2MjYxYzYtZTE1YS01ZDYyLTkwNmQtYWE4Zjg1NWEzMThhOmM1NjQwNzIxLTc5N2ItNTQ3OS05MGYwLWRhMTg0NmVhNWJkMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000132855","gene_strand":1,"symbol":"ANGPTL3"},"is_canonical":false,"transcript_id":"ENST00000482591"}}}]}},"cosmic_id":["COSM3805724"],"end_position":62598792,"genomic_dna_change":"chr1:g.62598792G>C","id":"U3NtOjBiNjI2MWM2LWUxNWEtNWQ2Mi05MDZkLWFhOGY4NTVhMzE4YSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0b6261c6-e15a-5d62-906d-aa8f855a318a","start_position":62598792}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjBmZTEyNWEwLTE3Y2YtNWNmYi1hZjQ3LTYwODJiODYwNzg5OA==","transcript":{"aa_change":"S531*","annotation":{"hgvsc":"c.1592C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000414851"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjUzOWI5OWI3LWRkNDUtNWVhNC05ZjAwLTc1NjZiZjg4YmU3Yg==","transcript":{"aa_change":"S564*","annotation":{"hgvsc":"c.1691C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000371231"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjgyYjQxODAxLTFiNjctNTU2Ni05YWQ1LTEyNTU4MjU3NDA0Yw==","transcript":{"aa_change":"S529*","annotation":{"hgvsc":"c.1586C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000420954"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjUyOTQ1MjYxLTg3MTQtNTdlNi04ZjQzLWEzNTNlMzkwMWU4Ng==","transcript":{"aa_change":"S531*","annotation":{"hgvsc":"c.1592C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":true,"transcript_id":"ENST00000371236"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOmRkNTIyNWU2LTcwYTktNTg4OC05NGNhLTU2NWFkYTgyMGE5Mw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2347C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000485760"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGI2NjFjZjMtYjEzNi01M2FiLWFmZTgtNjUzZGU3N2EzOWNkOjBjNWYzODliLTJmYTEtNTJkNy04NjcyLWU1ZTk4ZmUwMzUwNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000173406","gene_strand":-1,"symbol":"DAB1"},"is_canonical":false,"transcript_id":"ENST00000371232"}}}]}},"cosmic_id":null,"end_position":57010771,"genomic_dna_change":"chr1:g.57010771G>C","id":"U3NtOjBiNjYxY2YzLWIxMzYtNTNhYi1hZmU4LTY1M2RlNzdhMzljZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0b661cf3-b136-53ab-afe8-653de77a39cd","start_position":57010771}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMxNDZhYjgtMGMwNi01YmE1LWJiNjktNTc2YzQzYjRmMGYwOjlmNjFlNDVlLWJlYjktNTEyNS1hMzExLWM5NTI5NzRlMDY4Yg==","transcript":{"aa_change":"M543I","annotation":{"hgvsc":"c.1629G>A","polyphen_impact":"benign","polyphen_score":0.003,"sift_impact":"tolerated","sift_score":0.07,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":true,"transcript_id":"ENST00000290039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMxNDZhYjgtMGMwNi01YmE1LWJiNjktNTc2YzQzYjRmMGYwOjVmMWQ3ZWYwLTJkOTktNTNmNi1iNmJhLTBhNTAwMWNlNDg5MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2012G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000495994"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMxNDZhYjgtMGMwNi01YmE1LWJiNjktNTc2YzQzYjRmMGYwOjEzMWY2YmFkLTExZDUtNTQwNy04YmE3LWQ1NjI4NjA2ZjQ3MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1720G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000470527"}}}]}},"cosmic_id":["COSM426581","COSM5832652"],"end_position":64654803,"genomic_dna_change":"chr1:g.64654803G>A","id":"U3NtOjBjMTQ2YWI4LTBjMDYtNWJhNS1iYjY5LTU3NmM0M2I0ZjBmMCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0c146ab8-0c06-5ba5-bb69-576c43b4f0f0","start_position":64654803}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMyNTBmNjYtNzU5NC01Mzc4LThiZDEtYzE3YTI1ZWNmMmZkOjE4OWVjZTdiLTY1OTUtNWY4My04YWM1LTRiMGQzN2ViNzU0ZA==","transcript":{"aa_change":"R157W","annotation":{"hgvsc":"c.469C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.586,"sift_impact":"tolerated","sift_score":0.17,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116133","gene_strand":-1,"symbol":"DHCR24"},"is_canonical":false,"transcript_id":"ENST00000535035"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGMyNTBmNjYtNzU5NC01Mzc4LThiZDEtYzE3YTI1ZWNmMmZkOmRjOGVlYzNkLTVhYWUtNWJlNy04OGNiLTQ5ZmE1NDhmMGEyNg==","transcript":{"aa_change":"R246W","annotation":{"hgvsc":"c.736C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.586,"sift_impact":"tolerated","sift_score":0.17,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116133","gene_strand":-1,"symbol":"DHCR24"},"is_canonical":true,"transcript_id":"ENST00000371269"}}}]}},"cosmic_id":["COSM4009006"],"end_position":54871490,"genomic_dna_change":"chr1:g.54871490G>A","id":"U3NtOjBjMjUwZjY2LTc1OTQtNTM3OC04YmQxLWMxN2EyNWVjZjJmZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0c250f66-7594-5378-8bd1-c17a25ecf2fd","start_position":54871490}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM0ZTE3YTYtNzYyZS01ZmM0LTlhM2EtYWMxZDIxMjRjOTc4OjRhMzRkNmE5LTkxNjEtNTg2ZS05MjRjLTllNWQyMjQwYjczOQ==","transcript":{"aa_change":"Y946Y","annotation":{"hgvsc":"c.2838C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":true,"transcript_id":"ENST00000371069"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM0ZTE3YTYtNzYyZS01ZmM0LTlhM2EtYWMxZDIxMjRjOTc4OjY3OTUzMTBlLTM1NGQtNTRjNi1hMzM0LWNmYWY4ZGM0YjZhYg==","transcript":{"aa_change":"Y889Y","annotation":{"hgvsc":"c.2667C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000395325"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM0ZTE3YTYtNzYyZS01ZmM0LTlhM2EtYWMxZDIxMjRjOTc4OmY2N2ZmZTVkLTYwY2EtNTliMC1hNDQyLTkwNGVkYWRmNDI0Zg==","transcript":{"aa_change":"Y876Y","annotation":{"hgvsc":"c.2628C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000263441"}}}]}},"cosmic_id":null,"end_position":65412950,"genomic_dna_change":"chr1:g.65412950C>T","id":"U3NtOjBjNGUxN2E2LTc2MmUtNWZjNC05YTNhLWFjMWQyMTI0Yzk3OCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0c4e17a6-762e-5fc4-9a3a-ac1d2124c978","start_position":65412950}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM1MzkwOTEtMWM1YS01ZmMxLWFmZTktODM0YTRhNDIzODc0OmZiNTFlZTZlLWE2MWItNTY2OC1hYjNjLTZhMjQ4NWUxYWRmMg==","transcript":{"aa_change":"V248F","annotation":{"hgvsc":"c.742G>T","polyphen_impact":"probably_damaging","polyphen_score":0.932,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085832","gene_strand":-1,"symbol":"EPS15"},"is_canonical":false,"transcript_id":"ENST00000371730"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGM1MzkwOTEtMWM1YS01ZmMxLWFmZTktODM0YTRhNDIzODc0OjkwNTg5MzEyLTZlOWEtNWQwMy05NDg1LTMwZjhlODQzNDllZQ==","transcript":{"aa_change":"V248F","annotation":{"hgvsc":"c.742G>T","polyphen_impact":"probably_damaging","polyphen_score":0.921,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085832","gene_strand":-1,"symbol":"EPS15"},"is_canonical":true,"transcript_id":"ENST00000371733"}}}]}},"cosmic_id":["COSM426422"],"end_position":51447015,"genomic_dna_change":"chr1:g.51447015C>A","id":"U3NtOjBjNTM5MDkxLTFjNWEtNWZjMS1hZmU5LTgzNGE0YTQyMzg3NCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0c539091-1c5a-5fc1-afe9-834a4a423874","start_position":51447015}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmI1YTg3MDhkLTU2YmEtNTM3NS04NmUzLTFhNThmMjA5ZmNhZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.149+6566C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000479364"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmRhZjJkMWMxLWY1YmItNTUxYy1hNjQ3LTllOWIzODI0OTYwMQ==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000403491"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmY4ZTdmYzc4LTBhM2UtNTU4OS1iMWQ3LWMzY2MwODI4M2NjYw==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000371185"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmFkOThiOTgzLWY2MzQtNThhMi04ZTI0LTRjOWUzM2M5OGY3OQ==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000371184"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmZlODg2ZjllLTdhODgtNTkxMi1iNzg0LTJjYzQ0ZWFkZGI4ZA==","transcript":{"aa_change":"L112L","annotation":{"hgvsc":"c.336C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000407417"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOjc0ZDYxMWQ0LTVjOWItNWRmOC04YjhkLTY2YTY5Y2E4Nzg1Yg==","transcript":{"aa_change":"L24L","annotation":{"hgvsc":"c.70C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000496712"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmM4OWViNTYzLWRmZTctNTE3Mi1iNmE2LWQzYmJiMzI1MDljNQ==","transcript":{"aa_change":"L165L","annotation":{"hgvsc":"c.495C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":true,"transcript_id":"ENST00000371189"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOjkxZmM4NzFlLThhZGItNTIyMC04ODY2LTZlM2IzZTg3M2YwMQ==","transcript":{"aa_change":"L143L","annotation":{"hgvsc":"c.429C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000371191"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOmE2MTQyNzllLTM5N2UtNTgzMC1hY2NmLWIwODBjMmM3MzU0Mw==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000485903"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOjY3ODJkNDI2LWM0ZjYtNTFmYi1hNWUyLWU1ODFiZTc1NDljNQ==","transcript":{"aa_change":"L120L","annotation":{"hgvsc":"c.360C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000371187"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0Y2EzYTQtZmY4Ni01YzZiLWJjNmYtMWJmYjkwN2Y5NGVlOjEzMWYxNGU4LTg5ZjktNTA2My05OTBlLTczNzMzZWIwMjk0Mg==","transcript":{"aa_change":"L73L","annotation":{"hgvsc":"c.219C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162599","gene_strand":1,"symbol":"NFIA"},"is_canonical":false,"transcript_id":"ENST00000476646"}}}]}},"cosmic_id":["COSM4834830","COSM4834831","COSM4834832"],"end_position":61088481,"genomic_dna_change":"chr1:g.61088481C>T","id":"U3NtOjBkNGNhM2E0LWZmODYtNWM2Yi1iYzZmLTFiZmI5MDdmOTRlZSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0d4ca3a4-ff86-5c6b-bc6f-1bfb907f94ee","start_position":61088481}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOjI0NTgyZWI1LTU5N2EtNTAxMC05MDhkLWM3MjcwODZlMzk3OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.3381+6978A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000613764"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmE3N2M2NjZmLWNhMDItNTg0ZS04MjRiLTA2NmUwM2M1MDY1MQ==","transcript":{"aa_change":"G1149G","annotation":{"hgvsc":"c.3447A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000316485"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmIzOTEyNjJjLTRlZmUtNWZiZi1iM2RhLTk2N2QwMjcxZTUxNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.66A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000494842"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmQwY2Y3MmJiLWY0ZGEtNTEzZi05MmZlLWFiNzNjNGM3MTBiOQ==","transcript":{"aa_change":"G608G","annotation":{"hgvsc":"c.1824A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484937"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmVhMTA4ZTc3LTgwODEtNTdhMy1hY2E0LWIxNjBhNDRkZjRjNw==","transcript":{"aa_change":"G1149G","annotation":{"hgvsc":"c.3447A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":true,"transcript_id":"ENST00000371158"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOjBiZTRjODE1LTAzZGItNTE2Mi05YzBhLTI1ZjY3ZjRjNjMzZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3561A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484562"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ0ZmEwZmUtYjMzYi01OWYxLWFlMmUtNDFjMDAzNzFiMWRiOmI5MmI4YmZiLWE0NGUtNTFjYi04YjAxLTY2NGE4YTZlNjYyZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3561A>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000459752"}}}]}},"cosmic_id":["COSM3805692"],"end_position":61908437,"genomic_dna_change":"chr1:g.61908437A>G","id":"U3NtOjBkNGZhMGZlLWIzM2ItNTlmMS1hZTJlLTQxYzAwMzcxYjFkYiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"0d4fa0fe-b33b-59f1-ae2e-41c00371b1db","start_position":61908437}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ3ODU5YzItYjM2Zi01MTA4LTg4YzAtZGYyOGM0MGM2NzA2OjUwMDIwY2U3LTU5YTUtNWE4NS1hYWM0LWU5OTFhODc2MjAwMQ==","transcript":{"aa_change":"K1090Q","annotation":{"hgvsc":"c.3268A>C","polyphen_impact":"benign","polyphen_score":0.018,"sift_impact":"deleterious","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":true,"transcript_id":"ENST00000342505"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGQ3ODU5YzItYjM2Zi01MTA4LTg4YzAtZGYyOGM0MGM2NzA2OjBkM2EyM2E4LTMxZDMtNTlmZi04OThmLTZiNjExYzBlMzE5MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000481702"}}}]}},"cosmic_id":["COSM426587"],"end_position":64835497,"genomic_dna_change":"chr1:g.64835497T>G","id":"U3NtOjBkNzg1OWMyLWIzNmYtNTEwOC04OGMwLWRmMjhjNDBjNjcwNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"0d7859c2-b36f-5108-88c0-df28c40c6706","start_position":64835497}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGRhMDYyYjItYjkxZC01MzZjLTgzMzMtZDU0OGE0YTAxYWExOjQyYmIwNGM0LWZkZDctNTY5My04MzFhLWNlMWI5ZDUyODFmNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*3C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":true,"transcript_id":"ENST00000354431"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGRhMDYyYjItYjkxZC01MzZjLTgzMzMtZDU0OGE0YTAxYWExOjVlOTUzNjhmLTFiN2EtNWQ3ZS04YTc2LTY4MTJlZDU0OGI5Yw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*3C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000395089"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGRhMDYyYjItYjkxZC01MzZjLTgzMzMtZDU0OGE0YTAxYWExOjAzYjEyOTQzLWUxZjAtNWNmOS1iNGM0LTFmMzQ5YjcwNDYxZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*107C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000417067"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGRhMDYyYjItYjkxZC01MzZjLTgzMzMtZDU0OGE0YTAxYWExOjdmNzM2YmVlLTBiYWItNWE1Yy1hMDNkLWE4NmNiZjQxOWM5ZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*2863C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162620","gene_strand":-1,"symbol":"LRRIQ3"},"is_canonical":false,"transcript_id":"ENST00000415760"}}}]}},"cosmic_id":null,"end_position":74026810,"genomic_dna_change":"chr1:g.74026810G>C","id":"U3NtOjBkYTA2MmIyLWI5MWQtNTM2Yy04MzMzLWQ1NDhhNGEwMWFhMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0da062b2-b91d-536c-8333-d548a4a01aa1","start_position":74026810}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjY4Yjk2MDE3LTBhYTktNWE2Ny1iNDU1LWU5ZDVmMWJhYzkxNg==","transcript":{"aa_change":"R853Dfs*13","annotation":{"hgvsc":"c.2556_2557insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000371454"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjljMDZlZDZkLWJhODctNWFiZS05YWJhLWY2NDQ2ODI1YWQ3MQ==","transcript":{"aa_change":"R853Dfs*13","annotation":{"hgvsc":"c.2556_2557insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":true,"transcript_id":"ENST00000306052"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjE3YjM0YTY4LThlNDItNWZjNC04ODI2LWNiN2Y5MDAyZTU1OA==","transcript":{"aa_change":"R649Dfs*13","annotation":{"hgvsc":"c.1944_1945insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000354412"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OmE3YThkYTI3LTkyNmUtNWM4NS05ZDM0LWQ0MzBhOTkyNWUxZg==","transcript":{"aa_change":"R406Dfs*13","annotation":{"hgvsc":"c.1215_1216insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000465675"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjI5MmQ2MWQwLTM1NTctNTMwYS05NTcyLTQxZTEzODA1M2QzYw==","transcript":{"aa_change":"R683Dfs*13","annotation":{"hgvsc":"c.2046_2047insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000347547"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OmU4NTEwNTkwLTNkNTYtNTU4MC04YmEyLTJkZTJlMzA3MGQ1Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1498_*1499insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000480045"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OjI3ODI5NGI5LWY2MmItNWRhOC1iODM4LTljMTQ1NmUyMDRiYQ==","transcript":{"aa_change":"R648Dfs*13","annotation":{"hgvsc":"c.1941_1942insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000613948"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OmQ4ZDBlY2JhLWU5MDgtNTNmZC04ODg4LTJhOWQ3YTlmMzI2OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3255_3256insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000459674"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGUwMmM0ZjctYTVhNC01MDI1LWE0MDMtNDhmZjc2YjU0YzQ2OmVkZTI3ZWU2LTFlY2QtNWY2MC04MWVlLTI3OWUyZjg3ZDgzNw==","transcript":{"aa_change":"R70Dfs*13","annotation":{"hgvsc":"c.206_207insGACGGAAGGA","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"frameshift_variant","gene":{"gene_id":"ENSG00000157193","gene_strand":-1,"symbol":"LRP8"},"is_canonical":false,"transcript_id":"ENST00000529670"}}}]}},"cosmic_id":null,"end_position":53250810,"genomic_dna_change":"chr1:g.53250809_53250810insTCCTTCCGTC","id":"U3NtOjBlMDJjNGY3LWE1YTQtNTAyNS1hNDAzLTQ4ZmY3NmI1NGM0NiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small insertion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"-","score":1,"ssm_id":"0e02c4f7-a5a4-5025-a403-48ff76b54c46","start_position":53250809}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDRjNGUtODlkMi01NGQxLWI2MDAtYTdkNGMwN2Q1ZWNhOjk1Mjk3OWQwLTM1MDEtNWFmYi04ODQ5LTVkM2RmMGNiOWE0Mw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-181G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000123080","gene_strand":1,"symbol":"CDKN2C"},"is_canonical":false,"transcript_id":"ENST00000371761"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDRjNGUtODlkMi01NGQxLWI2MDAtYTdkNGMwN2Q1ZWNhOjlhNjliMjljLTVlNWQtNTI2Ny1hNDZkLTEyODc5Y2U2YzM0OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-11-170G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000123080","gene_strand":1,"symbol":"CDKN2C"},"is_canonical":true,"transcript_id":"ENST00000262662"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDRjNGUtODlkMi01NGQxLWI2MDAtYTdkNGMwN2Q1ZWNhOjkyZTk4NzM0LWRmNzItNTljZi1hZTc1LWQ3YWE5OTBjM2NjYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-11-170G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000123080","gene_strand":1,"symbol":"CDKN2C"},"is_canonical":false,"transcript_id":"ENST00000396148"}}}]}},"cosmic_id":null,"end_position":50970188,"genomic_dna_change":"chr1:g.50970188G>C","id":"U3NtOjBlNmQ0YzRlLTg5ZDItNTRkMS1iNjAwLWE3ZDRjMDdkNWVjYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0e6d4c4e-89d2-54d1-b600-a7d4c07d5eca","start_position":50970188}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjVmYjg4NWJjLTYwMjItNTA1Ni04M2VhLTY5NjVjNjI0MjliZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.3382-48237A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000613764"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjYyMzQ5MTA5LThkNzctNTk5OS04MTNiLWExMDhmMmZlNzVhMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3854A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484562"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjQ0NTBiOTkyLTA2ODEtNWM0ZS04MTRhLWYzYjA5MGIzY2RjZg==","transcript":{"aa_change":"N1247T","annotation":{"hgvsc":"c.3740A>C","polyphen_impact":"possibly_damaging","polyphen_score":0.563,"sift_impact":"tolerated","sift_score":0.15,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000316485"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjI0MjUzMTg1LTMwOGMtNWIyOS05MmJjLWI1NDM0MGYxNTJmMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.359A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000494842"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OmRmYWNiMDk0LTcyNjAtNTI4Yi1hZTc1LTgwYzk1NTEwNjJmMg==","transcript":{"aa_change":"N706T","annotation":{"hgvsc":"c.2117A>C","polyphen_impact":"possibly_damaging","polyphen_score":0.786,"sift_impact":"tolerated","sift_score":0.26,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000484937"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OmQ2Nzk2ZDIwLTkxYjktNWNiZi1hZWE5LWZkZjAxYzJmMjI1ZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3854A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000459752"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OmU1OTlhY2JkLTg4ZTItNWUzNC05ZjcwLTIxOWIwZTNiNTA4Mg==","transcript":{"aa_change":"N1247T","annotation":{"hgvsc":"c.3740A>C","polyphen_impact":"possibly_damaging","polyphen_score":0.905,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":true,"transcript_id":"ENST00000371158"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OmM4Yzc5ZGM4LWJmODYtNTQ5Mi04MTdmLTJlYmM1NDUwMWFkYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.172A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000490547"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGU2ZDg3ODYtNmI1OS01OGFjLTlmYWUtOTM5OWJhMTJiNTg4OjQ1OWQwOTNhLTcwMjYtNTBlNi1hZTI4LWI4ZjgyOTg3NzlkMA==","transcript":{"aa_change":"N31T","annotation":{"hgvsc":"c.92A>C","polyphen_impact":"benign","polyphen_score":0.181,"sift_impact":"tolerated","sift_score":0.33,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132849","gene_strand":1,"symbol":"INADL"},"is_canonical":false,"transcript_id":"ENST00000307297"}}}]}},"cosmic_id":null,"end_position":61990237,"genomic_dna_change":"chr1:g.61990237A>C","id":"U3NtOjBlNmQ4Nzg2LTZiNTktNThhYy05ZmFlLTkzOTliYTEyYjU4OCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"0e6d8786-6b59-58ac-9fae-9399ba12b588","start_position":61990237}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZjYjRkMGUtM2I4ZS01Njk1LTk0NDgtNmQ1NDRlOTViZGI4OjBjNTQ0YWZkLTg5OTMtNTk5My1hNzU3LWIzOTQ4MTkwNzcxYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.2393-3T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000237247"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZjYjRkMGUtM2I4ZS01Njk1LTk0NDgtNmQ1NDRlOTViZGI4OjdlNGQzNjE2LTYwMmMtNWNjMC05YTcwLThmOTdiOThmZjI0NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1709-3T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000371039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZjYjRkMGUtM2I4ZS01Njk1LTk0NDgtNmQ1NDRlOTViZGI4OjE4YTc2Y2EwLTdkNjMtNTFjYi1iMzkyLTBiYTBiYmY4NjQwYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.2300-3T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":true,"transcript_id":"ENST00000371037"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZjYjRkMGUtM2I4ZS01Njk1LTk0NDgtNmQ1NDRlOTViZGI4OjNjMDFlYjA4LTBlYWMtNTRmMS04OTNlLTRmNDg4YmE2ZGY2Nw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.815-3T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"splice_region_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000435165"}}}]}},"cosmic_id":null,"end_position":66741269,"genomic_dna_change":"chr1:g.66741269T>A","id":"U3NtOjBmY2I0ZDBlLTNiOGUtNTY5NS05NDQ4LTZkNTQ0ZTk1YmRiOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"0fcb4d0e-3b8e-5695-9448-6d544e95bdb8","start_position":66741269}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2Ojg3MmUxYWM3LTRiMmYtNWJkYi1iZmZlLTQ3NDA1YjQyY2YxZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000494789"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OmQ2ZDJjZTMzLTNkNjYtNTQ5MS04NWQ2LWIyY2QwN2NiYjU4Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000460261"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OjgwNmMwZGZkLTQ4ODUtNWM4ZC04OGUxLWJhNGQ0MDI1ODllYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000450942"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OjA0MGJjNjIwLWZmZGItNWM3Yy1iNzM2LTE2Njk4NDBlYTQwZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000438021"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OmRjM2Q3ZDJlLWI2OTktNWJjMS05ZDVkLWEyMmRmODIxMmMzMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.355G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000491136"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OjJmZjRkOTk1LTYyOTYtNWFlMy1iZGZkLTlmZjU1MjRhZTI2NA==","transcript":{"aa_change":"D85H","annotation":{"hgvsc":"c.253G>C","polyphen_impact":"probably_damaging","polyphen_score":0.991,"sift_impact":"tolerated","sift_score":0.05,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":false,"transcript_id":"ENST00000284376"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZkYjdmMzctNTY4YS01ZmVhLTgxYWQtYjEzMmU3ZDJmYTA2OmZiOWI0ZjY1LTQ0Y2EtNWQ5NC04NDdhLWY2NzdhZjM2MTdjMQ==","transcript":{"aa_change":"D85H","annotation":{"hgvsc":"c.253G>C","polyphen_impact":"probably_damaging","polyphen_score":0.987,"sift_impact":"tolerated","sift_score":0.05,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000154222","gene_strand":-1,"symbol":"CC2D1B"},"is_canonical":true,"transcript_id":"ENST00000371586"}}}]}},"cosmic_id":["COSM3805541"],"end_position":52361578,"genomic_dna_change":"chr1:g.52361578C>G","id":"U3NtOjBmZGI3ZjM3LTU2OGEtNWZlYS04MWFkLWIxMzJlN2QyZmEwNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0fdb7f37-568a-5fea-81ad-b132e7d2fa06","start_position":52361578}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjE0NDkzNjE5LTE4NGEtNTJhZi1hNTk2LWU1ZGNhODBkOWQwZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000527864"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjIxZGVjMTU0LTI2NWItNWExZS1hYzM2LTI5ZGQ3ZjJiMzNiMw==","transcript":{"aa_change":"R158G","annotation":{"hgvsc":"c.472C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000262348"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4Ojg4ZDIyYzA4LTNmNWQtNWIyNS1iNjgwLTAwODU1NTY5ZTRhNg==","transcript":{"aa_change":"R113G","annotation":{"hgvsc":"c.337C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000471243"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjlhZjkyY2E1LWQ3ODYtNWQ4MS05NWUxLTc0OTBjOGE1NmFlMw==","transcript":{"aa_change":"R156G","annotation":{"hgvsc":"c.466C>G","polyphen_impact":"probably_damaging","polyphen_score":1,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":true,"transcript_id":"ENST00000354777"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjNhYjI1ODg0LTIzZDktNWMyZS05NzljLWJhZTJlYTQ2MDMzNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*390C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000491076"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OmUzNTI1NDQ0LWFhNWEtNTY4MC1iZDY5LTBiOWE5N2ZkNGVhZA==","transcript":{"aa_change":"R61G","annotation":{"hgvsc":"c.180C>G","polyphen_impact":"probably_damaging","polyphen_score":1,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000534713"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OmE3ODkzYzNkLTMwYmEtNWRiNC05OGEyLTkyNDFmZmVhZTdhNA==","transcript":{"aa_change":"R67G","annotation":{"hgvsc":"c.199C>G","polyphen_impact":"probably_damaging","polyphen_score":0.934,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000370976"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjNlYzAyYmQ3LTcxNWItNWVkNy04ZWIxLWI5OGJmYWU3OGZiNQ==","transcript":{"aa_change":"R25G","annotation":{"hgvsc":"c.73C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000533537"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjVlNzE4ZjFlLThkOTYtNWI3OS1hMGJlLWFlYTQzMzExMDc4NA==","transcript":{"aa_change":"R113G","annotation":{"hgvsc":"c.337C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000530486"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4Ojk4ZDk4ZTBjLTA1NGUtNWZlNy05Zjg3LTJiYmMxZTVmYmExYg==","transcript":{"aa_change":"R25G","annotation":{"hgvsc":"c.73C>G","polyphen_impact":"probably_damaging","polyphen_score":0.999,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000370973"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4OjVhNmM1YmEyLTQ0ZDItNTBlNS1hM2U4LTEzN2VlZDQ2ZWU0Yw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000491811"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlNDAzMDktMTAxNS01MTJhLWI0ZTMtM2U3YWVlMDVkMjA4Ojg4YjFjNTk5LTQ0YTItNTJjNC04MTc1LTQ3N2YxY2Q2NzZiNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.153C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000116729","gene_strand":-1,"symbol":"WLS"},"is_canonical":false,"transcript_id":"ENST00000497187"}}}]}},"cosmic_id":["COSM426636","COSM426637"],"end_position":68159155,"genomic_dna_change":"chr1:g.68159155G>C","id":"U3NtOjBmZTQwMzA5LTEwMTUtNTEyYS1iNGUzLTNlN2FlZTA1ZDIwOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"0fe40309-1015-512a-b4e3-3e7aee05d208","start_position":68159155}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZlOWFlYzItMzUzOS01M2M3LWFkOGMtYjBhYzI5MTUwNmM4OjcxZjcwNDgzLTI2ZGItNTIwOS04MjhhLWNiNjQ5MmY5OGU1ZA==","transcript":{"aa_change":"L1388L","annotation":{"hgvsc":"c.4164G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000162402","gene_strand":-1,"symbol":"USP24"},"is_canonical":true,"transcript_id":"ENST00000294383"}}}]}},"cosmic_id":["COSM3805629","COSM3805630"],"end_position":55123559,"genomic_dna_change":"chr1:g.55123559C>T","id":"U3NtOjBmZTlhZWMyLTM1MzktNTNjNy1hZDhjLWIwYWMyOTE1MDZjOCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0fe9aec2-3539-53c7-ad8c-b0ac291506c8","start_position":55123559}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOmYwMDI2MzZlLWFkNjAtNTQyOC1hMWU3LWQ3NDQzYzc0MDEwNA==","transcript":{"aa_change":"D42N","annotation":{"hgvsc":"c.124G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.539,"sift_impact":"tolerated_low_confidence","sift_score":0.38,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000539524"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjYxMjQ2NjI2LWViM2ItNWYyMC05OWJiLWIwZDI5M2Y4ZDMzNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000475715"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjQ0NTcwZGQxLTA4NDAtNTU3Ny1hMWVhLWRkODE0ZjUzNTNkYQ==","transcript":{"aa_change":"D174N","annotation":{"hgvsc":"c.520G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.539,"sift_impact":"tolerated_low_confidence","sift_score":0.3,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":true,"transcript_id":"ENST00000354831"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjI5MzM4ZWRlLTY0YmMtNWYwNy04MGY1LWNlNmE0N2Y2YzE1NQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.119G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000485608"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjJlNTY3OTkyLWU2NDUtNWNkYy1iNWM0LWZkNDMzNGUyOGI4NA==","transcript":{"aa_change":"D174N","annotation":{"hgvsc":"c.520G>A","polyphen_impact":"benign","polyphen_score":0.001,"sift_impact":"tolerated","sift_score":0.24,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000615102"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOmFiZmZhYjVmLWYxYjctNTQ1ZS1hYjdkLWU3N2EzMzAzZThkNA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.676G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000491410"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOjU2NDI0ZWFjLTEwZTctNTJhYi04ZGU3LTNmZDU5ZjkyMDM1Mg==","transcript":{"aa_change":"D174N","annotation":{"hgvsc":"c.520G>A","polyphen_impact":"benign","polyphen_score":0.028,"sift_impact":"tolerated","sift_score":0.23,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000544028"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNDM5MjAtZmNjMi01MmFhLWE1NTktNTNlZmVjMTY1YzJmOmVmZmQxNDk4LTY5MjMtNThhOC04NmUzLWY3NjM4YTRkOGUxMA==","transcript":{"aa_change":"D174N","annotation":{"hgvsc":"c.520G>A","polyphen_impact":"benign","polyphen_score":0.007,"sift_impact":"tolerated","sift_score":0.26,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000078618","gene_strand":-1,"symbol":"NRD1"},"is_canonical":false,"transcript_id":"ENST00000352171"}}}]}},"cosmic_id":null,"end_position":51840336,"genomic_dna_change":"chr1:g.51840336C>T","id":"U3NtOjBmZjQzOTIwLWZjYzItNTJhYS1hNTU5LTUzZWZlYzE2NWMyZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0ff43920-fcc2-52aa-a559-53efec165c2f","start_position":51840336}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOjJkYzhlYTNiLWEzMjgtNTZjZS1iNzgzLWMyMTJjZGZiMjJlNw==","transcript":{"aa_change":"R428Q","annotation":{"hgvsc":"c.1283G>A","polyphen_impact":"benign","polyphen_score":0,"sift_impact":"tolerated","sift_score":0.72,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":false,"transcript_id":"ENST00000611397"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOjAwOWFkMTZlLTYyNjEtNTAxOS05NjZkLTQ0ZmEyYmY1YzQ4MA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*1701G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":false,"transcript_id":"ENST00000620288"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOmYyMTY1MDYwLTQzODctNTg3Yy05YWQyLTlmN2EzMjdkN2FiMg==","transcript":{"aa_change":"E553K","annotation":{"hgvsc":"c.1657G>A","polyphen_impact":"benign","polyphen_score":0.043,"sift_impact":"tolerated","sift_score":0.12,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":true,"transcript_id":"ENST00000620347"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOjc2OTY0ZjA0LTIxY2EtNTY1OC04NWQ0LTNhZWU3ZjgzZjc3Yg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1302G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":false,"transcript_id":"ENST00000488036"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MGZmNmI3ZmYtNmQxNS01MWMxLTg5ODMtYjdkNGE3ZDRjZjYwOmJhZWY1MDBiLTUyOGMtNWUwMS1hZDBiLTMyYjMwNjE4YjI5Yw==","transcript":{"aa_change":"E494K","annotation":{"hgvsc":"c.1480G>A","polyphen_impact":"benign","polyphen_score":0.069,"sift_impact":"tolerated","sift_score":0.1,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162383","gene_strand":-1,"symbol":"SLC1A7"},"is_canonical":false,"transcript_id":"ENST00000371494"}}}]}},"cosmic_id":null,"end_position":53088212,"genomic_dna_change":"chr1:g.53088212C>T","id":"U3NtOjBmZjZiN2ZmLTZkMTUtNTFjMS04OTgzLWI3ZDRhN2Q0Y2Y2MCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"0ff6b7ff-6d15-51c1-8983-b7d4a7d4cf60","start_position":53088212}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOmNjYjQyZDA1LWViZTMtNWY0YS05ZDU5LTBmNTM0ZGI3NzIyMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*394G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000438846"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjk1YTQyZTBiLWEyNTEtNTRjNS1hNjk4LWZmZjk4MDFjYTYxNA==","transcript":{"aa_change":"L322L","annotation":{"hgvsc":"c.966G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000409996"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOmRjODVmMzFmLWZmMWEtNTlkZi1hM2E5LWI0MzZhOGRjYmVkMg==","transcript":{"aa_change":"L754L","annotation":{"hgvsc":"c.2262G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":true,"transcript_id":"ENST00000421030"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjExZWM5OWU1LTIyYjktNWY1NS1iNTg4LWRlMzExODliMzhiOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*394G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000422659"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjA5Njk0YmMyLTA5NGItNWZkNi04NTI2LTIxMDRiMTBlOTM0MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*358+487G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000413188"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjU1NTIwNTMyLTY4NmItNTc3MS1hOGExLTNiZWZjN2YzZTk0Ng==","transcript":{"aa_change":"L754L","annotation":{"hgvsc":"c.2262G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000395690"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOmJiOTFiMmU5LTAzOWMtNWQwOC05OTc3LTdiN2JjMGJlODliOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.2226+487G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000440047"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjY2ZmMwZjJmLTE5NTktNTZhMS04MzliLTdmZDk3NjA2NmU4Mg==","transcript":{"aa_change":"L754L","annotation":{"hgvsc":"c.2262G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000339553"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTAzYjlkNTAtN2M0NC01YzU5LTg5ZjAtMTQyZjAyOWQxZGQwOjZhMGUzMmVkLTZiY2YtNTZkMC1hNTRhLWQ3ZTU1N2JhZDlhMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*673G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000184313","gene_strand":1,"symbol":"MROH7"},"is_canonical":false,"transcript_id":"ENST00000440217"}}}]}},"cosmic_id":["COSM426483","COSM426484","COSM5227224"],"end_position":54679926,"genomic_dna_change":"chr1:g.54679926G>A","id":"U3NtOjEwM2I5ZDUwLTdjNDQtNWM1OS04OWYwLTE0MmYwMjlkMWRkMCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"103b9d50-7c44-5c59-89f0-142f029d1dd0","start_position":54679926}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTBiYTBiMzItNWI0MC01NmY2LTg3ZTktODI1NGMyNmM0OGU3Ojg2YzhmM2Q2LTIzYjYtNTQ2MC1hYTI4LWM2NzUzMGQ0Nzk3Ng==","transcript":{"aa_change":"A18A","annotation":{"hgvsc":"c.54G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000116704","gene_strand":-1,"symbol":"SLC35D1"},"is_canonical":true,"transcript_id":"ENST00000235345"}}}]}},"cosmic_id":["COSM426630"],"end_position":67053960,"genomic_dna_change":"chr1:g.67053960C>A","id":"U3NtOjEwYmEwYjMyLTViNDAtNTZmNi04N2U5LTgyNTRjMjZjNDhlNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"10ba0b32-5b40-56f6-87e9-8254c26c48e7","start_position":67053960}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTBkNTUzNjQtOTM4MS01NTllLWJhZmItYmYyODhmMWYxZTAxOmVjZWFmN2FhLTFiYjAtNWI1Zi1hMTViLTRhZjg3NmE2NGVkOA==","transcript":{"aa_change":"N132Kfs*2","annotation":{"hgvsc":"c.395_396insATAAAGT","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000162396","gene_strand":-1,"symbol":"PARS2"},"is_canonical":true,"transcript_id":"ENST00000371279"}}}]}},"cosmic_id":null,"end_position":54758767,"genomic_dna_change":"chr1:g.54758766_54758767insACTTTAT","id":"U3NtOjEwZDU1MzY0LTkzODEtNTU5ZS1iYWZiLWJmMjg4ZjFmMWUwMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small insertion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"-","score":1,"ssm_id":"10d55364-9381-559e-bafb-bf288f1f1e01","start_position":54758766}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOmM2NDhiYzQ5LTgxOTYtNTZkYi1hNzg4LTE4OTJhOTk4NTU1Mw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.677+2559T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000371077"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOjlhYTkzMDYzLTEzYzEtNWE1Zi1hNTE5LWZhOGJhMzkxNzM2YQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.456T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000464349"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOjkwMDBhMmUyLWQzYmYtNTE3MS05YzA4LTU5NWE0YjVhMWJjMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.338+2559T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000608020"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOjAxMTM5ODQ5LWI1Y2UtNWQyMi1hMzMzLTU4M2IzODUwZDJkMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.126+2559T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000608956"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOmY2ZGNkZDI4LTY1NDQtNWIzOC1iZjlhLTUzZDRlMmJiNWIzZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.677+2559T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":false,"transcript_id":"ENST00000611228"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE1OGYyYjgtYjRhZC01NDEzLTg1OWUtNmU5ZDQzOWJjYmViOjAyZjY4MjQzLWQ3ZjMtNTc3NS1iNTkzLTU0NDgzYmZjMjMyNA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*159T>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000177414","gene_strand":1,"symbol":"UBE2U"},"is_canonical":true,"transcript_id":"ENST00000371076"}}}]}},"cosmic_id":null,"end_position":64244292,"genomic_dna_change":"chr1:g.64244292T>A","id":"U3NtOjExNThmMmI4LWI0YWQtNTQxMy04NTllLTZlOWQ0MzliY2JlYiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"1158f2b8-b4ad-5413-859e-6e9d439bcbeb","start_position":64244292}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjkxMTNmODg5LWJlZGQtNTc5Yi1hM2Q1LTVmZGZjYTRlMTg2OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.126-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000527205"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjJkYWViOGRlLWMyZWItNWM3Mi1iZGQyLWEzZTk1YjY2NmIxMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.54-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000401051"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOmM0YTllOTJhLTQ4MDgtNTRmMy05MjY5LTdhNGY4MjBiZTI5Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.42-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000371747"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjAzNDQ2MjQ4LWFmNTctNWU3YS04NDI2LWU1YmQxNThkODhiOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":true,"transcript_id":"ENST00000447632"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjdlMzJjNGU4LTgyNzMtNTBmMS1iNjJlLTY5NzZmMDZhYTEwOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000532836"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjBjNWY4OGVhLTVjNWMtNWRiMi04MTc3LWUwMGMwNGU1ODdiOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000380849"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOmI2YzUzMjhmLTFlY2EtNWRmNS1iNGRhLTdkYmU5OWQ1NDFmYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000411642"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjM4ODkwZjllLTEzMmQtNWI0My1hOTMyLTMwZGJlNWZiMzg3NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.33-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000262676"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjE5NTg3MzZmLWRkZTUtNTFiZS1iOGUzLWY1NTg5NmFhYTA4NQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.42-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000439482"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjk2NWFlNTA3LTA1MjYtNTg3NS05MTFjLTZiNzhiNjMzNGVkZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-53G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000371750"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjc0ZDQ0MmI2LTNkYjUtNTczNC1iYWNiLTNkZWVhZjk0OGYwZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000262675"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOjJlYjI0ZjJkLWM3M2MtNWIyMC1hNGRhLTdjNzQ2YjliNWE4MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-40-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000422925"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YTAzYmYtZGU0Ni01ZGYyLTg3MGMtNjkyZGJlNTRhNjExOmJkMGFlNDA5LTk3YjMtNWRjMS05ZjViLTM3NzE0ODZlYTkxNg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.54-389G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000085831","gene_strand":-1,"symbol":"TTC39A"},"is_canonical":false,"transcript_id":"ENST00000413473"}}}]}},"cosmic_id":null,"end_position":51322214,"genomic_dna_change":"chr1:g.51322214C>T","id":"U3NtOjExNmEwM2JmLWRlNDYtNWRmMi04NzBjLTY5MmRiZTU0YTYxMSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"116a03bf-de46-5df2-870c-692dbe54a611","start_position":51322214}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjMxNTQwOTJmLWVmMjgtNTAzNi1hOTQyLTNhMjlmODZjMGFlMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.261+3083A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000463650"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjNkMzdhYzE3LTI5OGQtNWUxNS1iYjhmLWU0MTk0M2Q3Y2E1MQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.117+2640A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000357083"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjMyMTA3N2E3LTI2MTAtNTRmOS04YzI5LTQwNWYyMWJlNzc5Yw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.9+5033A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371827"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjI5NzU0ZThjLTkwMmUtNTI5ZS04ZWFkLWIwNDRjMzlhNmZkYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371821"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjFkNzA5MzcwLWRhZTgtNWM3OS05OTY0LTJkNjlmZDZiN2RhZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-157A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371823"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOmY3MDBiMjI1LTgyNWEtNTM3Yy04ZDdiLTZhOWIyOTFhNjg0ZA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000494555"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOmVhMDVmN2M2LThmMDEtNTIxMC05MDUxLWE2NGYxNDNkYTc4NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-157A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"5_prime_UTR_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371824"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOmM4MDYwOWQwLTM4YWQtNTg3Ni1hMjYwLTk1MjI5NzMwYTQxNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000371819"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOmUwNTFiMDg2LTI3NmMtNWE0Ni04NTg4LWI5NzE3NTNhNTIzMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.60+2640A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":true,"transcript_id":"ENST00000625794"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTE2YThhMGQtZjU4Zi01MmMyLTk2NTktODk0ZDg5OTZhM2RjOjliOTczZmVhLThhZjktNTJkYi1iM2VmLWMxNWQ0MTEzMDIyYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.19-35924A>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162374","gene_strand":1,"symbol":"ELAVL4"},"is_canonical":false,"transcript_id":"ENST00000448907"}}}]}},"cosmic_id":null,"end_position":50109033,"genomic_dna_change":"chr1:g.50109033A>C","id":"U3NtOjExNmE4YTBkLWY1OGYtNTJjMi05NjU5LTg5NGQ4OTk2YTNkYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"116a8a0d-f58f-52c2-9659-894d8996a3dc","start_position":50109033}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OmQ4YzhlZWM3LTU1Y2MtNWEwZi1iMGY3LTQ3OTFlMzg5MTA3ZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.162G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000467646"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OjY2YmJhNmZhLTdiY2MtNTY2OS04M2NlLTRkMWI1NGRlYTMwYQ==","transcript":{"aa_change":"E121K","annotation":{"hgvsc":"c.361G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.524,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000479111"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OmRjNDJjZGY0LTBlNDctNTI2Ni05Nzc1LTc1MjJiM2M0NTY1NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000485401"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OjExM2Y5N2Q0LWViOTctNTExOS04Nzk3LWI2MDA0Nzg5MzRmYw==","transcript":{"aa_change":"E241K","annotation":{"hgvsc":"c.721G>A","polyphen_impact":"possibly_damaging","polyphen_score":0.524,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":true,"transcript_id":"ENST00000370867"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OmNmM2EzOTA0LTQwNmUtNWE2Yy1iZTAyLTU5Y2E3NjhiNDViNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000486467"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFhZjUwYjYtM2ZlMS01MmFjLWIyNDEtMDMxNTgyM2NkYjc3OjEwM2IzOGI5LWM5NDAtNWI5NS1hNDVmLTZmMGI1ZjI1YTIxZQ==","transcript":{"aa_change":"E208K","annotation":{"hgvsc":"c.622G>A","polyphen_impact":"benign","polyphen_score":0.345,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162623","gene_strand":1,"symbol":"TYW3"},"is_canonical":false,"transcript_id":"ENST00000457880"}}}]}},"cosmic_id":["COSM4557287"],"end_position":74764054,"genomic_dna_change":"chr1:g.74764054G>A","id":"U3NtOjExYWY1MGI2LTNmZTEtNTJhYy1iMjQxLTAzMTU4MjNjZGI3NyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"11af50b6-3fe1-52ac-b241-0315823cdb77","start_position":74764054}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFiNTM2ZGEtZDE2OC01MDA4LTlkNjMtZjY0NDkzNTkzNjhkOjFmNDIyMzQ2LTA3MjAtNTdmOS05YjNhLWY3YjMwZTMyZTIyZQ==","transcript":{"aa_change":"A611E","annotation":{"hgvsc":"c.1832C>A","polyphen_impact":"benign","polyphen_score":0.444,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000371039"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFiNTM2ZGEtZDE2OC01MDA4LTlkNjMtZjY0NDkzNTkzNjhkOjMzYjU4M2Y1LThkNTMtNWI2MS04MWEyLTBiOTFiNjYxNTI0MA==","transcript":{"aa_change":"A808E","annotation":{"hgvsc":"c.2423C>A","polyphen_impact":"benign","polyphen_score":0.138,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":true,"transcript_id":"ENST00000371037"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFiNTM2ZGEtZDE2OC01MDA4LTlkNjMtZjY0NDkzNTkzNjhkOjhjMmZlNDU0LTQyOWMtNTM3Yi05MmRhLWY4YzBiMTQ4MTEzZg==","transcript":{"aa_change":"A313E","annotation":{"hgvsc":"c.938C>A","polyphen_impact":"benign","polyphen_score":0.428,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000435165"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTFiNTM2ZGEtZDE2OC01MDA4LTlkNjMtZjY0NDkzNTkzNjhkOjBjM2VjZDAzLWM4M2QtNWU0MC1iNTFmLWNhZmRkZjdmZDQwNQ==","transcript":{"aa_change":"A839E","annotation":{"hgvsc":"c.2516C>A","polyphen_impact":"probably_damaging","polyphen_score":0.93,"sift_impact":"tolerated","sift_score":0.07,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000118473","gene_strand":1,"symbol":"SGIP1"},"is_canonical":false,"transcript_id":"ENST00000237247"}}}]}},"cosmic_id":null,"end_position":66741395,"genomic_dna_change":"chr1:g.66741395C>A","id":"U3NtOjExYjUzNmRhLWQxNjgtNTAwOC05ZDYzLWY2NDQ5MzU5MzY4ZCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"11b536da-d168-5008-9d63-f6449359368d","start_position":66741395}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OmUzZDJmNzdjLTc1ZDctNTRhMC05OTU3LTJmNmE3YjMyNjczZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*623G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000421415"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OjlmYWRlNjkzLWI0YjQtNTFiZS04MzIxLTIyYjMwN2Y2Y2NiYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3417G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000490863"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OmZmYTBkMWYyLTNmZDItNWYzZi1iNWRmLTRjZDM2MzA2YjU5NQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*37G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":true,"transcript_id":"ENST00000534324"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OjlkZmUxYjBiLTcwNDQtNThjNy1hN2ZlLWIyYjBkNTNkMjQ4Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*979G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000420054"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OjNmMWM5MmVmLTdkNTAtNTQ3Yi05ZWM4LWZmMDY1NzM2MTY3Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*37G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000287899"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OjU2Y2Q0ZDlkLTZhZGMtNTg1Ny05ZmI3LTliZWE4NmI5Y2RhYQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*623G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000528287"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTIwZmQ3MjAtMjQxYy01YWRkLTlkYzctZWNmZDI2YmYzYTk1OmUwNTc5YjU2LTMwYTAtNWFkZC1hMzYzLWJmZmRmOGNlNGRiMg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000215883","gene_strand":-1,"symbol":"CYB5RL"},"is_canonical":false,"transcript_id":"ENST00000493530"}}}]}},"cosmic_id":null,"end_position":54174582,"genomic_dna_change":"chr1:g.54174582C>T","id":"U3NtOjEyMGZkNzIwLTI0MWMtNWFkZC05ZGM3LWVjZmQyNmJmM2E5NSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"120fd720-241c-5add-9dc7-ecfd26bf3a95","start_position":54174582}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjQzNTM0YTI1LWVlYTktNTdjYi05NGZlLTM4M2E3NmRkZGRkNA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000603691"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjRlYjZmODRiLTI5MzAtNTA3ZS05Yjk2LTMxN2RjYTIxNWJmNA==","transcript":{"aa_change":"R218*","annotation":{"hgvsc":"c.652C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":true,"transcript_id":"ENST00000371007"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjhjODRhZTE5LWIzZTYtNTU0Ni1hNzEyLTA2NGJjNTU0YjVlNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*24C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000475209"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OmUyNDBiMTBmLTNjNDktNWM2Mi1iYzcxLTFlMzMwMDc3ODkwNA==","transcript":{"aa_change":"R218*","annotation":{"hgvsc":"c.652C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"HIGH"},"consequence_type":"stop_gained","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000371006"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3Ojg4N2I1NTA4LWQ4YzgtNTZjNi04NjMxLWIxOGFiYzdlMzdkMQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*2756C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000621590"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjMxMGVlOGE2LTc3NjQtNWM4OC05ODM0LTUxZTEwZTNjZGY5Nw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3143C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000371004"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OjgxMDM1MGQ1LTY1NzctNWIwZS1hYTE4LWM1MTRiODRhODljYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*464C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000544837"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTJjZDJlNjMtNTQzNi01ZmIxLWI4NGUtNDc2YWI0OGNjNmM3OmY2OGJkNjFiLTUzYWQtNTc3ZS1iZmUzLThlNGNlOTUzMTRhYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000203963","gene_strand":-1,"symbol":"C1orf141"},"is_canonical":false,"transcript_id":"ENST00000448166"}}}]}},"cosmic_id":["COSM2240225"],"end_position":67093556,"genomic_dna_change":"chr1:g.67093556G>A","id":"U3NtOjEyY2QyZTYzLTU0MzYtNWZiMS1iODRlLTQ3NmFiNDhjYzZjNyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"12cd2e63-5436-5fb1-b84e-476ab48cc6c7","start_position":67093556}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTMwYzIzYjktMGEzNi01ZjZhLThkZGItM2IzNTg5MDU0Y2M5OjhiNmZjY2Y3LTUxZWYtNTVmOC04ZTYwLWEzZGI3NDAxOWE2ZQ==","transcript":{"aa_change":"I427I","annotation":{"hgvsc":"c.1281C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157184","gene_strand":1,"symbol":"CPT2"},"is_canonical":true,"transcript_id":"ENST00000371486"}}}]}},"cosmic_id":null,"end_position":53210955,"genomic_dna_change":"chr1:g.53210955C>T","id":"U3NtOjEzMGMyM2I5LTBhMzYtNWY2YS04ZGRiLTNiMzU4OTA1NGNjOSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"130c23b9-0a36-5f6a-8ddb-3b3589054cc9","start_position":53210955}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTM2NTMyNGYtNWU1ZC01ZjQwLWFjOWItY2EzYzdmZGM5YjQxOmNjZDFlZDAwLWZkNTQtNWMzNS05NGI0LTYzOTgwZGQ3NzQxMA==","transcript":{"aa_change":"S1386L","annotation":{"hgvsc":"c.4157C>T","polyphen_impact":"benign","polyphen_score":0.228,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":true,"transcript_id":"ENST00000287727"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTM2NTMyNGYtNWU1ZC01ZjQwLWFjOWItY2EzYzdmZGM5YjQxOjkyNjM0MmFkLWEzNzYtNTE4Yy05MGQyLTUwNTU2OWNkMjQzYQ==","transcript":{"aa_change":"S1327L","annotation":{"hgvsc":"c.3980C>T","polyphen_impact":"benign","polyphen_score":0.102,"sift_impact":"tolerated","sift_score":0.05,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000357206"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTM2NTMyNGYtNWU1ZC01ZjQwLWFjOWItY2EzYzdmZGM5YjQxOjM5YzU2YzBhLTA5M2YtNTZlYy1hYjQyLTUwYWU1MTA3OTA4ZA==","transcript":{"aa_change":"S1386L","annotation":{"hgvsc":"c.4157C>T","polyphen_impact":"benign","polyphen_score":0.228,"sift_impact":"tolerated","sift_score":0.06,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157077","gene_strand":1,"symbol":"ZFYVE9"},"is_canonical":false,"transcript_id":"ENST00000371591"}}}]}},"cosmic_id":["COSM426435"],"end_position":52346100,"genomic_dna_change":"chr1:g.52346100C>T","id":"U3NtOjEzNjUzMjRmLTVlNWQtNWY0MC1hYzliLWNhM2M3ZmRjOWI0MSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1365324f-5e5d-5f40-ac9b-ca3c7fdc9b41","start_position":52346100}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTNjN2EzMmQtZjcyMC01ZTE3LWEwM2ItZmFhYjUyYWFiY2EyOjc2YzgxMWQwLWZkOGUtNTRmNS04NDY3LTU5MTY0Y2I4ZmVmOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000494710"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTNjN2EzMmQtZjcyMC01ZTE3LWEwM2ItZmFhYjUyYWFiY2EyOjE5NDhkNGRlLTI5M2ItNTMwYS1iMjE2LWI2ZTA3ZTY2MmZkYQ==","transcript":{"aa_change":"F586I","annotation":{"hgvsc":"c.1756T>A","polyphen_impact":"benign","polyphen_score":0.063,"sift_impact":"tolerated","sift_score":0.07,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000263441"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTNjN2EzMmQtZjcyMC01ZTE3LWEwM2ItZmFhYjUyYWFiY2EyOjNiOTU5YmM0LWNmZGEtNTk2ZS04NjNlLTNkODM4NWE2ODljMg==","transcript":{"aa_change":"F599I","annotation":{"hgvsc":"c.1795T>A","polyphen_impact":"benign","polyphen_score":0.063,"sift_impact":"deleterious","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":false,"transcript_id":"ENST00000395325"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTNjN2EzMmQtZjcyMC01ZTE3LWEwM2ItZmFhYjUyYWFiY2EyOmU5MTE1MWUxLWM0MzUtNWM2MS1iNjk0LTBlYmQ4MDU2MDU2ZA==","transcript":{"aa_change":"F656I","annotation":{"hgvsc":"c.1966T>A","polyphen_impact":"benign","polyphen_score":0.133,"sift_impact":"deleterious","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116675","gene_strand":1,"symbol":"DNAJC6"},"is_canonical":true,"transcript_id":"ENST00000371069"}}}]}},"cosmic_id":["COSM426593","COSM5196857"],"end_position":65394960,"genomic_dna_change":"chr1:g.65394960T>A","id":"U3NtOjEzYzdhMzJkLWY3MjAtNWUxNy1hMDNiLWZhYWI1MmFhYmNhMiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"13c7a32d-f720-5e17-a03b-faab52aabca2","start_position":65394960}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQwZDQ5MTYtZTYyYi01ODVmLTkwMjQtOWRkNjNjNjBiMDg1OmJiOTkzMmRhLTY2MGItNTBhMy04MTQxLTBiYzQwODgzOWZlMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000474695"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQwZDQ5MTYtZTYyYi01ODVmLTkwMjQtOWRkNjNjNjBiMDg1OmYzMGUyNTIwLWZhYzUtNThiZi04ZDA5LTIyZGJlY2E1YmE4MQ==","transcript":{"aa_change":"V466G","annotation":{"hgvsc":"c.1397T>G","polyphen_impact":"possibly_damaging","polyphen_score":0.505,"sift_impact":"deleterious","sift_score":0.04,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":true,"transcript_id":"ENST00000371208"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQwZDQ5MTYtZTYyYi01ODVmLTkwMjQtOWRkNjNjNjBiMDg1OjU0ZGYxNmU5LTY1ODAtNTc2Yy05YzE3LWUxYmFhNDEwZjg4Yg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000466803"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQwZDQ5MTYtZTYyYi01ODVmLTkwMjQtOWRkNjNjNjBiMDg1OjI5NWE1ZGQxLWQ5NDktNWU3Ny1hZjJkLTdiZGFmYmEzMDYyNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1514T>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000465876"}}}]}},"cosmic_id":null,"end_position":59860193,"genomic_dna_change":"chr1:g.59860193T>G","id":"U3NtOjE0MGQ0OTE2LWU2MmItNTg1Zi05MDI0LTlkZDYzYzYwYjA4NSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"T","score":1,"ssm_id":"140d4916-e62b-585f-9024-9dd63c60b085","start_position":59860193}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQ0NzY0NmEtMDlmYi01MWY1LTllZTMtNDQzYTcwNDhiOGIyOjM4ZmMyNTdkLTA1NjktNTRlZC1iYTk1LTI1MjE4ZWI1MDllYw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000132854","gene_strand":-1,"symbol":"KANK4"},"is_canonical":false,"transcript_id":"ENST00000371150"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQ0NzY0NmEtMDlmYi01MWY1LTllZTMtNDQzYTcwNDhiOGIyOjYzMjMzOGNmLWZkYjQtNTdjNi1iNDg5LWMyMDczZmI1Y2Y1ZQ==","transcript":{"aa_change":"V633M","annotation":{"hgvsc":"c.1897G>A","polyphen_impact":"benign","polyphen_score":0,"sift_impact":"tolerated","sift_score":0.35,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000132854","gene_strand":-1,"symbol":"KANK4"},"is_canonical":true,"transcript_id":"ENST00000371153"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTQ0NzY0NmEtMDlmYi01MWY1LTllZTMtNDQzYTcwNDhiOGIyOmZkOGM2NzFiLTAzOTktNThkOS05YjdmLWVhYjkwNzViNGUxMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.17-1618G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000132854","gene_strand":-1,"symbol":"KANK4"},"is_canonical":false,"transcript_id":"ENST00000354381"}}}]}},"cosmic_id":["COSM426548"],"end_position":62273207,"genomic_dna_change":"chr1:g.62273207C>T","id":"U3NtOjE0NDc2NDZhLTA5ZmItNTFmNS05ZWUzLTQ0M2E3MDQ4YjhiMiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1447646a-09fb-51f5-9ee3-443a7048b8b2","start_position":62273207}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OmRlOTM4ZGE4LTlkODUtNWE0Ni1hZjg5LWI4Njc4NTAwMjU0Nw==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.053,"sift_impact":"deleterious_low_confidence","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000371544"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OmM4Yjk3M2Q0LWEwMzYtNWQ3Ni1hNGVlLTViNDA1NGE3ODBlOQ==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.002,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000355809"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjVlMjA0YTRkLTZlZTgtNTQwNi1iOTg4LTBkNDMxMWZiZWVmNA==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.053,"sift_impact":"deleterious_low_confidence","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000470626"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OmQyYmY1OTk4LTBiOTgtNTAxYS1iNTk5LWZkNmU5MjhjMTg2Ng==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.001,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000473856"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjM2NmM4YjVjLWRlMzYtNWM5Zi1iMTJiLWE1MGZjNThlMmE2Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.-5-10091G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000484723"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjkzZWRkYjFjLTQ1ZjAtNTUyZi1iM2JmLWMxMjllNmNhMGIyNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000371541"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjRhMmRmMDIxLWU0YTktNTc3Zi05NWNhLTkyMWI5OTlhYzgwNA==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"unknown","polyphen_score":0,"sift_impact":"deleterious_low_confidence","sift_score":0.03,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000528642"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OjI0OTUzODFhLTk1NzUtNTNjOS04YmJlLWEwNzg1NzExOTk5Yg==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.053,"sift_impact":"deleterious_low_confidence","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":false,"transcript_id":"ENST00000524582"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzMjYxNGMtMjc0ZS01NDg5LTk2MzAtZDBkYzRmNTg2YWM5OmJlYzcyMDI1LTgyNWMtNTg2ZS04MmQ2LThjNzJiNjc2ZDQ4YQ==","transcript":{"aa_change":"E46K","annotation":{"hgvsc":"c.136G>A","polyphen_impact":"benign","polyphen_score":0.053,"sift_impact":"deleterious_low_confidence","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134744","gene_strand":-1,"symbol":"ZCCHC11"},"is_canonical":true,"transcript_id":"ENST00000257177"}}}]}},"cosmic_id":["COSM3805549"],"end_position":52526145,"genomic_dna_change":"chr1:g.52526145C>T","id":"U3NtOjE1MzI2MTRjLTI3NGUtNTQ4OS05NjMwLWQwZGM0ZjU4NmFjOSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1532614c-274e-5489-9630-d0dc4f586ac9","start_position":52526145}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzN2VkMTUtMTg0OS01N2ZjLTg5ZjAtZjMyMTQ1NWIwNTU2OjEyNmI1MzI5LWI5MWYtNTg5ZS1iYTM5LTJjZDFhOGRkY2ZhNg==","transcript":{"aa_change":"L245_L249del","annotation":{"hgvsc":"c.734_748delTGATGCATATGCTGC","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODERATE"},"consequence_type":"inframe_deletion","gene":{"gene_id":"ENSG00000162409","gene_strand":1,"symbol":"PRKAA2"},"is_canonical":true,"transcript_id":"ENST00000371244"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTUzN2VkMTUtMTg0OS01N2ZjLTg5ZjAtZjMyMTQ1NWIwNTU2OmNiNjUyMzkwLTlkZDktNTlkNC05M2M1LWY3MDlkMzZjMTY3OQ==","transcript":{"aa_change":"L245_L249del","annotation":{"hgvsc":"c.734_748delTGATGCATATGCTGC","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODERATE"},"consequence_type":"inframe_deletion","gene":{"gene_id":"ENSG00000162409","gene_strand":1,"symbol":"PRKAA2"},"is_canonical":false,"transcript_id":"ENST00000610361"}}}]}},"cosmic_id":null,"end_position":56696118,"genomic_dna_change":"chr1:g.56696104delCTGATGCATATGCTG","id":"U3NtOjE1MzdlZDE1LTE4NDktNTdmYy04OWYwLWYzMjE0NTViMDU1NiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Small deletion","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"CTGATGCATATGCTG","score":1,"ssm_id":"1537ed15-1849-57fc-89f0-f321455b0556","start_position":56696104}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0NTVmYjktNWExNC01ZjkwLWFkZTItYzc4NDU2M2MzNDdlOjY5MzY5NTY5LWE1ZDktNTU5Ny1hNThjLTA0YWU3MzMzZDM1Zg==","transcript":{"aa_change":"T178T","annotation":{"hgvsc":"c.534C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000172260","gene_strand":-1,"symbol":"NEGR1"},"is_canonical":false,"transcript_id":"ENST00000306821"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0NTVmYjktNWExNC01ZjkwLWFkZTItYzc4NDU2M2MzNDdlOjU0NTNlNmU5LWZlN2UtNTJhOC1iODhiLWExZTA3ZTBjNTE3Nw==","transcript":{"aa_change":"T306T","annotation":{"hgvsc":"c.918C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000172260","gene_strand":-1,"symbol":"NEGR1"},"is_canonical":true,"transcript_id":"ENST00000357731"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0NTVmYjktNWExNC01ZjkwLWFkZTItYzc4NDU2M2MzNDdlOmUwNWY1MzJkLTJkMjctNTliNi04OGJiLTNlYjU5YTY5ZDcyNQ==","transcript":{"aa_change":"T251T","annotation":{"hgvsc":"c.753C>G","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000172260","gene_strand":-1,"symbol":"NEGR1"},"is_canonical":false,"transcript_id":"ENST00000434200"}}}]}},"cosmic_id":null,"end_position":71592839,"genomic_dna_change":"chr1:g.71592839G>C","id":"U3NtOjE1NDU1ZmI5LTVhMTQtNWY5MC1hZGUyLWM3ODQ1NjNjMzQ3ZSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"15455fb9-5a14-5f90-ade2-c784563c347e","start_position":71592839}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0ZTYwNTYtMjM0Ny01NjhjLTkzM2MtNjk1NjYzZmEyMjllOmZiODFlMjI4LWYxZTEtNTNjYi05YjUwLWVmNWUxMWRkZmEwMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":false,"transcript_id":"ENST00000481702"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU0ZTYwNTYtMjM0Ny01NjhjLTkzM2MtNjk1NjYzZmEyMjllOjg3MTBmZjk3LWUxN2QtNWMxMi1hZWE0LTI4Nzk4MDIzYmY5OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*17T>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000162434","gene_strand":-1,"symbol":"JAK1"},"is_canonical":true,"transcript_id":"ENST00000342505"}}}]}},"cosmic_id":null,"end_position":64834545,"genomic_dna_change":"chr1:g.64834545A>G","id":"U3NtOjE1NGU2MDU2LTIzNDctNTY4Yy05MzNjLTY5NTY2M2ZhMjI5ZSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"A","score":1,"ssm_id":"154e6056-2347-568c-933c-695663fa229e","start_position":64834545}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU4ZjIwZGUtZWVkZC01N2MwLTg2MTUtOTJhMTQxOGZlODE2OmRhNDMyOWIxLWFkYjUtNTNiYy05OWRiLTdjMzY5NmE1ZjY4YQ==","transcript":{"aa_change":"L309L","annotation":{"hgvsc":"c.927G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000143006","gene_strand":1,"symbol":"DMRTB1"},"is_canonical":true,"transcript_id":"ENST00000371445"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTU4ZjIwZGUtZWVkZC01N2MwLTg2MTUtOTJhMTQxOGZlODE2OjAwMDRiMzEyLTMxMTUtNWI0Ny04OWVmLWNjOGQzMTVkYjE3OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000143006","gene_strand":1,"symbol":"DMRTB1"},"is_canonical":false,"transcript_id":"ENST00000463126"}}}]}},"cosmic_id":["COSM3805567"],"end_position":53464813,"genomic_dna_change":"chr1:g.53464813G>A","id":"U3NtOjE1OGYyMGRlLWVlZGQtNTdjMC04NjE1LTkyYTE0MThmZTgxNiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"158f20de-eedd-57c0-8615-92a1418fe816","start_position":53464813}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjJjMzk0ODVhLTYyOTQtNTgxMC04YmNjLTE1MzIwZTQwNWY5NQ==","transcript":{"aa_change":"Y19Y","annotation":{"hgvsc":"c.57C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000525990"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjRhOWM4ZjQzLTJjNWQtNTZlZi04NTVlLTcwYWUyYjNiMWFhMw==","transcript":{"aa_change":"Y121Y","annotation":{"hgvsc":"c.363C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000610401"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOmJmMGQxMzhjLWE5NzMtNWQ3ZC1iNWJjLTgxOTEzOTg0NmRiMw==","transcript":{"aa_change":"Y156Y","annotation":{"hgvsc":"c.468C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":true,"transcript_id":"ENST00000371320"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOmJiNjIzMDQ3LTZlMWItNTkxYi04N2UxLThlNmZiNmE0MGY2OQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.447+903C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000357475"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjlhYWM2MWQ1LTZiNTMtNThkMC1hMzIzLWZkOGEwM2U1MzcxZg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.515C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000326956"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjliMDU0NWU4LTc2NjMtNTBiZi05YWZkLTNiNzBmNzg2MjY0Mw==","transcript":{"aa_change":"Y129Y","annotation":{"hgvsc":"c.387C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000371319"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOmE5MDU0YmVhLTdlNDItNWYxOC1iZjkwLWQxMTMzMjM5YTZkMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.254C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000533946"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjczNDE1MzEyLWQwY2YtNTE3ZS1hMjI5LWEzYjU0MDRjZjBmMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.277C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000528787"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOmI5NThmY2Y1LTEyZDQtNTEzYS1iYzA4LTZmMWI3Zjc2OWJhYg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.182C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000426150"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjY0ODZjNDY5LTQxMWYtNTgxOC04NDFkLTlhNDQ2ZTk1Nzg3NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.258C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000533209"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjZjNTBhMWVkLWRmNTQtNTc5My1hOWUwLWJhZmRiYjI3ZjNmNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.101C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000420121"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTVjN2JmOWQtMmQwOS01MTc2LTkzYjgtZDJjMzkyYmQ5NTYwOjQ4NTEyNzcwLTRlMzYtNWJmYi04OGEwLTlhMjJhMDY0OGI4Mg==","transcript":{"aa_change":"Y46Y","annotation":{"hgvsc":"c.138C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000157216","gene_strand":-1,"symbol":"SSBP3"},"is_canonical":false,"transcript_id":"ENST00000417664"}}}]}},"cosmic_id":["COSM3805587","COSM3805588"],"end_position":54257166,"genomic_dna_change":"chr1:g.54257166G>A","id":"U3NtOjE1YzdiZjlkLTJkMDktNTE3Ni05M2I4LWQyYzM5MmJkOTU2MCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"15c7bf9d-2d09-5176-93b8-d2c392bd9560","start_position":54257166}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTY4NzYwNzYtMzdiMC01ZjFiLTg4MmUtNzU2ZTU0MGJmZjdmOjQzN2JlOGU2LTA5NzktNTY3Mi1iNmIyLTE5ZmI3ZDNhNTgyMA==","transcript":{"aa_change":"R202G","annotation":{"hgvsc":"c.604C>G","polyphen_impact":"probably_damaging","polyphen_score":0.997,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162396","gene_strand":-1,"symbol":"PARS2"},"is_canonical":true,"transcript_id":"ENST00000371279"}}}]}},"cosmic_id":null,"end_position":54758558,"genomic_dna_change":"chr1:g.54758558G>C","id":"U3NtOjE2ODc2MDc2LTM3YjAtNWYxYi04ODJlLTc1NmU1NDBiZmY3ZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"16876076-37b0-5f1b-882e-756e540bff7f","start_position":54758558}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc1NDUwY2EtZTg1MC01ZjEyLWI1NTctNWRjOWU0OGZiYjk0OjZjMzJkMTUzLTg2ZTktNTFjYi05OTMzLTJkNzc4MjM3ZmMxYw==","transcript":{"aa_change":"S311L","annotation":{"hgvsc":"c.932C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.838,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085832","gene_strand":-1,"symbol":"EPS15"},"is_canonical":true,"transcript_id":"ENST00000371733"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc1NDUwY2EtZTg1MC01ZjEyLWI1NTctNWRjOWU0OGZiYjk0OmEzMjdjNDM5LWZhYmItNThjZi05Nzc1LTEzZGRlNjc5NGZjMw==","transcript":{"aa_change":"S311L","annotation":{"hgvsc":"c.932C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.899,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000085832","gene_strand":-1,"symbol":"EPS15"},"is_canonical":false,"transcript_id":"ENST00000371730"}}}]}},"cosmic_id":null,"end_position":51444911,"genomic_dna_change":"chr1:g.51444911G>A","id":"U3NtOjE3NTQ1MGNhLWU4NTAtNWYxMi1iNTU3LTVkYzllNDhmYmI5NCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"175450ca-e850-5f12-b557-5dc9e48fbb94","start_position":51444911}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc2NDIxY2YtOTZjYy01MTU3LTk5ZTQtNTM2NWUwMzJjNjU5OjgxNWQ3ODdiLTZlOTMtNWNkMS04MWE5LWU4ZGI0MzZiMWRjMg==","transcript":{"aa_change":"L1182L","annotation":{"hgvsc":"c.3546G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"LOW"},"consequence_type":"synonymous_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":true,"transcript_id":"ENST00000326665"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc2NDIxY2YtOTZjYy01MTU3LTk5ZTQtNTM2NWUwMzJjNjU5Ojk5NjljNzQzLTE2N2YtNTdhMS05NDRiLTI0ZGIzYmM3ODA1ZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":false,"transcript_id":"ENST00000614534"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTc2NDIxY2YtOTZjYy01MTU3LTk5ZTQtNTM2NWUwMzJjNjU5OjRiNjFmMGFhLTMyZWItNWI0Ny1hZmJjLTYzNTc1NDM3OTAyZQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.1688G>A","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":false,"transcript_id":"ENST00000433746"}}}]}},"cosmic_id":null,"end_position":74572164,"genomic_dna_change":"chr1:g.74572164C>T","id":"U3NtOjE3NjQyMWNmLTk2Y2MtNTE1Ny05OWU0LTUzNjVlMDMyYzY1OSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"176421cf-96cc-5157-99e4-5365e032c659","start_position":74572164}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTdhZjMxZTgtNTExNS01YTdmLTkzYzMtN2E4MzUxZGE0ZTJhOmI4ZTAzNjUzLTFmZTUtNWE4ZC05MGFjLWFkOThkNzYwNTI4Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"downstream_gene_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":false,"transcript_id":"ENST00000614534"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTdhZjMxZTgtNTExNS01YTdmLTkzYzMtN2E4MzUxZGE0ZTJhOmVmOWI2YTQ2LTU2YmMtNWExMS1iZDRmLTZjNmQ2ODc1ZjM0Mg==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.564C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":false,"transcript_id":"ENST00000433746"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTdhZjMxZTgtNTExNS01YTdmLTkzYzMtN2E4MzUxZGE0ZTJhOmUwYzg4YzIxLTM2MTEtNTRmMS1hYTkwLTEzNDM5MGQ1NGMwNw==","transcript":{"aa_change":"P808S","annotation":{"hgvsc":"c.2422C>T","polyphen_impact":"possibly_damaging","polyphen_score":0.857,"sift_impact":"tolerated","sift_score":0.07,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000178965","gene_strand":-1,"symbol":"ERICH3"},"is_canonical":true,"transcript_id":"ENST00000326665"}}}]}},"cosmic_id":["COSM3805878"],"end_position":74573288,"genomic_dna_change":"chr1:g.74573288G>A","id":"U3NtOjE3YWYzMWU4LTUxMTUtNWE3Zi05M2MzLTdhODM1MWRhNGUyYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"17af31e8-5115-5a7f-93c3-7a8351da4e2a","start_position":74573288}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTgxMzM0YjYtMTgzYS01NTFkLWJmNDMtODRkMTUyYTMwNDgyOjg2ODNjMjBjLTg1NzktNTkzMy1iZGQxLWE3M2E3NGMzNTc0OA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.918-97G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000162391","gene_strand":-1,"symbol":"FAM151A"},"is_canonical":false,"transcript_id":"ENST00000371304"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTgxMzM0YjYtMTgzYS01NTFkLWJmNDMtODRkMTUyYTMwNDgyOmM0NzAxMzUxLTJlZTgtNTAwYS04N2FiLTBhMTI3YzYwMTFmNQ==","transcript":{"aa_change":"R461T","annotation":{"hgvsc":"c.1382G>C","polyphen_impact":"benign","polyphen_score":0.026,"sift_impact":"tolerated","sift_score":0.29,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162391","gene_strand":-1,"symbol":"FAM151A"},"is_canonical":true,"transcript_id":"ENST00000302250"}}}]}},"cosmic_id":null,"end_position":54609644,"genomic_dna_change":"chr1:g.54609644C>G","id":"U3NtOjE4MTMzNGI2LTE4M2EtNTUxZC1iZjQzLTg0ZDE1MmEzMDQ4MiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"181334b6-183a-551d-bf43-84d152a30482","start_position":54609644}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTg1ODcxYzgtMmI3ZS01ZjBlLWI1NTMtM2U1NWZkZDBjNjYwOmE5YzEzZGY5LTUwYzktNTRjNC1hYWU4LTk1NzRkNTY5NTczNQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.2717G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000470527"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTg1ODcxYzgtMmI3ZS01ZjBlLWI1NTMtM2U1NWZkZDBjNjYwOmVjMTVmMzUwLTVkNDctNTY4Mi04MDZiLTcyNDRmZTk4YzYyOA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.3009G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":false,"transcript_id":"ENST00000495994"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTg1ODcxYzgtMmI3ZS01ZjBlLWI1NTMtM2U1NWZkZDBjNjYwOmNmMWE2MThlLTU3MWItNWVjNS1iYzg1LTdjMGNlMThmMDJlMA==","transcript":{"aa_change":"A876S","annotation":{"hgvsc":"c.2626G>T","polyphen_impact":"benign","polyphen_score":0.015,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000158966","gene_strand":1,"symbol":"CACHD1"},"is_canonical":true,"transcript_id":"ENST00000290039"}}}]}},"cosmic_id":null,"end_position":64675452,"genomic_dna_change":"chr1:g.64675452G>T","id":"U3NtOjE4NTg3MWM4LTJiN2UtNWYwZS1iNTUzLTNlNTVmZGQwYzY2MCM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"185871c8-2b7e-5f0e-b553-3e55fdd0c660","start_position":64675452}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk2Yjg5ZmMtYjI4ZS01YzM2LWI3YzUtZjcxNDIyZjRlODNmOmM5Mzc5ZTI5LWU1OGQtNTBhYi05Zjg1LTY4ZDFlNmFjZTQ1OA==","transcript":{"aa_change":"S281L","annotation":{"hgvsc":"c.842C>T","polyphen_impact":"benign","polyphen_score":0.052,"sift_impact":"tolerated","sift_score":0.08,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162391","gene_strand":-1,"symbol":"FAM151A"},"is_canonical":true,"transcript_id":"ENST00000302250"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk2Yjg5ZmMtYjI4ZS01YzM2LWI3YzUtZjcxNDIyZjRlODNmOjFkMmM3OGY4LWJiOWYtNTRmMy04NmQ2LTQ3OTc5ZmI1NjliMA==","transcript":{"aa_change":"S281L","annotation":{"hgvsc":"c.842C>T","polyphen_impact":"benign","polyphen_score":0.001,"sift_impact":"deleterious","sift_score":0.04,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000162391","gene_strand":-1,"symbol":"FAM151A"},"is_canonical":false,"transcript_id":"ENST00000371304"}}}]}},"cosmic_id":["COSM910894"],"end_position":54611704,"genomic_dna_change":"chr1:g.54611704G>A","id":"U3NtOjE5NmI4OWZjLWIyOGUtNWMzNi1iN2M1LWY3MTQyMmY0ZTgzZiM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"196b89fc-b28e-5c36-b7c5-f71422f4e83f","start_position":54611704}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk4ZjI5MTgtOWM3ZC01MGU4LTgzMjEtMjJlMzI2NDVkNDZlOmQ1YTQ2OWJjLTlhZDctNTBkMC05YjgzLTRhN2IzZGE0NDQ1YQ==","transcript":{"aa_change":"W71C","annotation":{"hgvsc":"c.213G>C","polyphen_impact":"probably_damaging","polyphen_score":0.985,"sift_impact":"deleterious","sift_score":0.02,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":true,"transcript_id":"ENST00000371208"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk4ZjI5MTgtOWM3ZC01MGU4LTgzMjEtMjJlMzI2NDVkNDZlOjhmYTdmODJhLTczY2ItNTJiNS1iM2VhLTE3MzRjYjBmYTIzMA==","transcript":{"aa_change":"W71C","annotation":{"hgvsc":"c.213G>C","polyphen_impact":"probably_damaging","polyphen_score":0.985,"sift_impact":"deleterious","sift_score":0,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000455990"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTk4ZjI5MTgtOWM3ZC01MGU4LTgzMjEtMjJlMzI2NDVkNDZlOjBiYWUwYmE3LTQ3MTAtNWE0MC1iODI4LTQ3Zjk2NjA0MTk2Mw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.330G>C","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000134709","gene_strand":1,"symbol":"HOOK1"},"is_canonical":false,"transcript_id":"ENST00000465876"}}}]}},"cosmic_id":["COSM1474117"],"end_position":59828843,"genomic_dna_change":"chr1:g.59828843G>C","id":"U3NtOjE5OGYyOTE4LTljN2QtNTBlOC04MzIxLTIyZTMyNjQ1ZDQ2ZSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"G","score":1,"ssm_id":"198f2918-9c7d-50e8-8321-22e32645d46e","start_position":59828843}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjgyZmU0MGFmLWI0NDUtNWMwYi1hYzFlLTY0NmVhMjBjNGY4Ng==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.949+5426C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000371509"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjc0NTI0MzdhLTBjOWUtNTc3NC1hNjUxLTg4M2I1MzJiZDNkOQ==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*285C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000478631"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjFhMmNhYzFjLTI2NWQtNWRkMC04OWZlLTM0Y2Y3Njk4ZDlkMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1081+5426C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":true,"transcript_id":"ENST00000371514"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjM0ZGFiM2UxLWMxYjgtNTJiYS1iY2U3LWFmMzYzYzdiZWZmMA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.*285C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"3_prime_UTR_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000371513"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOmYyMzEwOTQwLTFmMGUtNTYyNy1iYWI3LTE3ZmM2ODUwYjQ2NA==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.838+5426C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000528311"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MTljMDkwMjItOWY0ZC01NWY2LTlkNmQtMmIwNWQyMDU2ODNjOjRjN2E2MGUwLTNmOTQtNTM3MS04MWJlLTdjMzNjMGZhMzYwMw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"c.1009+5426C>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"intron_variant","gene":{"gene_id":"ENSG00000116171","gene_strand":1,"symbol":"SCP2"},"is_canonical":false,"transcript_id":"ENST00000407246"}}}]}},"cosmic_id":null,"end_position":52993562,"genomic_dna_change":"chr1:g.52993562C>T","id":"U3NtOjE5YzA5MDIyLTlmNGQtNTVmNi05ZDZkLTJiMDVkMjA1NjgzYyM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"19c09022-9f4d-55f6-9d6d-2b05d205683c","start_position":52993562}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOjE3NGMyM2I0LTIyOWMtNTBkZC05ZTc3LTc5MDhmNTJjYmE1Nw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"upstream_gene_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":false,"transcript_id":"ENST00000477905"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOmVkODMxNjAyLTg1MTItNWNjNS1iMGYyLWQ5NmVkNDY0YTNkNA==","transcript":{"aa_change":"L191V","annotation":{"hgvsc":"c.571C>G","polyphen_impact":"possibly_damaging","polyphen_score":0.848,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":false,"transcript_id":"ENST00000371368"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOjUwYjRjNDM3LTE2OTgtNWZmNy05ZGQ2LTI3M2YyNWY5NjYyNQ==","transcript":{"aa_change":"L191V","annotation":{"hgvsc":"c.571C>G","polyphen_impact":"possibly_damaging","polyphen_score":0.848,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":false,"transcript_id":"ENST00000444987"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOjE3NmI1MzI1LTE2YzYtNThkYS04OTQ5LTQ2YjM5ODVhYmEzZQ==","transcript":{"aa_change":"L191V","annotation":{"hgvsc":"c.571C>G","polyphen_impact":"possibly_damaging","polyphen_score":0.848,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":true,"transcript_id":"ENST00000371370"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFlYTcwNzktOWM1MC01MTQzLThiN2QtZGQ2ZjlmMmMxYWNhOmJlZTU2NTdiLTRkYmEtNWRmMi1hMGUzLWM2ODVkZTkxM2U3Nw==","transcript":{"aa_change":"L191V","annotation":{"hgvsc":"c.571C>G","polyphen_impact":"possibly_damaging","polyphen_score":0.848,"sift_impact":"deleterious","sift_score":0.01,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000116212","gene_strand":1,"symbol":"LRRC42"},"is_canonical":false,"transcript_id":"ENST00000319223"}}}]}},"cosmic_id":["COSM426467"],"end_position":53958246,"genomic_dna_change":"chr1:g.53958246C>G","id":"U3NtOjFhZWE3MDc5LTljNTAtNTE0My04YjdkLWRkNmY5ZjJjMWFjYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1aea7079-9c50-5143-8b7d-dd6f9f2c1aca","start_position":53958246}},{"node":{"consequence":{"hits":{"edges":[{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFmODM0M2EtYzM3Yi01ODkyLTkxYTctM2I2ZTQ3ZGEzNWVhOjNkODJiMmQxLWE0ZWItNWNjZi1iNWIyLWY3ODZhZWQ1ZDlkNw==","transcript":{"aa_change":null,"annotation":{"hgvsc":"n.10G>T","polyphen_impact":"","polyphen_score":null,"sift_impact":"","sift_score":null,"vep_impact":"MODIFIER"},"consequence_type":"non_coding_transcript_exon_variant","gene":{"gene_id":"ENSG00000157211","gene_strand":-1,"symbol":"CDCP2"},"is_canonical":false,"transcript_id":"ENST00000530059"}}},{"node":{"id":"U1NNQ29uc2VxdWVuY2U6MWFmODM0M2EtYzM3Yi01ODkyLTkxYTctM2I2ZTQ3ZGEzNWVhOjJjMjI4Y2MyLWViNzUtNTMyOS1iZmQ0LWUxYTc1MmVhNjNhMQ==","transcript":{"aa_change":"V344L","annotation":{"hgvsc":"c.1030G>T","polyphen_impact":"benign","polyphen_score":0.025,"sift_impact":"tolerated","sift_score":0.31,"vep_impact":"MODERATE"},"consequence_type":"missense_variant","gene":{"gene_id":"ENSG00000157211","gene_strand":-1,"symbol":"CDCP2"},"is_canonical":true,"transcript_id":"ENST00000371330"}}}]}},"cosmic_id":null,"end_position":54139840,"genomic_dna_change":"chr1:g.54139840C>A","id":"U3NtOjFhZjgzNDNhLWMzN2ItNTg5Mi05MWE3LTNiNmU0N2RhMzVlYSM4OWZhZDliOTY5NzZhOGQ5MjM1Y2ExZDBhYTcyMGUwZSM=","mutation_subtype":"Single base substitution","mutation_type":"Simple Somatic Mutation","ncbi_build":"GRCh38","reference_allele":"C","score":1,"ssm_id":"1af8343a-c37b-5892-91a7-3b6e47da35ea","start_position":54139840}}],"total":864}}}}}} \ No newline at end of file diff --git a/cypress/fixtures/projects/project-table-gene.json b/cypress/fixtures/projects/project-table-gene.json index 2d877e9..f526e42 100644 --- a/cypress/fixtures/projects/project-table-gene.json +++ b/cypress/fixtures/projects/project-table-gene.json @@ -1 +1 @@ -{"data":{"viewer":{"explore":{"cases":{"cnvAll":{"total":763},"cnvTestedByGene":{"total":1231},"cnvTotal":{"project__project_id":{"buckets":[{"doc_count":1072,"key":"TCGA-BRCA"},{"doc_count":596,"key":"TCGA-GBM"},{"doc_count":585,"key":"TCGA-OV"},{"doc_count":521,"key":"TCGA-HNSC"},{"doc_count":516,"key":"TCGA-KIRC"},{"doc_count":513,"key":"TCGA-LUAD"},{"doc_count":510,"key":"TCGA-UCEC"},{"doc_count":502,"key":"TCGA-LUSC"},{"doc_count":497,"key":"TCGA-LGG"},{"doc_count":487,"key":"TCGA-PRAD"},{"doc_count":468,"key":"TCGA-SKCM"},{"doc_count":448,"key":"TCGA-COAD"},{"doc_count":432,"key":"TCGA-STAD"},{"doc_count":418,"key":"TCGA-THCA"},{"doc_count":408,"key":"TCGA-BLCA"},{"doc_count":371,"key":"TCGA-LIHC"},{"doc_count":294,"key":"TCGA-CESC"},{"doc_count":269,"key":"TCGA-KIRP"},{"doc_count":260,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":175,"key":"TCGA-PAAD"},{"doc_count":174,"key":"TCGA-LAML"},{"doc_count":164,"key":"TCGA-READ"},{"doc_count":157,"key":"TCGA-PCPG"},{"doc_count":150,"key":"TCGA-TGCT"},{"doc_count":113,"key":"TCGA-THYM"},{"doc_count":90,"key":"TCGA-ACC"},{"doc_count":84,"key":"TCGA-MESO"},{"doc_count":79,"key":"TCGA-UVM"},{"doc_count":65,"key":"TCGA-KICH"},{"doc_count":56,"key":"TCGA-UCS"},{"doc_count":47,"key":"TCGA-DLBC"},{"doc_count":36,"key":"TCGA-CHOL"}]}},"filtered":{"project__project_id":{"buckets":[{"doc_count":103,"key":"TCGA-UCEC"},{"doc_count":74,"key":"TCGA-SKCM"},{"doc_count":43,"key":"TCGA-COAD"},{"doc_count":37,"key":"TCGA-STAD"},{"doc_count":36,"key":"TCGA-LUAD"},{"doc_count":34,"key":"TCGA-LUSC"},{"doc_count":33,"key":"TCGA-BLCA"},{"doc_count":29,"key":"TCGA-OV"},{"doc_count":21,"key":"TCGA-BRCA"},{"doc_count":19,"key":"TCGA-CESC"},{"doc_count":18,"key":"TCGA-GBM"},{"doc_count":18,"key":"TCGA-HNSC"},{"doc_count":8,"key":"TCGA-KIRP"},{"doc_count":7,"key":"TCGA-LGG"},{"doc_count":7,"key":"TCGA-READ"},{"doc_count":6,"key":"TCGA-LIHC"},{"doc_count":6,"key":"TCGA-PRAD"},{"doc_count":5,"key":"TCGA-ESCA"},{"doc_count":5,"key":"TCGA-KIRC"},{"doc_count":4,"key":"TCGA-PAAD"},{"doc_count":3,"key":"TCGA-LAML"},{"doc_count":2,"key":"TCGA-MESO"},{"doc_count":2,"key":"TCGA-THCA"},{"doc_count":1,"key":"TCGA-ACC"},{"doc_count":1,"key":"TCGA-KICH"},{"doc_count":1,"key":"TCGA-PCPG"},{"doc_count":1,"key":"TCGA-SARC"},{"doc_count":1,"key":"TCGA-TGCT"},{"doc_count":1,"key":"TCGA-THYM"},{"doc_count":1,"key":"TCGA-UCS"},{"doc_count":1,"key":"TCGA-UVM"}]}},"gain":{"project__project_id":{"buckets":[{"doc_count":146,"key":"TCGA-OV"},{"doc_count":70,"key":"TCGA-BRCA"},{"doc_count":38,"key":"TCGA-LUSC"},{"doc_count":35,"key":"TCGA-LUAD"},{"doc_count":32,"key":"TCGA-UCEC"},{"doc_count":26,"key":"TCGA-BLCA"},{"doc_count":23,"key":"TCGA-HNSC"},{"doc_count":21,"key":"TCGA-SARC"},{"doc_count":17,"key":"TCGA-STAD"},{"doc_count":15,"key":"TCGA-ESCA"},{"doc_count":14,"key":"TCGA-CESC"},{"doc_count":14,"key":"TCGA-COAD"},{"doc_count":12,"key":"TCGA-LIHC"},{"doc_count":12,"key":"TCGA-SKCM"},{"doc_count":8,"key":"TCGA-UCS"},{"doc_count":7,"key":"TCGA-READ"},{"doc_count":6,"key":"TCGA-GBM"},{"doc_count":5,"key":"TCGA-TGCT"},{"doc_count":3,"key":"TCGA-MESO"},{"doc_count":3,"key":"TCGA-PCPG"},{"doc_count":2,"key":"TCGA-LGG"},{"doc_count":2,"key":"TCGA-PAAD"},{"doc_count":2,"key":"TCGA-PRAD"},{"doc_count":1,"key":"TCGA-ACC"},{"doc_count":1,"key":"TCGA-KIRP"},{"doc_count":1,"key":"TCGA-LAML"},{"doc_count":1,"key":"TCGA-THCA"}]}},"loss":{"project__project_id":{"buckets":[{"doc_count":39,"key":"TCGA-BRCA"},{"doc_count":28,"key":"TCGA-OV"},{"doc_count":26,"key":"TCGA-LIHC"},{"doc_count":16,"key":"TCGA-SARC"},{"doc_count":13,"key":"TCGA-LUSC"},{"doc_count":13,"key":"TCGA-UCEC"},{"doc_count":11,"key":"TCGA-LUAD"},{"doc_count":10,"key":"TCGA-BLCA"},{"doc_count":10,"key":"TCGA-KIRC"},{"doc_count":10,"key":"TCGA-SKCM"},{"doc_count":8,"key":"TCGA-STAD"},{"doc_count":7,"key":"TCGA-HNSC"},{"doc_count":7,"key":"TCGA-PRAD"},{"doc_count":6,"key":"TCGA-KIRP"},{"doc_count":6,"key":"TCGA-TGCT"},{"doc_count":5,"key":"TCGA-COAD"},{"doc_count":5,"key":"TCGA-PCPG"},{"doc_count":4,"key":"TCGA-CHOL"},{"doc_count":4,"key":"TCGA-ESCA"},{"doc_count":3,"key":"TCGA-CESC"},{"doc_count":3,"key":"TCGA-GBM"},{"doc_count":3,"key":"TCGA-READ"},{"doc_count":2,"key":"TCGA-ACC"},{"doc_count":2,"key":"TCGA-DLBC"},{"doc_count":2,"key":"TCGA-MESO"},{"doc_count":2,"key":"TCGA-UVM"},{"doc_count":1,"key":"TCGA-LGG"},{"doc_count":1,"key":"TCGA-UCS"}]}},"total":{"project__project_id":{"buckets":[{"doc_count":986,"key":"TCGA-BRCA"},{"doc_count":567,"key":"TCGA-LUAD"},{"doc_count":530,"key":"TCGA-UCEC"},{"doc_count":510,"key":"TCGA-LGG"},{"doc_count":508,"key":"TCGA-HNSC"},{"doc_count":498,"key":"TCGA-PRAD"},{"doc_count":495,"key":"TCGA-LUSC"},{"doc_count":492,"key":"TCGA-THCA"},{"doc_count":469,"key":"TCGA-SKCM"},{"doc_count":440,"key":"TCGA-STAD"},{"doc_count":436,"key":"TCGA-OV"},{"doc_count":412,"key":"TCGA-BLCA"},{"doc_count":400,"key":"TCGA-COAD"},{"doc_count":393,"key":"TCGA-GBM"},{"doc_count":364,"key":"TCGA-LIHC"},{"doc_count":336,"key":"TCGA-KIRC"},{"doc_count":289,"key":"TCGA-CESC"},{"doc_count":281,"key":"TCGA-KIRP"},{"doc_count":237,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":182,"key":"TCGA-PAAD"},{"doc_count":179,"key":"TCGA-PCPG"},{"doc_count":145,"key":"TCGA-TGCT"},{"doc_count":144,"key":"TCGA-LAML"},{"doc_count":137,"key":"TCGA-READ"},{"doc_count":123,"key":"TCGA-THYM"},{"doc_count":92,"key":"TCGA-ACC"},{"doc_count":82,"key":"TCGA-MESO"},{"doc_count":80,"key":"TCGA-UVM"},{"doc_count":66,"key":"TCGA-KICH"},{"doc_count":57,"key":"TCGA-UCS"},{"doc_count":51,"key":"TCGA-CHOL"},{"doc_count":37,"key":"TCGA-DLBC"}]}}},"ssms":{"hits":{"total":744}}}}}} \ No newline at end of file +{"data":{"projects":{"hits":{"edges":[{"node":{"disease_type":["Mesothelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU1FU08=","primary_site":["Heart, mediastinum, and pleura","Bronchus and lung"],"project_id":"TCGA-MESO"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVJFQUQ=","primary_site":["Rectosigmoid junction","Unknown","Rectum","Colon","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-READ"}},{"node":{"disease_type":["Lipomatous Neoplasms","Soft Tissue Tumors and Sarcomas, NOS","Fibromatous Neoplasms","Myomatous Neoplasms","Nerve Sheath Tumors","Synovial-like Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVNBUkM=","primary_site":["Corpus uteri","Bones, joints and articular cartilage of limbs","Other and unspecified parts of tongue","Stomach","Other and unspecified male genital organs","Colon","Connective, subcutaneous and other soft tissues","Meninges","Ovary","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Uterus, NOS","Kidney"],"project_id":"TCGA-SARC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUFDQw==","primary_site":["Adrenal gland"],"project_id":"TCGA-ACC"}},{"node":{"disease_type":["Gliomas"],"id":"UHJvamVjdDpUQ0dBLUxHRw==","primary_site":["Brain"],"project_id":"TCGA-LGG"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVRIQ0E=","primary_site":["Thyroid gland"],"project_id":"TCGA-THCA"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtQ0NTSw==","primary_site":["Kidney"],"project_id":"TARGET-CCSK"}},{"node":{"disease_type":["Neuroepitheliomatous Neoplasms","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtTkJM","primary_site":["Heart, mediastinum, and pleura","Stomach","Bones, joints and articular cartilage of other and unspecified sites","Lymph nodes","Liver and intrahepatic bile ducts","Unknown","Uterus, NOS","Skin","Meninges","Other endocrine glands and related structures","Adrenal gland","Renal pelvis","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Bones, joints and articular cartilage of limbs","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Hematopoietic and reticuloendothelial systems","Kidney"],"project_id":"TARGET-NBL"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNSRU5PTEFOSUI=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-CRENOLANIB"}},{"node":{"disease_type":["Myeloid Leukemias","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtQU1M","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-AML"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVNLQ00=","primary_site":["Skin"],"project_id":"TCGA-SKCM"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUNIT0w=","primary_site":["Other and unspecified parts of biliary tract","Gallbladder","Liver and intrahepatic bile ducts"],"project_id":"TCGA-CHOL"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUkM=","primary_site":["Kidney"],"project_id":"TCGA-KIRC"}},{"node":{"disease_type":["Adnexal and Skin Appendage Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Basal Cell Neoplasms","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Fibroepithelial Neoplasms","Ductal and Lobular Neoplasms","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJSQ0E=","primary_site":["Breast"],"project_id":"TCGA-BRCA"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpWQVJFUE9QLUFQT0xMTw==","primary_site":["Bronchus and lung"],"project_id":"VAREPOP-APOLLO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas","Gliomas"],"id":"UHJvamVjdDpIQ01JLUNNREM=","primary_site":["Brain","Rectum","Colon"],"project_id":"HCMI-CMDC"}},{"node":{"disease_type":["Unknown","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpPUkdBTk9JRC1QQU5DUkVBVElD","primary_site":["Pancreas"],"project_id":"ORGANOID-PANCREATIC"}},{"node":{"disease_type":["Not Reported","Gliomas"],"id":"UHJvamVjdDpUQ0dBLUdCTQ==","primary_site":["Brain"],"project_id":"TCGA-GBM"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU9W","primary_site":["Ovary"],"project_id":"TCGA-OV"}},{"node":{"disease_type":["Germ Cell Neoplasms","Acinar Cell Neoplasms","Miscellaneous Tumors","Thymic Epithelial Neoplasms","Gliomas","Not Reported","Complex Mixed and Stromal Neoplasms","Ductal and Lobular Neoplasms","Neuroepitheliomatous Neoplasms","Complex Epithelial Neoplasms","Adnexal and Skin Appendage Neoplasms","Mesothelial Neoplasms","Basal Cell Neoplasms","Mucoepidermoid Neoplasms","Specialized Gonadal Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Nevi and Melanomas","Squamous Cell Neoplasms","Transitional Cell Papillomas and Carcinomas","Paragangliomas and Glomus Tumors","Epithelial Neoplasms, NOS","Meningiomas"],"id":"UHJvamVjdDpGTS1BRA==","primary_site":["Kidney","Testis","Unknown","Other and unspecified parts of biliary tract","Adrenal gland","Thyroid gland","Spinal cord, cranial nerves, and other parts of central nervous system","Peripheral nerves and autonomic nervous system","Stomach","Cervix uteri","Bladder","Small intestine","Breast","Bronchus and lung","Other and ill-defined sites","Other and unspecified major salivary glands","Rectum","Retroperitoneum and peritoneum","Pancreas","Heart, mediastinum, and pleura","Prostate gland","Liver and intrahepatic bile ducts","Other and unspecified female genital organs","Thymus","Penis","Nasopharynx","Ovary","Uterus, NOS","Vulva","Anus and anal canal","Other and unspecified urinary organs","Trachea","Ureter","Other endocrine glands and related structures","Not Reported","Colon","Gallbladder","Vagina","Skin","Esophagus","Eye and adnexa","Other and ill-defined digestive organs"],"project_id":"FM-AD"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVVDRUM=","primary_site":["Corpus uteri","Uterus, NOS"],"project_id":"TCGA-UCEC"}},{"node":{"disease_type":["Not Applicable","Leukemias, NOS","Lymphoid Leukemias","Myeloid Leukemias","Other Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAz","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P3"}},{"node":{"disease_type":["Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpDR0NJLUJMR1NQ","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"CGCI-BLGSP"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAy","primary_site":["Hematopoietic and reticuloendothelial systems","Blood"],"project_id":"TARGET-ALL-P2"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpUQ0dBLUxBTUw=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TCGA-LAML"}},{"node":{"disease_type":["Not Reported","Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpUQ0dBLURMQkM=","primary_site":["Heart, mediastinum, and pleura","Testis","Stomach","Lymph nodes","Bones, joints and articular cartilage of other and unspecified sites","Brain","Thyroid gland","Small intestine","Colon","Breast","Other and unspecified major salivary glands","Retroperitoneum and peritoneum","Hematopoietic and reticuloendothelial systems","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-DLBC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJQ0g=","primary_site":["Kidney"],"project_id":"TCGA-KICH"}},{"node":{"disease_type":["Thymic Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRIWU0=","primary_site":["Heart, mediastinum, and pleura","Thymus"],"project_id":"TCGA-THYM"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVVWTQ==","primary_site":["Eye and adnexa"],"project_id":"TCGA-UVM"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBSQUQ=","primary_site":["Prostate gland"],"project_id":"TCGA-PRAD"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUxVU0M=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUSC"}},{"node":{"disease_type":["Germ Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRHQ1Q=","primary_site":["Testis"],"project_id":"TCGA-TGCT"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpDUFRBQy0z","primary_site":["Kidney","Uterus, NOS","Bronchus and lung"],"project_id":"CPTAC-3"}},{"node":{"disease_type":["Myeloid Leukemias","Other Hematologic Disorders","Unknown","Precursor Cell Lymphoblastic Lymphoma","Myelodysplastic Syndromes","Other Leukemias","Chronic Myeloproliferative Disorders","Plasma Cell Tumors","Leukemias, NOS"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNPSE9SVA==","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-COHORT"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVNUQUQ=","primary_site":["Stomach"],"project_id":"TCGA-STAD"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxJSEM=","primary_site":["Liver and intrahepatic bile ducts"],"project_id":"TCGA-LIHC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNPQUQ=","primary_site":["Rectosigmoid junction","Colon"],"project_id":"TCGA-COAD"}},{"node":{"disease_type":["Osseous and Chondromatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtT1M=","primary_site":["Not Reported","Bones, joints and articular cartilage of other and unspecified sites","Bones, joints and articular cartilage of limbs"],"project_id":"TARGET-OS"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtUlQ=","primary_site":["Lip","Kidney","Liver and intrahepatic bile ducts"],"project_id":"TARGET-RT"}},{"node":{"disease_type":["Mature B-Cell Lymphomas","Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpDVFNQLURMQkNMMQ==","primary_site":["Unknown","Lymph Nodes"],"project_id":"CTSP-DLBCL1"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUhOU0M=","primary_site":["Other and ill-defined sites in lip, oral cavity and pharynx","Palate","Other and unspecified parts of tongue","Hypopharynx","Lip","Tonsil","Gum","Larynx","Other and unspecified parts of mouth","Floor of mouth","Bones, joints and articular cartilage of other and unspecified sites","Oropharynx","Base of tongue"],"project_id":"TCGA-HNSC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUVTQ0E=","primary_site":["Esophagus","Stomach"],"project_id":"TCGA-ESCA"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNFU0M=","primary_site":["Cervix uteri"],"project_id":"TCGA-CESC"}},{"node":{"disease_type":["Paragangliomas and Glomus Tumors"],"id":"UHJvamVjdDpUQ0dBLVBDUEc=","primary_site":["Heart, mediastinum, and pleura","Other endocrine glands and related structures","Adrenal gland","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum"],"project_id":"TCGA-PCPG"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUlA=","primary_site":["Kidney"],"project_id":"TCGA-KIRP"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVVDUw==","primary_site":["Uterus, NOS"],"project_id":"TCGA-UCS"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBBQUQ=","primary_site":["Pancreas"],"project_id":"TCGA-PAAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Acinar Cell Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxVQUQ=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUAD"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtV1Q=","primary_site":["Kidney"],"project_id":"TARGET-WT"}},{"node":{"disease_type":["Plasma Cell Tumors"],"id":"UHJvamVjdDpNTVJGLUNPTU1QQVNT","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"MMRF-COMMPASS"}},{"node":{"disease_type":["Transitional Cell Papillomas and Carcinomas","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJMQ0E=","primary_site":["Bladder"],"project_id":"TCGA-BLCA"}},{"node":{"disease_type":["Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpOQ0lDQ1ItRExCQ0w=","primary_site":["Lymph Nodes"],"project_id":"NCICCR-DLBCL"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAx","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P1"}}]}},"viewer":{"explore":{"cases":{"cnvAll":{"total":763},"cnvTestedByGene":{"total":1231},"cnvTotal":{"project__project_id":{"buckets":[{"doc_count":1072,"key":"TCGA-BRCA"},{"doc_count":596,"key":"TCGA-GBM"},{"doc_count":585,"key":"TCGA-OV"},{"doc_count":521,"key":"TCGA-HNSC"},{"doc_count":516,"key":"TCGA-KIRC"},{"doc_count":513,"key":"TCGA-LUAD"},{"doc_count":510,"key":"TCGA-UCEC"},{"doc_count":502,"key":"TCGA-LUSC"},{"doc_count":497,"key":"TCGA-LGG"},{"doc_count":487,"key":"TCGA-PRAD"},{"doc_count":468,"key":"TCGA-SKCM"},{"doc_count":448,"key":"TCGA-COAD"},{"doc_count":432,"key":"TCGA-STAD"},{"doc_count":418,"key":"TCGA-THCA"},{"doc_count":408,"key":"TCGA-BLCA"},{"doc_count":371,"key":"TCGA-LIHC"},{"doc_count":294,"key":"TCGA-CESC"},{"doc_count":269,"key":"TCGA-KIRP"},{"doc_count":260,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":175,"key":"TCGA-PAAD"},{"doc_count":174,"key":"TCGA-LAML"},{"doc_count":164,"key":"TCGA-READ"},{"doc_count":157,"key":"TCGA-PCPG"},{"doc_count":150,"key":"TCGA-TGCT"},{"doc_count":113,"key":"TCGA-THYM"},{"doc_count":90,"key":"TCGA-ACC"},{"doc_count":84,"key":"TCGA-MESO"},{"doc_count":79,"key":"TCGA-UVM"},{"doc_count":65,"key":"TCGA-KICH"},{"doc_count":56,"key":"TCGA-UCS"},{"doc_count":47,"key":"TCGA-DLBC"},{"doc_count":36,"key":"TCGA-CHOL"}]}},"filtered":{"project__project_id":{"buckets":[{"doc_count":103,"key":"TCGA-UCEC"},{"doc_count":74,"key":"TCGA-SKCM"},{"doc_count":43,"key":"TCGA-COAD"},{"doc_count":37,"key":"TCGA-STAD"},{"doc_count":36,"key":"TCGA-LUAD"},{"doc_count":34,"key":"TCGA-LUSC"},{"doc_count":33,"key":"TCGA-BLCA"},{"doc_count":29,"key":"TCGA-OV"},{"doc_count":21,"key":"TCGA-BRCA"},{"doc_count":19,"key":"TCGA-CESC"},{"doc_count":18,"key":"TCGA-GBM"},{"doc_count":18,"key":"TCGA-HNSC"},{"doc_count":8,"key":"TCGA-KIRP"},{"doc_count":7,"key":"TCGA-LGG"},{"doc_count":7,"key":"TCGA-READ"},{"doc_count":6,"key":"TCGA-LIHC"},{"doc_count":6,"key":"TCGA-PRAD"},{"doc_count":5,"key":"TCGA-ESCA"},{"doc_count":5,"key":"TCGA-KIRC"},{"doc_count":4,"key":"TCGA-PAAD"},{"doc_count":3,"key":"TCGA-LAML"},{"doc_count":2,"key":"TCGA-MESO"},{"doc_count":2,"key":"TCGA-THCA"},{"doc_count":1,"key":"TCGA-ACC"},{"doc_count":1,"key":"TCGA-KICH"},{"doc_count":1,"key":"TCGA-PCPG"},{"doc_count":1,"key":"TCGA-SARC"},{"doc_count":1,"key":"TCGA-TGCT"},{"doc_count":1,"key":"TCGA-THYM"},{"doc_count":1,"key":"TCGA-UCS"},{"doc_count":1,"key":"TCGA-UVM"}]}},"gain":{"project__project_id":{"buckets":[{"doc_count":146,"key":"TCGA-OV"},{"doc_count":70,"key":"TCGA-BRCA"},{"doc_count":38,"key":"TCGA-LUSC"},{"doc_count":35,"key":"TCGA-LUAD"},{"doc_count":32,"key":"TCGA-UCEC"},{"doc_count":26,"key":"TCGA-BLCA"},{"doc_count":23,"key":"TCGA-HNSC"},{"doc_count":21,"key":"TCGA-SARC"},{"doc_count":17,"key":"TCGA-STAD"},{"doc_count":15,"key":"TCGA-ESCA"},{"doc_count":14,"key":"TCGA-CESC"},{"doc_count":14,"key":"TCGA-COAD"},{"doc_count":12,"key":"TCGA-LIHC"},{"doc_count":12,"key":"TCGA-SKCM"},{"doc_count":8,"key":"TCGA-UCS"},{"doc_count":7,"key":"TCGA-READ"},{"doc_count":6,"key":"TCGA-GBM"},{"doc_count":5,"key":"TCGA-TGCT"},{"doc_count":3,"key":"TCGA-MESO"},{"doc_count":3,"key":"TCGA-PCPG"},{"doc_count":2,"key":"TCGA-LGG"},{"doc_count":2,"key":"TCGA-PAAD"},{"doc_count":2,"key":"TCGA-PRAD"},{"doc_count":1,"key":"TCGA-ACC"},{"doc_count":1,"key":"TCGA-KIRP"},{"doc_count":1,"key":"TCGA-LAML"},{"doc_count":1,"key":"TCGA-THCA"}]}},"loss":{"project__project_id":{"buckets":[{"doc_count":39,"key":"TCGA-BRCA"},{"doc_count":28,"key":"TCGA-OV"},{"doc_count":26,"key":"TCGA-LIHC"},{"doc_count":16,"key":"TCGA-SARC"},{"doc_count":13,"key":"TCGA-LUSC"},{"doc_count":13,"key":"TCGA-UCEC"},{"doc_count":11,"key":"TCGA-LUAD"},{"doc_count":10,"key":"TCGA-BLCA"},{"doc_count":10,"key":"TCGA-KIRC"},{"doc_count":10,"key":"TCGA-SKCM"},{"doc_count":8,"key":"TCGA-STAD"},{"doc_count":7,"key":"TCGA-HNSC"},{"doc_count":7,"key":"TCGA-PRAD"},{"doc_count":6,"key":"TCGA-KIRP"},{"doc_count":6,"key":"TCGA-TGCT"},{"doc_count":5,"key":"TCGA-COAD"},{"doc_count":5,"key":"TCGA-PCPG"},{"doc_count":4,"key":"TCGA-CHOL"},{"doc_count":4,"key":"TCGA-ESCA"},{"doc_count":3,"key":"TCGA-CESC"},{"doc_count":3,"key":"TCGA-GBM"},{"doc_count":3,"key":"TCGA-READ"},{"doc_count":2,"key":"TCGA-ACC"},{"doc_count":2,"key":"TCGA-DLBC"},{"doc_count":2,"key":"TCGA-MESO"},{"doc_count":2,"key":"TCGA-UVM"},{"doc_count":1,"key":"TCGA-LGG"},{"doc_count":1,"key":"TCGA-UCS"}]}},"total":{"project__project_id":{"buckets":[{"doc_count":986,"key":"TCGA-BRCA"},{"doc_count":567,"key":"TCGA-LUAD"},{"doc_count":530,"key":"TCGA-UCEC"},{"doc_count":510,"key":"TCGA-LGG"},{"doc_count":508,"key":"TCGA-HNSC"},{"doc_count":498,"key":"TCGA-PRAD"},{"doc_count":495,"key":"TCGA-LUSC"},{"doc_count":492,"key":"TCGA-THCA"},{"doc_count":469,"key":"TCGA-SKCM"},{"doc_count":440,"key":"TCGA-STAD"},{"doc_count":436,"key":"TCGA-OV"},{"doc_count":412,"key":"TCGA-BLCA"},{"doc_count":400,"key":"TCGA-COAD"},{"doc_count":393,"key":"TCGA-GBM"},{"doc_count":364,"key":"TCGA-LIHC"},{"doc_count":336,"key":"TCGA-KIRC"},{"doc_count":289,"key":"TCGA-CESC"},{"doc_count":281,"key":"TCGA-KIRP"},{"doc_count":237,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":182,"key":"TCGA-PAAD"},{"doc_count":179,"key":"TCGA-PCPG"},{"doc_count":145,"key":"TCGA-TGCT"},{"doc_count":144,"key":"TCGA-LAML"},{"doc_count":137,"key":"TCGA-READ"},{"doc_count":123,"key":"TCGA-THYM"},{"doc_count":92,"key":"TCGA-ACC"},{"doc_count":82,"key":"TCGA-MESO"},{"doc_count":80,"key":"TCGA-UVM"},{"doc_count":66,"key":"TCGA-KICH"},{"doc_count":57,"key":"TCGA-UCS"},{"doc_count":51,"key":"TCGA-CHOL"},{"doc_count":37,"key":"TCGA-DLBC"}]}}},"ssms":{"hits":{"total":744}}}}}} \ No newline at end of file diff --git a/cypress/fixtures/projects/project-table.json b/cypress/fixtures/projects/project-table.json index 760828d..1b351c7 100644 --- a/cypress/fixtures/projects/project-table.json +++ b/cypress/fixtures/projects/project-table.json @@ -1 +1 @@ -{"data":{"viewer":{"explore":{"cases":{"filtered":{"project__project_id":{"buckets":[{"doc_count":6,"key":"TCGA-COAD"},{"doc_count":4,"key":"TCGA-BRCA"},{"doc_count":4,"key":"TCGA-UCEC"},{"doc_count":3,"key":"TCGA-LIHC"},{"doc_count":2,"key":"TCGA-STAD"},{"doc_count":1,"key":"TCGA-LUAD"},{"doc_count":1,"key":"TCGA-LUSC"}]}},"total":{"project__project_id":{"buckets":[{"doc_count":986,"key":"TCGA-BRCA"},{"doc_count":567,"key":"TCGA-LUAD"},{"doc_count":530,"key":"TCGA-UCEC"},{"doc_count":510,"key":"TCGA-LGG"},{"doc_count":508,"key":"TCGA-HNSC"},{"doc_count":498,"key":"TCGA-PRAD"},{"doc_count":495,"key":"TCGA-LUSC"},{"doc_count":492,"key":"TCGA-THCA"},{"doc_count":469,"key":"TCGA-SKCM"},{"doc_count":440,"key":"TCGA-STAD"},{"doc_count":436,"key":"TCGA-OV"},{"doc_count":412,"key":"TCGA-BLCA"},{"doc_count":400,"key":"TCGA-COAD"},{"doc_count":393,"key":"TCGA-GBM"},{"doc_count":364,"key":"TCGA-LIHC"},{"doc_count":336,"key":"TCGA-KIRC"},{"doc_count":289,"key":"TCGA-CESC"},{"doc_count":281,"key":"TCGA-KIRP"},{"doc_count":237,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":182,"key":"TCGA-PAAD"},{"doc_count":179,"key":"TCGA-PCPG"},{"doc_count":145,"key":"TCGA-TGCT"},{"doc_count":144,"key":"TCGA-LAML"},{"doc_count":137,"key":"TCGA-READ"},{"doc_count":123,"key":"TCGA-THYM"},{"doc_count":92,"key":"TCGA-ACC"},{"doc_count":82,"key":"TCGA-MESO"},{"doc_count":80,"key":"TCGA-UVM"},{"doc_count":66,"key":"TCGA-KICH"},{"doc_count":57,"key":"TCGA-UCS"},{"doc_count":51,"key":"TCGA-CHOL"},{"doc_count":37,"key":"TCGA-DLBC"}]}}}}}}} \ No newline at end of file +{"data":{"projects":{"hits":{"edges":[{"node":{"disease_type":["Mesothelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU1FU08=","primary_site":["Heart, mediastinum, and pleura","Bronchus and lung"],"project_id":"TCGA-MESO"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVJFQUQ=","primary_site":["Rectosigmoid junction","Unknown","Rectum","Colon","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-READ"}},{"node":{"disease_type":["Lipomatous Neoplasms","Soft Tissue Tumors and Sarcomas, NOS","Fibromatous Neoplasms","Myomatous Neoplasms","Nerve Sheath Tumors","Synovial-like Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVNBUkM=","primary_site":["Corpus uteri","Bones, joints and articular cartilage of limbs","Other and unspecified parts of tongue","Stomach","Other and unspecified male genital organs","Colon","Connective, subcutaneous and other soft tissues","Meninges","Ovary","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Uterus, NOS","Kidney"],"project_id":"TCGA-SARC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUFDQw==","primary_site":["Adrenal gland"],"project_id":"TCGA-ACC"}},{"node":{"disease_type":["Gliomas"],"id":"UHJvamVjdDpUQ0dBLUxHRw==","primary_site":["Brain"],"project_id":"TCGA-LGG"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVRIQ0E=","primary_site":["Thyroid gland"],"project_id":"TCGA-THCA"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtQ0NTSw==","primary_site":["Kidney"],"project_id":"TARGET-CCSK"}},{"node":{"disease_type":["Neuroepitheliomatous Neoplasms","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtTkJM","primary_site":["Heart, mediastinum, and pleura","Stomach","Bones, joints and articular cartilage of other and unspecified sites","Lymph nodes","Liver and intrahepatic bile ducts","Unknown","Uterus, NOS","Skin","Meninges","Other endocrine glands and related structures","Adrenal gland","Renal pelvis","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Bones, joints and articular cartilage of limbs","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Hematopoietic and reticuloendothelial systems","Kidney"],"project_id":"TARGET-NBL"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNSRU5PTEFOSUI=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-CRENOLANIB"}},{"node":{"disease_type":["Myeloid Leukemias","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtQU1M","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-AML"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVNLQ00=","primary_site":["Skin"],"project_id":"TCGA-SKCM"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUNIT0w=","primary_site":["Other and unspecified parts of biliary tract","Gallbladder","Liver and intrahepatic bile ducts"],"project_id":"TCGA-CHOL"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUkM=","primary_site":["Kidney"],"project_id":"TCGA-KIRC"}},{"node":{"disease_type":["Adnexal and Skin Appendage Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Basal Cell Neoplasms","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Fibroepithelial Neoplasms","Ductal and Lobular Neoplasms","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJSQ0E=","primary_site":["Breast"],"project_id":"TCGA-BRCA"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpWQVJFUE9QLUFQT0xMTw==","primary_site":["Bronchus and lung"],"project_id":"VAREPOP-APOLLO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas","Gliomas"],"id":"UHJvamVjdDpIQ01JLUNNREM=","primary_site":["Brain","Rectum","Colon"],"project_id":"HCMI-CMDC"}},{"node":{"disease_type":["Unknown","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpPUkdBTk9JRC1QQU5DUkVBVElD","primary_site":["Pancreas"],"project_id":"ORGANOID-PANCREATIC"}},{"node":{"disease_type":["Not Reported","Gliomas"],"id":"UHJvamVjdDpUQ0dBLUdCTQ==","primary_site":["Brain"],"project_id":"TCGA-GBM"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU9W","primary_site":["Ovary"],"project_id":"TCGA-OV"}},{"node":{"disease_type":["Germ Cell Neoplasms","Acinar Cell Neoplasms","Miscellaneous Tumors","Thymic Epithelial Neoplasms","Gliomas","Not Reported","Complex Mixed and Stromal Neoplasms","Ductal and Lobular Neoplasms","Neuroepitheliomatous Neoplasms","Complex Epithelial Neoplasms","Adnexal and Skin Appendage Neoplasms","Mesothelial Neoplasms","Basal Cell Neoplasms","Mucoepidermoid Neoplasms","Specialized Gonadal Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Nevi and Melanomas","Squamous Cell Neoplasms","Transitional Cell Papillomas and Carcinomas","Paragangliomas and Glomus Tumors","Epithelial Neoplasms, NOS","Meningiomas"],"id":"UHJvamVjdDpGTS1BRA==","primary_site":["Kidney","Testis","Unknown","Other and unspecified parts of biliary tract","Adrenal gland","Thyroid gland","Spinal cord, cranial nerves, and other parts of central nervous system","Peripheral nerves and autonomic nervous system","Stomach","Cervix uteri","Bladder","Small intestine","Breast","Bronchus and lung","Other and ill-defined sites","Other and unspecified major salivary glands","Rectum","Retroperitoneum and peritoneum","Pancreas","Heart, mediastinum, and pleura","Prostate gland","Liver and intrahepatic bile ducts","Other and unspecified female genital organs","Thymus","Penis","Nasopharynx","Ovary","Uterus, NOS","Vulva","Anus and anal canal","Other and unspecified urinary organs","Trachea","Ureter","Other endocrine glands and related structures","Not Reported","Colon","Gallbladder","Vagina","Skin","Esophagus","Eye and adnexa","Other and ill-defined digestive organs"],"project_id":"FM-AD"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVVDRUM=","primary_site":["Corpus uteri","Uterus, NOS"],"project_id":"TCGA-UCEC"}},{"node":{"disease_type":["Not Applicable","Leukemias, NOS","Lymphoid Leukemias","Myeloid Leukemias","Other Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAz","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P3"}},{"node":{"disease_type":["Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpDR0NJLUJMR1NQ","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"CGCI-BLGSP"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAy","primary_site":["Hematopoietic and reticuloendothelial systems","Blood"],"project_id":"TARGET-ALL-P2"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpUQ0dBLUxBTUw=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TCGA-LAML"}},{"node":{"disease_type":["Not Reported","Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpUQ0dBLURMQkM=","primary_site":["Heart, mediastinum, and pleura","Testis","Stomach","Lymph nodes","Bones, joints and articular cartilage of other and unspecified sites","Brain","Thyroid gland","Small intestine","Colon","Breast","Other and unspecified major salivary glands","Retroperitoneum and peritoneum","Hematopoietic and reticuloendothelial systems","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-DLBC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJQ0g=","primary_site":["Kidney"],"project_id":"TCGA-KICH"}},{"node":{"disease_type":["Thymic Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRIWU0=","primary_site":["Heart, mediastinum, and pleura","Thymus"],"project_id":"TCGA-THYM"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVVWTQ==","primary_site":["Eye and adnexa"],"project_id":"TCGA-UVM"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBSQUQ=","primary_site":["Prostate gland"],"project_id":"TCGA-PRAD"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUxVU0M=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUSC"}},{"node":{"disease_type":["Germ Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRHQ1Q=","primary_site":["Testis"],"project_id":"TCGA-TGCT"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpDUFRBQy0z","primary_site":["Kidney","Uterus, NOS","Bronchus and lung"],"project_id":"CPTAC-3"}},{"node":{"disease_type":["Myeloid Leukemias","Other Hematologic Disorders","Unknown","Precursor Cell Lymphoblastic Lymphoma","Myelodysplastic Syndromes","Other Leukemias","Chronic Myeloproliferative Disorders","Plasma Cell Tumors","Leukemias, NOS"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNPSE9SVA==","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-COHORT"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVNUQUQ=","primary_site":["Stomach"],"project_id":"TCGA-STAD"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxJSEM=","primary_site":["Liver and intrahepatic bile ducts"],"project_id":"TCGA-LIHC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNPQUQ=","primary_site":["Rectosigmoid junction","Colon"],"project_id":"TCGA-COAD"}},{"node":{"disease_type":["Osseous and Chondromatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtT1M=","primary_site":["Not Reported","Bones, joints and articular cartilage of other and unspecified sites","Bones, joints and articular cartilage of limbs"],"project_id":"TARGET-OS"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtUlQ=","primary_site":["Lip","Kidney","Liver and intrahepatic bile ducts"],"project_id":"TARGET-RT"}},{"node":{"disease_type":["Mature B-Cell Lymphomas","Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpDVFNQLURMQkNMMQ==","primary_site":["Unknown","Lymph Nodes"],"project_id":"CTSP-DLBCL1"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUhOU0M=","primary_site":["Other and ill-defined sites in lip, oral cavity and pharynx","Palate","Other and unspecified parts of tongue","Hypopharynx","Lip","Tonsil","Gum","Larynx","Other and unspecified parts of mouth","Floor of mouth","Bones, joints and articular cartilage of other and unspecified sites","Oropharynx","Base of tongue"],"project_id":"TCGA-HNSC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUVTQ0E=","primary_site":["Esophagus","Stomach"],"project_id":"TCGA-ESCA"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNFU0M=","primary_site":["Cervix uteri"],"project_id":"TCGA-CESC"}},{"node":{"disease_type":["Paragangliomas and Glomus Tumors"],"id":"UHJvamVjdDpUQ0dBLVBDUEc=","primary_site":["Heart, mediastinum, and pleura","Other endocrine glands and related structures","Adrenal gland","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum"],"project_id":"TCGA-PCPG"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUlA=","primary_site":["Kidney"],"project_id":"TCGA-KIRP"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVVDUw==","primary_site":["Uterus, NOS"],"project_id":"TCGA-UCS"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBBQUQ=","primary_site":["Pancreas"],"project_id":"TCGA-PAAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Acinar Cell Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxVQUQ=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUAD"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtV1Q=","primary_site":["Kidney"],"project_id":"TARGET-WT"}},{"node":{"disease_type":["Plasma Cell Tumors"],"id":"UHJvamVjdDpNTVJGLUNPTU1QQVNT","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"MMRF-COMMPASS"}},{"node":{"disease_type":["Transitional Cell Papillomas and Carcinomas","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJMQ0E=","primary_site":["Bladder"],"project_id":"TCGA-BLCA"}},{"node":{"disease_type":["Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpOQ0lDQ1ItRExCQ0w=","primary_site":["Lymph Nodes"],"project_id":"NCICCR-DLBCL"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAx","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P1"}}]}},"viewer":{"projects":{"hits":{"edges":[{"node":{"disease_type":["Mesothelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU1FU08=","primary_site":["Heart, mediastinum, and pleura","Bronchus and lung"],"project_id":"TCGA-MESO"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVJFQUQ=","primary_site":["Rectosigmoid junction","Unknown","Rectum","Colon","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-READ"}},{"node":{"disease_type":["Lipomatous Neoplasms","Soft Tissue Tumors and Sarcomas, NOS","Fibromatous Neoplasms","Myomatous Neoplasms","Nerve Sheath Tumors","Synovial-like Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVNBUkM=","primary_site":["Corpus uteri","Bones, joints and articular cartilage of limbs","Other and unspecified parts of tongue","Stomach","Other and unspecified male genital organs","Colon","Connective, subcutaneous and other soft tissues","Meninges","Ovary","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Uterus, NOS","Kidney"],"project_id":"TCGA-SARC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUFDQw==","primary_site":["Adrenal gland"],"project_id":"TCGA-ACC"}},{"node":{"disease_type":["Gliomas"],"id":"UHJvamVjdDpUQ0dBLUxHRw==","primary_site":["Brain"],"project_id":"TCGA-LGG"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVRIQ0E=","primary_site":["Thyroid gland"],"project_id":"TCGA-THCA"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtQ0NTSw==","primary_site":["Kidney"],"project_id":"TARGET-CCSK"}},{"node":{"disease_type":["Neuroepitheliomatous Neoplasms","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtTkJM","primary_site":["Heart, mediastinum, and pleura","Stomach","Bones, joints and articular cartilage of other and unspecified sites","Lymph nodes","Liver and intrahepatic bile ducts","Unknown","Uterus, NOS","Skin","Meninges","Other endocrine glands and related structures","Adrenal gland","Renal pelvis","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Bones, joints and articular cartilage of limbs","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum","Peripheral nerves and autonomic nervous system","Hematopoietic and reticuloendothelial systems","Kidney"],"project_id":"TARGET-NBL"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNSRU5PTEFOSUI=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-CRENOLANIB"}},{"node":{"disease_type":["Myeloid Leukemias","Not Applicable"],"id":"UHJvamVjdDpUQVJHRVQtQU1M","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-AML"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVNLQ00=","primary_site":["Skin"],"project_id":"TCGA-SKCM"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUNIT0w=","primary_site":["Other and unspecified parts of biliary tract","Gallbladder","Liver and intrahepatic bile ducts"],"project_id":"TCGA-CHOL"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUkM=","primary_site":["Kidney"],"project_id":"TCGA-KIRC"}},{"node":{"disease_type":["Adnexal and Skin Appendage Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Basal Cell Neoplasms","Epithelial Neoplasms, NOS","Squamous Cell Neoplasms","Fibroepithelial Neoplasms","Ductal and Lobular Neoplasms","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJSQ0E=","primary_site":["Breast"],"project_id":"TCGA-BRCA"}},{"node":{"disease_type":["Epithelial Neoplasms, NOS","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpWQVJFUE9QLUFQT0xMTw==","primary_site":["Bronchus and lung"],"project_id":"VAREPOP-APOLLO"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas","Gliomas"],"id":"UHJvamVjdDpIQ01JLUNNREM=","primary_site":["Brain","Rectum","Colon"],"project_id":"HCMI-CMDC"}},{"node":{"disease_type":["Unknown","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpPUkdBTk9JRC1QQU5DUkVBVElD","primary_site":["Pancreas"],"project_id":"ORGANOID-PANCREATIC"}},{"node":{"disease_type":["Not Reported","Gliomas"],"id":"UHJvamVjdDpUQ0dBLUdCTQ==","primary_site":["Brain"],"project_id":"TCGA-GBM"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms"],"id":"UHJvamVjdDpUQ0dBLU9W","primary_site":["Ovary"],"project_id":"TCGA-OV"}},{"node":{"disease_type":["Germ Cell Neoplasms","Acinar Cell Neoplasms","Miscellaneous Tumors","Thymic Epithelial Neoplasms","Gliomas","Not Reported","Complex Mixed and Stromal Neoplasms","Ductal and Lobular Neoplasms","Neuroepitheliomatous Neoplasms","Complex Epithelial Neoplasms","Adnexal and Skin Appendage Neoplasms","Mesothelial Neoplasms","Basal Cell Neoplasms","Mucoepidermoid Neoplasms","Specialized Gonadal Neoplasms","Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Nevi and Melanomas","Squamous Cell Neoplasms","Transitional Cell Papillomas and Carcinomas","Paragangliomas and Glomus Tumors","Epithelial Neoplasms, NOS","Meningiomas"],"id":"UHJvamVjdDpGTS1BRA==","primary_site":["Kidney","Testis","Unknown","Other and unspecified parts of biliary tract","Adrenal gland","Thyroid gland","Spinal cord, cranial nerves, and other parts of central nervous system","Peripheral nerves and autonomic nervous system","Stomach","Cervix uteri","Bladder","Small intestine","Breast","Bronchus and lung","Other and ill-defined sites","Other and unspecified major salivary glands","Rectum","Retroperitoneum and peritoneum","Pancreas","Heart, mediastinum, and pleura","Prostate gland","Liver and intrahepatic bile ducts","Other and unspecified female genital organs","Thymus","Penis","Nasopharynx","Ovary","Uterus, NOS","Vulva","Anus and anal canal","Other and unspecified urinary organs","Trachea","Ureter","Other endocrine glands and related structures","Not Reported","Colon","Gallbladder","Vagina","Skin","Esophagus","Eye and adnexa","Other and ill-defined digestive organs"],"project_id":"FM-AD"}},{"node":{"disease_type":["Not Reported","Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVVDRUM=","primary_site":["Corpus uteri","Uterus, NOS"],"project_id":"TCGA-UCEC"}},{"node":{"disease_type":["Not Applicable","Leukemias, NOS","Lymphoid Leukemias","Myeloid Leukemias","Other Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAz","primary_site":["Unknown","Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P3"}},{"node":{"disease_type":["Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpDR0NJLUJMR1NQ","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"CGCI-BLGSP"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAy","primary_site":["Hematopoietic and reticuloendothelial systems","Blood"],"project_id":"TARGET-ALL-P2"}},{"node":{"disease_type":["Myeloid Leukemias"],"id":"UHJvamVjdDpUQ0dBLUxBTUw=","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TCGA-LAML"}},{"node":{"disease_type":["Not Reported","Mature B-Cell Lymphomas"],"id":"UHJvamVjdDpUQ0dBLURMQkM=","primary_site":["Heart, mediastinum, and pleura","Testis","Stomach","Lymph nodes","Bones, joints and articular cartilage of other and unspecified sites","Brain","Thyroid gland","Small intestine","Colon","Breast","Other and unspecified major salivary glands","Retroperitoneum and peritoneum","Hematopoietic and reticuloendothelial systems","Connective, subcutaneous and other soft tissues"],"project_id":"TCGA-DLBC"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJQ0g=","primary_site":["Kidney"],"project_id":"TCGA-KICH"}},{"node":{"disease_type":["Thymic Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRIWU0=","primary_site":["Heart, mediastinum, and pleura","Thymus"],"project_id":"TCGA-THYM"}},{"node":{"disease_type":["Nevi and Melanomas"],"id":"UHJvamVjdDpUQ0dBLVVWTQ==","primary_site":["Eye and adnexa"],"project_id":"TCGA-UVM"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBSQUQ=","primary_site":["Prostate gland"],"project_id":"TCGA-PRAD"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUxVU0M=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUSC"}},{"node":{"disease_type":["Germ Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVRHQ1Q=","primary_site":["Testis"],"project_id":"TCGA-TGCT"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpDUFRBQy0z","primary_site":["Kidney","Uterus, NOS","Bronchus and lung"],"project_id":"CPTAC-3"}},{"node":{"disease_type":["Myeloid Leukemias","Other Hematologic Disorders","Unknown","Precursor Cell Lymphoblastic Lymphoma","Myelodysplastic Syndromes","Other Leukemias","Chronic Myeloproliferative Disorders","Plasma Cell Tumors","Leukemias, NOS"],"id":"UHJvamVjdDpCRUFUQU1MMS4wLUNPSE9SVA==","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"BEATAML1.0-COHORT"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLVNUQUQ=","primary_site":["Stomach"],"project_id":"TCGA-STAD"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxJSEM=","primary_site":["Liver and intrahepatic bile ducts"],"project_id":"TCGA-LIHC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNPQUQ=","primary_site":["Rectosigmoid junction","Colon"],"project_id":"TCGA-COAD"}},{"node":{"disease_type":["Osseous and Chondromatous Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtT1M=","primary_site":["Not Reported","Bones, joints and articular cartilage of other and unspecified sites","Bones, joints and articular cartilage of limbs"],"project_id":"TARGET-OS"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtUlQ=","primary_site":["Lip","Kidney","Liver and intrahepatic bile ducts"],"project_id":"TARGET-RT"}},{"node":{"disease_type":["Mature B-Cell Lymphomas","Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpDVFNQLURMQkNMMQ==","primary_site":["Unknown","Lymph Nodes"],"project_id":"CTSP-DLBCL1"}},{"node":{"disease_type":["Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUhOU0M=","primary_site":["Other and ill-defined sites in lip, oral cavity and pharynx","Palate","Other and unspecified parts of tongue","Hypopharynx","Lip","Tonsil","Gum","Larynx","Other and unspecified parts of mouth","Floor of mouth","Bones, joints and articular cartilage of other and unspecified sites","Oropharynx","Base of tongue"],"project_id":"TCGA-HNSC"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUVTQ0E=","primary_site":["Esophagus","Stomach"],"project_id":"TCGA-ESCA"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Adenomas and Adenocarcinomas","Complex Epithelial Neoplasms","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUNFU0M=","primary_site":["Cervix uteri"],"project_id":"TCGA-CESC"}},{"node":{"disease_type":["Paragangliomas and Glomus Tumors"],"id":"UHJvamVjdDpUQ0dBLVBDUEc=","primary_site":["Heart, mediastinum, and pleura","Other endocrine glands and related structures","Adrenal gland","Connective, subcutaneous and other soft tissues","Other and ill-defined sites","Spinal cord, cranial nerves, and other parts of central nervous system","Retroperitoneum and peritoneum"],"project_id":"TCGA-PCPG"}},{"node":{"disease_type":["Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUtJUlA=","primary_site":["Kidney"],"project_id":"TCGA-KIRP"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVVDUw==","primary_site":["Uterus, NOS"],"project_id":"TCGA-UCS"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Ductal and Lobular Neoplasms"],"id":"UHJvamVjdDpUQ0dBLVBBQUQ=","primary_site":["Pancreas"],"project_id":"TCGA-PAAD"}},{"node":{"disease_type":["Cystic, Mucinous and Serous Neoplasms","Acinar Cell Neoplasms","Adenomas and Adenocarcinomas"],"id":"UHJvamVjdDpUQ0dBLUxVQUQ=","primary_site":["Bronchus and lung"],"project_id":"TCGA-LUAD"}},{"node":{"disease_type":["Complex Mixed and Stromal Neoplasms"],"id":"UHJvamVjdDpUQVJHRVQtV1Q=","primary_site":["Kidney"],"project_id":"TARGET-WT"}},{"node":{"disease_type":["Plasma Cell Tumors"],"id":"UHJvamVjdDpNTVJGLUNPTU1QQVNT","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"MMRF-COMMPASS"}},{"node":{"disease_type":["Transitional Cell Papillomas and Carcinomas","Epithelial Neoplasms, NOS","Adenomas and Adenocarcinomas","Squamous Cell Neoplasms"],"id":"UHJvamVjdDpUQ0dBLUJMQ0E=","primary_site":["Bladder"],"project_id":"TCGA-BLCA"}},{"node":{"disease_type":["Lymphoid Neoplasm Diffuse Large B-cell Lymphoma"],"id":"UHJvamVjdDpOQ0lDQ1ItRExCQ0w=","primary_site":["Lymph Nodes"],"project_id":"NCICCR-DLBCL"}},{"node":{"disease_type":["Lymphoid Leukemias"],"id":"UHJvamVjdDpUQVJHRVQtQUxMLVAx","primary_site":["Hematopoietic and reticuloendothelial systems"],"project_id":"TARGET-ALL-P1"}}]}},"explore":{"cases":{"filtered":{"project__project_id":{"buckets":[{"doc_count":6,"key":"TCGA-COAD"},{"doc_count":4,"key":"TCGA-BRCA"},{"doc_count":4,"key":"TCGA-UCEC"},{"doc_count":3,"key":"TCGA-LIHC"},{"doc_count":2,"key":"TCGA-STAD"},{"doc_count":1,"key":"TCGA-LUAD"},{"doc_count":1,"key":"TCGA-LUSC"}]}},"total":{"project__project_id":{"buckets":[{"doc_count":986,"key":"TCGA-BRCA"},{"doc_count":567,"key":"TCGA-LUAD"},{"doc_count":530,"key":"TCGA-UCEC"},{"doc_count":510,"key":"TCGA-LGG"},{"doc_count":508,"key":"TCGA-HNSC"},{"doc_count":498,"key":"TCGA-PRAD"},{"doc_count":495,"key":"TCGA-LUSC"},{"doc_count":492,"key":"TCGA-THCA"},{"doc_count":469,"key":"TCGA-SKCM"},{"doc_count":440,"key":"TCGA-STAD"},{"doc_count":436,"key":"TCGA-OV"},{"doc_count":412,"key":"TCGA-BLCA"},{"doc_count":400,"key":"TCGA-COAD"},{"doc_count":393,"key":"TCGA-GBM"},{"doc_count":364,"key":"TCGA-LIHC"},{"doc_count":336,"key":"TCGA-KIRC"},{"doc_count":289,"key":"TCGA-CESC"},{"doc_count":281,"key":"TCGA-KIRP"},{"doc_count":237,"key":"TCGA-SARC"},{"doc_count":184,"key":"TCGA-ESCA"},{"doc_count":182,"key":"TCGA-PAAD"},{"doc_count":179,"key":"TCGA-PCPG"},{"doc_count":145,"key":"TCGA-TGCT"},{"doc_count":144,"key":"TCGA-LAML"},{"doc_count":137,"key":"TCGA-READ"},{"doc_count":123,"key":"TCGA-THYM"},{"doc_count":92,"key":"TCGA-ACC"},{"doc_count":82,"key":"TCGA-MESO"},{"doc_count":80,"key":"TCGA-UVM"},{"doc_count":66,"key":"TCGA-KICH"},{"doc_count":57,"key":"TCGA-UCS"},{"doc_count":51,"key":"TCGA-CHOL"},{"doc_count":37,"key":"TCGA-DLBC"}]}}}}}}} \ No newline at end of file diff --git a/cypress/integration/ExploreGDC.js b/cypress/integration/ExploreGDC.js index 6f5c5ce..c280c4e 100644 --- a/cypress/integration/ExploreGDC.js +++ b/cypress/integration/ExploreGDC.js @@ -93,15 +93,15 @@ describe('Explore GDC', function() { /** * Checks that each results tab has the expected information - * Assumes donor tab is already selected - * @param {*} donorArray array of strings to check for on donor tab + * Assumes case tab is already selected + * @param {*} caseArray array of strings to check for on case tab * @param {*} geneArray array of strings to check for on gene tab * @param {*} mutationArray array of strings to check for on mutation tab */ - var checkAllResultsTab = function(donorArray, geneArray, mutationArray) { + var checkAllResultsTab = function(caseArray, geneArray, mutationArray) { cy.wait(3000) // wait a few seconds for results to load - // Validate donor results - checkResultsTab(donorArray) + // Validate case results + checkResultsTab(caseArray) // Validate gene results selectResultsTab(1) @@ -116,11 +116,11 @@ describe('Explore GDC', function() { // Select ethnicity -> hispanic or latino cy.get('.dijitDialog').within(() => { cy.contains('Explore data available on the GDC Data Portal') - selectFacetTab(0, 0, 0) + selectFacetTab(0, 0, 2) }) checkAllResultsTab( - ['Showing 1 to 20 of 1,492', 'TCGA-A5-A1OF', 'TCGA-AJ-A3EK'], + ['Showing 1 to 20 of 3,107', 'TCGA-A5-A1OF', 'TCGA-AJ-A3EK'], ['Showing 1 to 20 of 21,168', 'TP53', 'TTN'], ['Showing 1 to 20 of 120,824', 'chr2:g.208248388C>T', 'chr17:g.7673803G>A'] ) @@ -140,9 +140,9 @@ describe('Explore GDC', function() { // Add tracks and check that they were added cy.get('.dijitTabContainer').eq(1).within(() => { - cy.contains('All Genes for Donor').eq(0).click() - cy.contains('All SSMs for Donor').eq(0).click() - cy.contains('All CNVs for Donor').eq(0).click() + cy.contains('All Genes').eq(0).click() + cy.contains('All Mutations').eq(0).click() + cy.contains('All CNVs').eq(0).click() }) closePopup() diff --git a/cypress/integration/ExportGeneTrack.js b/cypress/integration/ExportGeneTrack.js index 363b291..3f19d6f 100644 --- a/cypress/integration/ExportGeneTrack.js +++ b/cypress/integration/ExportGeneTrack.js @@ -13,18 +13,11 @@ describe('Gene track', function() { response: 'fixture:ExportGenes/GenesTable.json' }).as('getGeneTable') - cy - .route({ - method: 'POST', - url: 'v0/graphql/gene-projects', - response: 'fixture:ExportGenes/GeneProjects.json' - }).as('getGeneProjects') - cy .route({ method: 'POST', url: 'v0/graphql/projectsTable', - response: 'fixture:ExportGenes/ProjectTable.json' + response: 'fixture:ExportGenes/GeneProjects.json' }).as('getProjectsTable') // Open track menu @@ -58,7 +51,7 @@ describe('Gene track', function() { if (radioIndex === 2) { cy.wait('@getGeneTable').then(() => { cy.wait(3000) // Give time to process results - cy.wait(['@getGeneProjects.all', '@getProjectsTable.all']).then(() => { + cy.wait(['@getProjectsTable.all']).then(() => { cy.wait(3000) // Give time to process results for (var text of textValues) { cy.get('textarea').should('to.include.value', text) @@ -81,7 +74,7 @@ describe('Gene track', function() { it('Should be able to export Genes in various export formats', function() { testExport(2, 'GFF3', ['##gff-version 3', '##sequence-region', 'Gene']) testExport(3, 'BED', ['track name="GDC_Genes" useScore=0', '1 152302175 152325203 ENSG00000143631 -']) - testExport(4, 'CSV', ['type,start,end,strand,id,gene name,biotype,symbol,synonyms', 'Gene,152302175,152325203,-1,,filaggrin,protein_coding,FLG']) + testExport(4, 'CSV', ['id,type,start,end,chromosome,strand,gene name,biotype,symbol,synonyms', 'ENSG00000143631,Gene,152302175,152325203,1,-1,filaggrin,protein_coding,FLG']) testExport(5, 'Sequin Table', ['>Feature 1', '152325203 152302176 Gene']) cy.fixture('ExportGenes/track-conf-export.conf').then((json) => { testExport(6, 'Track Config', [json]) diff --git a/cypress/integration/ExportSSMTrack.js b/cypress/integration/ExportSSMTrack.js index fdc63fc..322cb24 100644 --- a/cypress/integration/ExportSSMTrack.js +++ b/cypress/integration/ExportSSMTrack.js @@ -12,13 +12,6 @@ describe('SSM track', function() { url: 'v0/graphql/SsmsTable', response: 'fixture:ExportSSMs/SsmsTable.json' }).as('getSSMTable') - - cy - .route({ - method: 'POST', - url: 'v0/graphql/ssm-projects', - response: 'fixture:ExportSSMs/SSMProjects.json' - }).as('getSSMProjects') cy .route({ @@ -58,7 +51,7 @@ describe('SSM track', function() { if (radioIndex === 2) { cy.wait('@getSSMTable').then(() => { cy.wait(3000) // Give time to process results - cy.wait(['@getSSMProjects.all', '@getProjectsTable.all']).then(() => { + cy.wait(['@getProjectsTable.all']).then(() => { cy.wait(3000) // Give time to process results for (var text of textValues) { cy.get('textarea').should('to.include.value', text) @@ -81,7 +74,7 @@ describe('SSM track', function() { it('Should be able to export SSMs in various export formats', function() { testExport(2, 'GFF3', ['##gff-version 3', '##sequence-region', 'Simple Somatic Mutation']) testExport(3, 'BED', ['track name="GDC_SSM" useScore=0', '1 56496417 56496417 ec690998-d555-5ed3-ab18-55e8685b2bfd']) - testExport(4, 'CSV', ['type,start,end,strand,id,reference allele,dna change,subtype', 'Simple Somatic Mutation,56496417,56496417,,,T,chr1:g.56496417delT,Small deletion']) + testExport(4, 'CSV', ['id,type,start,end,chromosome,reference allele,dna change,subtype', 'ec690998-d555-5ed3-ab18-55e8685b2bfd,Simple Somatic Mutation,56496417,56496417,,T,chr1:g.56496417delT,Small deletion']) testExport(5, 'Sequin Table', ['>Feature 1', '56496418 56496417 Simple Somatic Mutation']) cy.fixture('ExportSSMs/track-conf-export.conf').then((json) => { testExport(6, 'Track Config', [json]) diff --git a/cypress/integration/PrimarySites.js b/cypress/integration/PrimarySites.js index 827e968..3ddbef5 100644 --- a/cypress/integration/PrimarySites.js +++ b/cypress/integration/PrimarySites.js @@ -40,7 +40,7 @@ describe('Primary sites dialog', function() { it('Should be able to view primary sites', function() { // Open track menu cy.get('#dropdownbutton_gdc').type('{enter}') - cy.contains('Explore Primary Sites').click() + cy.contains('Explore primary sites').click() cy.wait('@getPrimarySites') @@ -51,13 +51,13 @@ describe('Primary sites dialog', function() { // Add SSM, Gene, and CNV tracks for primary site bronchus and lung (assume first in list) cy.get('#dijit_form_ComboButton_0_arrow').should('be.visible').type('{enter}') - cy.contains('SSMs for Primary Site').click() + cy.contains('All Mutations').click() cy.get('#dijit_form_ComboButton_0_arrow').should('be.visible').type('{enter}') - cy.contains('Genes for Primary Site').click() + cy.contains('All Genes').click() cy.get('#dijit_form_ComboButton_0_arrow').should('be.visible').type('{enter}') - cy.contains('CNVs for Primary Site').click() + cy.contains('All CNVs').click() cy.contains('GDC Primary Site Browser').parent().within(() => { cy.get('.dijitDialogCloseIcon').click() diff --git a/cypress/integration/projects.js b/cypress/integration/projects.js index e3eda06..d219e1c 100644 --- a/cypress/integration/projects.js +++ b/cypress/integration/projects.js @@ -41,7 +41,7 @@ describe('Project dialog', function() { it('Should be able to view projects', function() { // Open track menu cy.get('#dropdownbutton_gdc').type('{enter}') - cy.contains('Explore Projects').click() + cy.contains('Explore projects').click() cy.wait('@getProjects') @@ -53,13 +53,13 @@ describe('Project dialog', function() { // Add SSM, Gene, and CNV tracks for project FM-AD (assume first in list) // Note that even though we select FM-AD, we are mocking TCGA-BRCA cy.get('#dijit_form_ComboButton_0_arrow').should('be.visible').type('{enter}') - cy.contains('SSMs for Project').click() + cy.contains('All Mutations').click() cy.get('#dijit_form_ComboButton_0_arrow').should('be.visible').type('{enter}') - cy.contains('Genes for Project').click() + cy.contains('All Genes').click() cy.get('#dijit_form_ComboButton_0_arrow').should('be.visible').type('{enter}') - cy.contains('CNVs for Project').click() + cy.contains('All CNVs').click() cy.contains('GDC Project Browser').parent().within(() => { cy.get('.dijitDialogCloseIcon').click() @@ -72,12 +72,6 @@ describe('Project dialog', function() { cy.contains('GDC_CNVs_FM-AD') // Stub some responses for viewing a mutation - cy - .route({ - method: 'POST', - url: 'v0/graphql/ssm-projects', - response: 'fixture:projects/mutation-projects.json' - }).as('getProjectsForMutation') cy .route({ @@ -93,7 +87,6 @@ describe('Project dialog', function() { // Ensure mutation has right data cy.get('.popup-dialog').within(() => { - cy.wait('@getProjectsForMutation') cy.contains('Simple Somatic Mutation') cy.contains('chr1:g.52055208delT') cy.contains('7ffb5e22-05d6-5664-a0b0-908184bacbb9') @@ -117,12 +110,6 @@ describe('Project dialog', function() { }) // Stub some responses for viewing a gene - cy - .route({ - method: 'POST', - url: 'v0/graphql/gene-projects', - response: 'fixture:projects/gene-projects.json' - }).as('getProjectsForGene') cy .route({ @@ -138,7 +125,6 @@ describe('Project dialog', function() { // Ensure gene has right data cy.get('.popup-dialog').within(() => { - cy.wait('@getProjectsForGene') cy.contains('Gene') cy.contains('The protein encoded by this gene is expressed in the brain, predominantly in the parietal and frontal cortex as well as in dorsal root ganglia.') cy.contains('protein_coding') diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..45c1505 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,3 @@ +_site +.sass-cache +.jekyll-metadata diff --git a/docs/404.html b/docs/404.html new file mode 100644 index 0000000..c472b4e --- /dev/null +++ b/docs/404.html @@ -0,0 +1,24 @@ +--- +layout: default +--- + + + +
Page not found :(
+The requested page could not be found.
+