diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e87562..78d7e78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [v0.4.0](https://github.com/ivanwilliammd/iderare-pheno/releases/tag/v0.4.0) - 2024-04-07 +- Added export iderare.yml function + ## [v0.3.5](https://github.com/ivanwilliammd/iderare-pheno/releases/tag/v0.3.5) - 2024-04-07 - Updated pyproject.toml to recursively get the data inside the package diff --git a/Playbook.ipynb b/Playbook.ipynb index 0429620..c18b9bb 100644 --- a/Playbook.ipynb +++ b/Playbook.ipynb @@ -18,34 +18,16 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 1, "metadata": {}, - "outputs": [ - { - "ename": "FileNotFoundError", - "evalue": "[Errno 2] No such file or directory: 'phenotype/subset/icd102omim_subset.tsv'", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[1;32mIn[4], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01miderare_pheno\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mconverter\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m term2omim, term2orpha, term2hpo, batchconvert\n", - "File \u001b[1;32md:\\Bioinformatics\\iderare-pheno\\iderare_pheno\\converter.py:21\u001b[0m\n\u001b[0;32m 18\u001b[0m clinical_data \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mclinical_data.txt\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m 20\u001b[0m \u001b[38;5;66;03m# Read the clinical data and parse the data\u001b[39;00m\n\u001b[1;32m---> 21\u001b[0m icd10omim_df \u001b[38;5;241m=\u001b[39m \u001b[43mpd\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mread_csv\u001b[49m\u001b[43m(\u001b[49m\u001b[43mphenotype_folder\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m+\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m/\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;241;43m+\u001b[39;49m\u001b[43m \u001b[49m\u001b[43micd10omim\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msep\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;130;43;01m\\t\u001b[39;49;00m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[0;32m 22\u001b[0m loinc2hpo_df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mread_csv(phenotype_folder \u001b[38;5;241m+\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m/\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;241m+\u001b[39m loinc2hpo, sep\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;130;01m\\t\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m 23\u001b[0m orpha2omim_df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mread_csv(phenotype_folder \u001b[38;5;241m+\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m/\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;241m+\u001b[39m orpha2omim, sep\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;130;01m\\t\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\io\\parsers\\readers.py:912\u001b[0m, in \u001b[0;36mread_csv\u001b[1;34m(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, date_format, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options, dtype_backend)\u001b[0m\n\u001b[0;32m 899\u001b[0m kwds_defaults \u001b[38;5;241m=\u001b[39m _refine_defaults_read(\n\u001b[0;32m 900\u001b[0m dialect,\n\u001b[0;32m 901\u001b[0m delimiter,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 908\u001b[0m dtype_backend\u001b[38;5;241m=\u001b[39mdtype_backend,\n\u001b[0;32m 909\u001b[0m )\n\u001b[0;32m 910\u001b[0m kwds\u001b[38;5;241m.\u001b[39mupdate(kwds_defaults)\n\u001b[1;32m--> 912\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43m_read\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfilepath_or_buffer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mkwds\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\io\\parsers\\readers.py:577\u001b[0m, in \u001b[0;36m_read\u001b[1;34m(filepath_or_buffer, kwds)\u001b[0m\n\u001b[0;32m 574\u001b[0m _validate_names(kwds\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mnames\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m))\n\u001b[0;32m 576\u001b[0m \u001b[38;5;66;03m# Create the parser.\u001b[39;00m\n\u001b[1;32m--> 577\u001b[0m parser \u001b[38;5;241m=\u001b[39m \u001b[43mTextFileReader\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfilepath_or_buffer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwds\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 579\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m chunksize \u001b[38;5;129;01mor\u001b[39;00m iterator:\n\u001b[0;32m 580\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m parser\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\io\\parsers\\readers.py:1407\u001b[0m, in \u001b[0;36mTextFileReader.__init__\u001b[1;34m(self, f, engine, **kwds)\u001b[0m\n\u001b[0;32m 1404\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39moptions[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhas_index_names\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m kwds[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhas_index_names\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n\u001b[0;32m 1406\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhandles: IOHandles \u001b[38;5;241m|\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m-> 1407\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_engine \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_make_engine\u001b[49m\u001b[43m(\u001b[49m\u001b[43mf\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mengine\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\io\\parsers\\readers.py:1661\u001b[0m, in \u001b[0;36mTextFileReader._make_engine\u001b[1;34m(self, f, engine)\u001b[0m\n\u001b[0;32m 1659\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;129;01min\u001b[39;00m mode:\n\u001b[0;32m 1660\u001b[0m mode \u001b[38;5;241m+\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m-> 1661\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhandles \u001b[38;5;241m=\u001b[39m \u001b[43mget_handle\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 1662\u001b[0m \u001b[43m \u001b[49m\u001b[43mf\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1663\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1664\u001b[0m \u001b[43m \u001b[49m\u001b[43mencoding\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mencoding\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1665\u001b[0m \u001b[43m \u001b[49m\u001b[43mcompression\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcompression\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1666\u001b[0m \u001b[43m \u001b[49m\u001b[43mmemory_map\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mmemory_map\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1667\u001b[0m \u001b[43m \u001b[49m\u001b[43mis_text\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mis_text\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1668\u001b[0m \u001b[43m \u001b[49m\u001b[43merrors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mencoding_errors\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstrict\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1669\u001b[0m \u001b[43m \u001b[49m\u001b[43mstorage_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstorage_options\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1670\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 1671\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhandles \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[0;32m 1672\u001b[0m f \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhandles\u001b[38;5;241m.\u001b[39mhandle\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\io\\common.py:859\u001b[0m, in \u001b[0;36mget_handle\u001b[1;34m(path_or_buf, mode, encoding, compression, memory_map, is_text, errors, storage_options)\u001b[0m\n\u001b[0;32m 854\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(handle, \u001b[38;5;28mstr\u001b[39m):\n\u001b[0;32m 855\u001b[0m \u001b[38;5;66;03m# Check whether the filename is to be opened in binary mode.\u001b[39;00m\n\u001b[0;32m 856\u001b[0m \u001b[38;5;66;03m# Binary mode does not support 'encoding' and 'newline'.\u001b[39;00m\n\u001b[0;32m 857\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m ioargs\u001b[38;5;241m.\u001b[39mencoding \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;129;01min\u001b[39;00m ioargs\u001b[38;5;241m.\u001b[39mmode:\n\u001b[0;32m 858\u001b[0m \u001b[38;5;66;03m# Encoding\u001b[39;00m\n\u001b[1;32m--> 859\u001b[0m handle \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mopen\u001b[39;49m\u001b[43m(\u001b[49m\n\u001b[0;32m 860\u001b[0m \u001b[43m \u001b[49m\u001b[43mhandle\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 861\u001b[0m \u001b[43m \u001b[49m\u001b[43mioargs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 862\u001b[0m \u001b[43m \u001b[49m\u001b[43mencoding\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mioargs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mencoding\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 863\u001b[0m \u001b[43m \u001b[49m\u001b[43merrors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43merrors\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 864\u001b[0m \u001b[43m \u001b[49m\u001b[43mnewline\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[0;32m 865\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 866\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m 867\u001b[0m \u001b[38;5;66;03m# Binary mode\u001b[39;00m\n\u001b[0;32m 868\u001b[0m handle \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mopen\u001b[39m(handle, ioargs\u001b[38;5;241m.\u001b[39mmode)\n", - "\u001b[1;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: 'phenotype/subset/icd102omim_subset.tsv'" - ] - } - ], + "outputs": [], "source": [ "from iderare_pheno.converter import term2omim, term2orpha, term2hpo, batchconvert" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -68,7 +50,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -96,7 +78,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -124,7 +106,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -293,29 +275,16 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 6, "metadata": {}, - "outputs": [ - { - "ename": "PanicException", - "evalue": "called `Result::unwrap()` on an `Err` value: CannotOpenFile(\"d:\\\\Bioinformatics\\\\phenotype\\\\data\\\\hp.obo\")", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mPanicException\u001b[0m Traceback (most recent call last)", - "Cell \u001b[1;32mIn[1], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01miderare_pheno\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01msimrec\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m hpo2omim_similarity\n", - "File \u001b[1;32md:\\Bioinformatics\\iderare-pheno\\iderare_pheno\\simrec.py:4\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mos\u001b[39;00m\n\u001b[0;32m 2\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mpyhpo\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m HPOSet, Omim, Ontology, stats\n\u001b[1;32m----> 4\u001b[0m \u001b[43mOntology\u001b[49m\u001b[43m(\u001b[49m\u001b[43mos\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpath\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mabspath\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m../phenotype/data\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 7\u001b[0m \u001b[38;5;66;03m# Convert OMIM code to OMIM Class Object\u001b[39;00m\n\u001b[0;32m 8\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21momim2object\u001b[39m(omim_set):\n", - "\u001b[1;31mPanicException\u001b[0m: called `Result::unwrap()` on an `Err` value: CannotOpenFile(\"d:\\\\Bioinformatics\\\\phenotype\\\\data\\\\hp.obo\")" - ] - } - ], + "outputs": [], "source": [ "from iderare_pheno.simrec import hpo2omim_similarity" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -326,7 +295,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -388,7 +357,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ @@ -397,7 +366,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ @@ -408,7 +377,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, "outputs": [ { @@ -422,7 +391,7 @@ "Similarity analysis done.\n", "\n", "Object names sorted by the highest similarities:\n", - "['HSD3B7', 'LIPA', 'AKR1D1', 'PYGL', 'BAAT', 'CDAN1', 'CALR', 'MRPL3', 'TRMT10C', 'RUNX1', 'FAH', 'LARS1', 'STEAP3', 'MYO5B', 'SLC2A2', 'KIF23', 'SLC4A1', 'PKLR', 'RHAG', 'SCO1', 'PHKG2', 'VPS45', 'TKFC', 'SP110', 'RPS14', 'GALM', 'KLF1', 'MST1', 'GPR35', 'SEMA4D', 'LARS2', 'TFAM', 'MRPS7', 'UNC13D', 'KCNN4', 'ACAD9', 'HBB', 'FERMT3', 'ABCD3', 'LCAT', 'PCCB', 'PCCA', 'UQCRB', 'RHCE', 'MPI', 'HAMP', 'SMPD1', 'STXBP2', 'MMAB', 'UQCRFS1', 'STX11', 'RACGAP1', 'SLC25A13', 'FADD', 'DCDC2', 'DEF6', 'SCARB2', 'F5', 'STX5', 'EPB42', 'ABCB4', 'SRSF2', 'JAK2', 'ATP8B1', 'FECH', 'CDIN1', 'IARS1', 'IRF8', 'SAR1B', 'MPIG6B', 'KIF12', 'PHKA2', 'PHKB', 'HBG1', 'LYRM4', 'CCDC115', 'MRPL44', 'SLC7A7', 'SPTA1', 'GALT', 'PCK1', 'DLD', 'UNC45A', 'SPTB', 'PRF1', 'ALAS2', 'TMEM165', 'EPB41', 'TET2', 'GPD1', 'SARS2', 'COX4I2', 'ABCG8', 'CD55', 'NLRC4', 'MMAA', 'AMN', 'USP53', 'ATP6AP1', 'LPIN2', 'UMPS', 'PLEKHM1', 'ATP7B', 'MPL', 'NR1H4', 'VPS33B', 'TBXAS1', 'RHD', 'FARSB', 'TALDO1', 'PALLD', 'RABL3', 'TJP2', 'TRMU', 'GYS2', 'MTTP', 'ABCC2', 'DDOST', 'HMGCL', 'HMOX1', 'MYH9', 'HADH', 'GATC', 'QRSL1', 'HBG2', 'HMGCS2', 'EARS2', 'SLC51A', 'SLC30A10', 'CYC1', 'MECOM', 'ABCB11', 'MPV17', 'NFS1', 'PSMB4', 'PSMB9', 'TMEM199', 'RBCK1', 'ALG8', 'TNFSF15', 'MMEL1', 'POU2AF1', 'SPIB', 'PRKACG', 'GFI1B', 'ALDOB', 'THPO', 'ABCA1', 'TFRC', 'ALDOA', 'GPIHBP1', 'SLC51B', 'SEMA7A', 'BLVRA', 'GIMAP5', 'GPI', 'TF', 'APOB', 'ADK', 'ITK', 'LCK', 'SPINK1', 'CD46', 'DOCK2', 'GYPC', 'RINT1', 'IVD', 'MS4A1', 'CUBN', 'FBP1', 'SLC11A2', 'DAXX', 'PRSS2', 'PRSS1', 'TCN2', 'CTRC', 'OTC', 'ACSL5', 'TNFSF12', 'B4GALT1', 'SF3B1', 'DNASE2', 'UQCRC2', 'CPT1A', 'STAT2', 'NAF1', 'NEUROG3', 'LMO1', 'ALK', 'LIN28B', 'TOP2A', 'HAVCR2', 'SERPINA1', 'NBEAL2', 'SLC40A1', 'LPL', 'CYP7B1', 'SH2B3', 'EIF2AK3', 'COX10', 'ADAMTS13', 'SLC25A38', 'IRF2BP2', 'ASL', 'NPC1', 'ZNFX1', 'PIEZO1', 'SLC22A5', 'XIAP', 'MTHFD1', 'AMACR', 'FOCAD', 'CA2', 'HSCB', 'SH2D1A', 'NFKB1', 'GATB', 'IL12RB1', 'FTH1', 'ACAD8', 'HJV', 'ACSF3', 'GATA1', 'TNFRSF13B', 'ACADM', 'CSF3R', 'ZFYVE19', 'IKZF1', 'GATA2', 'ALG6', 'TNFRSF13C', 'GLRX5', 'CD81', 'G6PC1', 'RAG2', 'DHFR', 'CELA2A', 'SBDS', 'MTO1', 'BPGM', 'SLC4A2', 'EPOR', 'PSMB10', 'PKHD1', 'EPO', 'EFL1', 'XK', 'GP1BA', 'ICOS', 'RIPK1', 'OSTM1', 'CD27', 'GSS', 'PCK2', 'IL18BP', 'DPYS', 'ATP6V0A4', 'PGM1', 'TRNT1', 'RAG1', 'NHLRC2', 'MDM4', 'DGUOK', 'GCLC', 'CORIN', 'MRPS2', 'MICOS13', 'HELLPAR', 'HNF4A', 'BCS1L', 'IFT56', 'GALK1', 'YARS1', 'ITGA2B', 'HLA-DQA1', 'KRT18', 'AK2', 'TMPRSS6', 'UROD', 'ACAT1', 'ERCC6L2', 'MARS1', 'DGAT1', 'G6PC3', 'SLC9A3', 'CD19', 'TLR8', 'ETV6', 'TNPO3', 'AHCY', 'SLC37A4', 'APOE', 'CYP7A1', 'SUGCT', 'SMARCD2', 'EWSR1', 'CD36', 'PIK3CG', 'FARSA', 'HBA2', 'SLCO2A1', 'FOXP3', 'ABHD5', 'MMUT', 'LYST', 'SRC', 'SLC25A20', 'ACTN4', 'APOA1', 'NSMCE2', 'CBLIF', 'SRP54', 'HADHB', 'HBA1', 'ALB', 'SYK', 'RFX6', 'COA8', 'DNAJC19', 'PNPO', 'KIF20A', 'ASS1', 'GFM1', 'SNX10', 'NDUFB7', 'IGH', 'SLC25A3', 'UBR1', 'G6PD', 'HCK', 'PSTPIP1', 'CAD', 'SLC5A1', 'SURF1', 'SI', 'TMPRSS15', 'GALE', 'SLC25A15', 'MT-TN', 'DZIP1L', 'ABCD4', 'CFB', 'SERPINA6', 'IL21R', 'MYC', 'FYB1', 'HFE', 'PET100', 'CEACAM3', 'SLC11A1', 'CEACAM6', 'GSTM3', 'SLC6A14', 'DCTN4', 'SLC26A9', 'CLCA4', 'LMBRD1', 'ERBB3', 'USP18', 'MIF', 'RARA', 'NUMA1', 'IL37', 'F12', 'COG7', 'COG6', 'UROS', 'ASAH1', 'TPI1', 'COG4', 'SLC26A3', 'VWF', 'TNFSF11', 'WRAP53', 'ACADVL', 'PRKCSH', 'PFKM', 'THBD', 'AGXT', 'FCGR2A', 'ANKRD26', 'FTCD', 'HADHA', 'TFR2', 'FLT1', 'LACC1', 'VPS50', 'STAT5B', 'IRF5', 'TYMP', 'LIG3', 'APOA5', 'PUS1', 'ZBTB16', 'PML', 'NABP1', 'FIP1L1', 'KLKB1', 'MTRR', 'TRAC', 'PIGM', 'LAT', 'RNU7-1', 'YARS2', 'MRPS28', 'KHK', 'GBE1', 'UGT1A1', 'CYP27B1', 'NDUFB8', 'CYP2R1', 'AP1S3', 'CA5A', 'SHPK', 'BMP6', 'GDF2', 'LDLRAP1', 'FGA', 'CBL', 'MCEE', 'VKORC1', 'SKIC3', 'LCT', 'RPSA', 'RAB27A', 'F13B', 'STOX1', 'NR3C2', 'CP', 'FGF23', 'IL7R', 'NPC2', 'NDUFA2', 'MCCC2', 'RAC2', 'VIPAS39', 'NDUFAF1', 'TUFM', 'F13A1', 'PDSS2', 'NPM1', 'F2', 'GP9', 'SLC19A1', 'PHOX2B', 'APOC2', 'ACD', 'SAMD9', 'PLVAP', 'IL1RN', 'TIMM22', 'PEPD', 'COG8', 'SAMD9L', 'ALPL', 'OCLN', 'NT5C3A', 'PTPRJ', 'RPL27', 'ACTN1', 'UQCC3', 'PRDX1', 'POLG2', 'DNAJC21', 'WDR1', 'FMO3', 'CLPB', 'CFTR', 'TNFRSF4', 'SFXN4', 'GATM', 'TOM1', 'ITGB3', 'HLCS', 'MTR', 'ACOX2', 'MALT1', 'PERCC1', 'TEK', 'F11', 'JAGN1', 'TGFB1', 'LDLR', 'AP1B1', 'MMADHC', 'LIPC', 'CTSA', 'C2orf69', 'CLDN1', 'TCIRG1', 'TREH', 'AGGF1', 'ARPC1B', 'UQCRH', 'ADH5', 'LRRK1', 'LYZ', 'C3', 'LIPT1', 'CYP19A1', 'RFT1', 'PCSK9', 'CYB561', 'ABCG5', 'ANK1', 'NEK8', 'RPL35', 'PRKCD', 'TCF3', 'DCLRE1C', 'BCHE', 'MRM2', 'COX5A', 'SERAC1', 'ISCU', 'CUL3', 'CR2', 'MPO', 'TRMT5', 'FDX2', 'SLC34A1', 'ZAP70', 'ADA', 'LRBA', 'TPMT', 'JAK1', 'OPLAH', 'SLC52A1', 'NAGS', 'SLC17A5', 'MVK', 'REL', 'NHP2', 'CETP', 'SGO1', 'RHBDF2', 'CPS1', 'DGKE', 'ABL1', 'IL12A', 'CAT', 'HBD', 'CD3D', 'PC', 'HSD11B2', 'BTNL2', 'BCAT2', 'KIT', 'GAA', 'CBS', 'NOP10', 'MCM4', 'PNPLA2', 'RMND1', 'FAM111A', 'COX14', 'CD40LG', 'IL36RN', 'ELANE', 'STAT1', 'RFXANK', 'RFX5', 'RFXAP', 'SLC46A1', 'CLMP', 'PTPRC', 'USB1', 'C1GALT1C1', 'RPL18', 'ALG1', 'GSTZ1', 'CAVIN1', 'ELAC2', 'LMAN1', 'COX16', 'DDX41', 'SKIC2', 'RTEL1', 'ORAI1', 'IFNGR1', 'MCCC1', 'MRPS16', 'MIPEP', 'PARN', 'RPS27', 'SGMS2', 'SLC4A4', 'CPA1', 'RPS15A', 'CASR', 'EHHADH', 'ACVRL1', 'IL2RB', 'PPOX', 'GLIS3', 'BIRC3', 'ASXL1', 'CIITA', 'WIPF1', 'CLCN7', 'CFHR3', 'CFHR1', 'NSUN3', 'FH', 'CA12', 'MRPS23', 'TYMS', 'SCYL1', 'STING1', 'CPOX', 'TERC', 'SLC35A1', 'TPP2', 'UQCC2', 'RPL5', 'IL6', 'RPS24', 'MSMO1', 'TPM4', 'RPL11', 'ELMO2', 'SUCLG1', 'PAX4', 'CASP8', 'SOCS1', 'CYCS', 'PSMG2', 'FSHR', 'ITCH', 'RPS10', 'DPM2', 'LRPPRC', 'NFKB2', 'MLYCD', 'RPS17', 'RPL15', 'PDSS1', 'OTULIN', 'SLC10A1', 'SLC25A21', 'ARG1', 'CD70', 'NPHP3', 'COX6B1', 'COA6', 'POLRMT', 'SLC25A10', 'ENG', 'NAE1', 'RPL35A', 'DLL4', 'CYBC1', 'SC5D', 'RPS7', 'RASGRP1', 'HACE1', 'CTC1', 'COG2', 'B2M', 'PPARG', 'ELF4', 'CCND1', 'SEC63', 'ANKS6', 'EPHB4', 'ACVR1', 'MC4R', 'ALPK1', 'TCF4', 'AVP', 'STX3', 'STT3B', 'BCL10', 'SCNN1A', 'DMP1', 'ACACA', 'STIM1', 'SMC5', 'SCNN1B', 'TINF2', 'DSG1', 'NOTCH1', 'SCNN1G', 'P2RY12', 'MT-TV', 'AGK', 'GHSR', 'CSF2RA', 'SLC19A2', 'RPS29', 'PRIM1', 'SLC12A1', 'SCN11A', 'MPC1', 'CYP2C9', 'HIBCH', 'CFI', 'SLC25A19', 'NDUFB9', 'MOGS', 'TBX19', 'EDNRA', 'HPD', 'EPHB2', 'PLAU', 'HNF1A', 'BACH2', 'MRPS14', 'PALB2', 'PEX14', 'CRIPT', 'FLI1', 'COX15', 'WNT2B', 'RPS26', 'RPL26', 'SLC39A7', 'CPT2', 'CTNS', 'RNASEH2A', 'THRA', 'HPGD', 'PSMB8', 'SERPINF2', 'PLD1', 'MYCN', 'FGG', 'FGB', 'SCN10A', 'CREB3L3', 'GOT2', 'KCNJ1', 'ALG3', 'LYRM7', 'MYSM1', 'TNFRSF11A', 'ANO6', 'LDHA', 'SERPINE1', 'CFH', 'WRN', 'STN1', 'NHERF1', 'KARS1', 'YIPF5', 'PCSK1', 'ETFA', 'ETFB', 'ETFDH', 'SLC34A3', 'CARD11', 'ARFGEF2', 'ATPAF2', 'DPM1', 'IFNG', 'ADCY10', 'SLC25A26', 'BRCA1', 'ACADS', 'PTF1A', 'WAS', 'COQ9', 'POMC', 'IFIH1', 'DIAPH1', 'SEC61A1', 'HRG', 'PLA2G7', 'SUCLA2', 'CYP3A4', 'AP1S1', 'GK', 'LEMD2', 'NOS3', 'NDUFB10', 'FARS2', 'NDUFS4', 'MYD88', 'RPL13', 'PMM2', 'NDUFV1', 'NPHP4', 'TSFM', 'SLCO1B3', 'SLCO1B1', 'BCL2', 'BCL6', 'INS', 'RIT1', 'MET', 'CASP10', 'PSMC1', 'PLA2G4A', 'BCAP31', 'PROS1', 'MCM10', 'TARS2', 'TRAF3IP1', 'ETHE1', 'CD3E', 'NFKBIA', 'INVS', 'WNK1', 'NFU1', 'ATP5F1A', 'GP6', 'XPR1', 'RPS28', 'TP53', 'AGR2', 'ALAD', 'HELLS', 'SLC10A2', 'NDUFAF8', 'CYP24A1', 'NHEJ1', 'VPS33A', 'DMGDH', 'NDUFS3', 'CD247', 'BLK', 'IL12B', 'OGDH', 'HOXA11', 'IKZF5', 'AKT2', 'HEATR3', 'TNFRSF9', 'SMARCAL1', 'AQP2', 'CEL', 'ZNF668', 'REN', 'CYB5R3', 'C1QBP', 'GBA1', 'JAK3', 'FOS', 'TBXA2R', 'PHLDB1', 'FASLG', 'ANKRD55', 'PTPN2', 'SLFN14', 'LPIN1', 'GFI1', 'CEBPE', 'MRPS22', 'RPS19', 'MMACHC', 'MRPL12', 'IDH2', 'SRD5A3', 'NDUFAF4', 'KLF11', 'ABCC6', 'HAGH', 'NDUFA11', 'DNMT3B', 'AGPS', 'POU6F2', 'PDGFRA', 'SQOR', 'SMAD4', 'IRF4', 'DYRK1B', 'GCM2', 'SLC16A1', 'GTPBP3', 'ESR1', 'ISCA1', 'CDC40', 'NEUROD1', 'IL2RA', 'SAA1', 'ATP5F1B', 'NSMCE3', 'OBSCN', 'ADAR', 'BCKDHA', 'PEX2', 'TULP3', 'NCF4', 'NDUFB3', 'ZFP57', 'TMEM67', 'AGPAT2', 'ZNF699', 'NCF2', 'HSD17B4', 'NDUFS7', 'NDUFA9', 'CIDEC', 'P4HA2', 'LRRC8A', 'KIF3B', 'NDUFA8', 'MEF2A', 'AP3B1', 'CD3G', 'SLF2', 'PDX1', 'PAPPA2', 'COX20', 'NDUFA4', 'FBXL4', 'IL2RG', 'MCFD2', 'CYBA', 'LIAS', 'PDP1', 'PITRM1', 'TMEM126B', 'DBH', 'NGLY1', 'SOS2', 'AUH', 'ADA2', 'GPX1', 'ALG12', 'APPL1', 'RPL9', 'RPL31', 'RPL8', 'SLC39A8', 'NLRP1', 'COX4I1', 'XDH', 'FUT8', 'DNASE1', 'FCGR2B', 'EPAS1', 'POMP', 'ARF1', 'GCDH', 'PMPCB', 'F7', 'APRT', 'ALDH2', 'SLC12A3', 'SLC29A3', 'TRPV6', 'KNG1', 'DDRGK1', 'ENPP1', 'GNA14', 'SAMHD1', 'ARHGAP31', 'EPHX2', 'APOA2', 'PPP1R17', 'ANTXR2', 'NDUFS6', 'MBTPS1', 'RRM2B', 'ADAMTS19', 'POLD1', 'MYBPC3', 'CSF2RB', 'SAT1', 'AGL', 'SLC39A4', 'CEP83', 'NPHS1', 'CISD2', 'GCK', 'CDKN2A', 'ANO1', 'SASH3', 'BRCA2', 'TMEM70', 'RBPJ', 'HSPA9', 'NDUFS1', 'HLA-B', 'DPP9', 'DOLK', 'CREB3L1', 'KLHL3', 'SEC23B', 'SGSH', 'EOGT', 'RRAS2', 'AK1', 'NLRP3', 'MT-TK', 'NDUFA10', 'STAT3', 'GNMT', 'PRLR', 'NADK2', 'IL21', 'SLC25A4', 'IKBKB', 'C1QB', 'CYP2A6', 'RPGRIP1L', 'MUC1', 'MT-ND3', 'COG1', 'JAM2', 'IRAK1', 'SPP1', 'IGLL1', 'COX8A', 'LIPT2', 'GUCY1A1', 'NDUFA6', 'GCGR', 'NDUFS2', 'KIF1B', 'PRG4', 'SOS1', 'NDUFA13', 'IKZF3', 'MT-ND2', 'SPI1', 'MRAS', 'HLA-DQB1', 'TNFRSF11B', 'MT-TT', 'NLRP12', 'MEFV', 'RNASEH2C', 'NDUFV2', 'ESR2', 'SLC3A1', 'TSR2', 'LBR', 'HPS6', 'CARD9', 'HNRNPA2B1', 'FCHO1', 'CNOT1', 'CDCA7', 'DUT', 'ALG11', 'PEX13', 'CLPX', 'TIMMDC1', 'BTK', 'DKC1', 'TANGO2', 'F8', 'ADAMTSL2', 'AFP', 'CD79A', 'PNP', 'RNASEH2B', 'MT-TW', 'PEX12', 'NT5E', 'HGD', 'SRP72', 'NOD2', 'PIGA', 'LTC4S', 'STK11', 'RORC', 'ERBB2', 'TNFAIP3', 'PPA2', 'ALMS1', 'UPB1', 'CD109', 'ITGA2', 'PEX16', 'BLNK', 'GANAB', 'STAT6', 'NAB2', 'TNNI3', 'HYOU1', 'ACVR2B', 'LSM11', 'BLOC1S6', 'EGLN1', 'IGFBP7', 'CD79B', 'KCNJ16', 'GUCY2C', 'CACNA1S', 'PLIN1', 'CYP11B2', 'BCL11A', 'NUBPL', 'VPS51', 'STAT4', 'FCGR3B', 'FDFT1', 'ATM', 'CALCR', 'PDLIM4', 'MLX', 'NDUFAF3', 'SLC5A2', 'HNF1B', 'COQ4', 'TSHB', 'MPDU1', 'ZNF687', 'NCKAP1L', 'NDUFAF6', 'GEMIN4', 'PKD2', 'BMP2', 'ANAPC1', 'HPS4', 'COG5', 'TNNT2', 'MAD2L2', 'MT-ND4', 'TRPC6', 'REST', 'VDR', 'IGF1', 'XRCC4', 'GSR', 'LIPE', 'GDF1', 'AASS', 'SCO2', 'F10', 'PREPL', 'PEX26', 'PNPLA8', 'NDUFAF5', 'AARS2', 'NUP205', 'NDUFS8', 'BCR', 'MT-CO1', 'PHEX', 'KCNJ11', 'NCAPG2', 'MT-TS1', 'IGHM', 'AMPD1', 'GLA', 'CYP11A1', 'CDC73', 'MTX2', 'SMAD6', 'OXCT1', 'PBX1', 'HYMAI', 'PDHX', 'ADRB3', 'AGRP', 'CARTPT', 'UCP3', 'NR0B2', 'SDC3', 'GHRL', 'GNPAT', 'NPHS2', 'GLYCTK', 'JAZF1', 'ITGAM', 'UBE2L3', 'PXK', 'IGHG1', 'ETS1', 'TNIP1', 'BANK1', 'GNPTG', 'WFS1', 'PAX2', 'SLC35C1', 'UBE2T', 'MT-TC', 'COQ2', 'MYORG', 'EDNRB', 'PRSS12', 'HTRA2', 'SERPINC1', 'DPAGT1', 'GDNF', 'GNE', 'NDUFAF2', 'BMPR1A', 'SSR4', 'NPPA', 'MAGI2', 'TTC7A', 'ANGPTL3', 'PPCS', 'PSAP', 'PTH1R', 'BRIP1', 'MT-ND6', 'CTNNBL1', 'ZBTB24', 'NRXN1', 'MT-CO3', 'BMPR2', 'RB1', 'THSD1', 'OCRL', 'GGCX', 'PEX19', 'SLC25A36', 'SLC20A2', 'ABCC8', 'MCM6', 'TNFRSF1A', 'GATA6', 'FOXRED1', 'MT-TI', 'F9', 'PDHB', 'ALG13', 'NUP93', 'OAS1', 'TBL1XR1', 'NFE2L2', 'ECE1', 'ATRX', 'HPS3', 'RFWD3', 'UBA2', 'VARS2', 'C4B', 'RELB', 'DPM3', 'RRAS', 'RASA2', 'MT-ND5', 'EMP2', 'PTPRO', 'DUOXA2', 'LHX1', 'KCNE1', 'ARMC5', 'SUOX', 'CYBB', 'PTPN22', 'TAPT1', 'HS3ST6', 'MT-CO2', 'COX6A2', 'IYD', 'FAS', 'YY1AP1', 'NAGLU', 'PNLIP', 'ABCB6', 'RRAGD', 'TTC21B', 'FANCE', 'CARS2', 'FANCA', 'CCDC134', 'PEX11B', 'FANCC', 'MGAT2', 'CHRNA3', 'PLOD2', 'VPS13A', 'HEXB', 'COPB2', 'RIGI', 'KYNU', 'RBM8A', 'SMAD2', 'ABCB7', 'SLC25A42', 'GREM1', 'TLL1', 'NUP160', 'ANLN', 'VHL', 'BMS1', 'NEU1', 'SLC5A5', 'TTR', 'MT-TL1', 'TREX1', 'FASTKD2', 'MTHFR', 'MMP1', 'SETX', 'CLCNKB', 'BSND', 'C4A', 'MYLK', 'SRP19', 'EGFR', 'WNK4', 'CAV1', 'NDUFA12', 'LIG4', 'CCDC47', 'ARSB', 'MOCS1', 'ACOX1', 'ECHS1', 'SPRED2', 'CENPT', 'LAMC2', 'MT-TF', 'SLX4', 'RARS2', 'CIROP', 'MT-TQ', 'POLG', 'GH1', 'SIK3', 'DCXR', 'PLOD3', 'BANF1', 'KIAA0319L', 'SECISBP2', 'TLR7', 'MT-ND1', 'CCDC32', 'TPO', 'MED17', 'NUP214', 'LZTR1', 'IREB2', 'NKX2-6', 'NBAS', 'DAAM2', 'PLCE1', 'FANCF', 'RPS20', 'MAP2K1', 'PIGH', 'BOLA3', 'KL', 'RECQL', 'COX11', 'GGPS1', 'NOTCH2', 'FUCA1', 'NARS2', 'HSD17B10', 'ATP11C', 'TXNRD2', 'GLUD1', 'MMP14', 'HPS5', 'PDCD1', 'SMAD3', 'CEP19', 'SERPIND1', 'GALNT2', 'GINS1', 'SPRTN', 'DNASE1L3', 'THRB', 'FANCD2', 'CACNA1D', 'H19', 'IFT122', 'EPCAM', 'CD59', 'MYO1E', 'PET117', 'DIS3L2', 'SEMA3C', 'SEMA3D', 'NRTN', 'MRPS34', 'MT-CYB', 'CBFB', 'GFER', 'TMTC3', 'LAMB3', 'IRAK4', 'SLC31A1', 'TBC1D8B', 'DHCR24', 'FANCI', 'CYP27A1', 'POU1F1', 'HLA-DRB1', 'TSHR', 'MBL2', 'DUOX2', 'PEX3', 'PNPT1', 'NAXD', 'TRAPPC11', 'ALG2', 'PRKAG2', 'FANCG', 'AP2S1', 'SPARC', 'UCP2', 'GPR161', 'IDH1', 'IL6ST', 'PHF21A', 'BMP1', 'PRORP', 'JPH2', 'ACTG2', 'TG', 'NNT', 'CAV3', 'RARB', 'PLG', 'PTPN11', 'STAR', 'ATP5F1D', 'FANCL', 'TAOK1', 'DOCK6', 'STRA6', 'FKBP10', 'SFTPA2', 'MUC5B', 'RASGRP2', 'HMBS', 'DDC', 'MDH2', 'TBL1X', 'BBS12', 'RMRP', 'COQ8B', 'ARHGDIA', 'GP1BB', 'TRIM37', 'TERT', 'UBA1', 'TUBB1', 'NPR2', 'MT-TP', 'YME1L1', 'RASA1', 'KIF15', 'CD28', 'TNFRSF1B', 'FANCM', 'PIK3CD', 'MRAP', 'COQ7', 'DCLRE1B', 'CXCR4', 'TAFAZZIN', 'ERCC4', 'NOS1', 'LRP6', 'MT-TH', 'BAG5', 'STX16', 'TRPM7', 'PIGC', 'JAG1', 'DSG2', 'HK1', 'LAMA3', 'PLOD1', 'ALDH6A1', 'ADCY3', 'CEP164', 'CRAT', 'GET4', 'CLDN16', 'CTLA4', 'SERPING1', 'CAMKMT', 'PPM1B', 'BNC1', 'MT-TS2', 'LMOD2', 'TICAM1', 'TWNK', 'INF2', 'LEMD3', 'BTD', 'POLR3K', 'ATP7A', 'FCGR2C', 'SNIP1', 'DNAJC3', 'NUP37', 'USP8', 'GATA5', 'PEX10', 'LCP2', 'ATP5F1E', 'DTYMK', 'RAD51C', 'IER3IP1', 'IFT172', 'FAM111B', 'LTBP4', 'PRKG1', 'IL10', 'PRKACA', 'ZCCHC8', 'GGT1', 'FOXP1', 'IRX5', 'ATAD3A', 'UQCRQ', 'CXCR2', 'XRCC2', 'SDHA', 'GLB1', 'FN1', 'TXN2', 'INSR', 'COL4A5', 'NDUFC2', 'INPP5E', 'OTUD5', 'NDUFA1', 'NPHP1', 'GUSB', 'DYNC2LI1', 'MC2R', 'TRIM28', 'LHX4', 'TAB2', 'ERCC8', 'ERMARD', 'MAN2B1', 'WDPCP', 'GNPTAB', 'LMF1', 'CLCN2', 'CNTN1', 'RAD51', 'CDKN1B', 'KCNQ1', 'WNT1', 'BBIP1', 'ZBTB7A', 'RPA1', 'CCN6', 'IFT140', 'CLCNKA', 'MAGT1', 'FLAD1', 'GPHN', 'BMP15', 'COL7A1', 'CC2D2A', 'CASK', 'LRP5', 'SFTPC', 'WARS2', 'NKX2-5', 'IGF2BP2', 'PTPN1', 'RETN', 'PPP1R3A', 'HMGA1', 'TCF7L2', 'IRS2', 'MTNR1B', 'SLC30A8', 'IRS1', 'MAPK8IP1', 'GPD2', 'TGFB2', 'PTPN3', 'BBS5', 'SLC34A2', 'SOD1', 'PRKAR1A', 'BBS7', 'ATP5MK', 'HIKESHI', 'DTNBP1', 'RBM20', 'PIK3R5', 'ADAMTS3', 'ARL6IP6', 'VPS4A', 'GATAD1', 'BBS10', 'TRHR', 'CFC1', 'MFAP5', 'PSMC3IP', 'CYP21A2', 'P3H1', 'SHOC2', 'GNAS', 'MADD', 'TYROBP', 'CPSF3', 'TRDN', 'PGM3', 'SCN5A', 'PTRH2', 'TGFB3', 'CRB2', 'DYNC2I1', 'GTF2H5', 'ITGA3', 'ADAMTS2', 'TNFSF4', 'STT3A', 'COQ8A', 'CCBE1', 'PAX8', 'RETREG1', 'SDCCAG8', 'ENO3', 'RYR1', 'RNF213', 'CARD10', 'ACAT2', 'HNRNPA1', 'TIMM50', 'MAT1A', 'TLR3', 'ZIC3', 'UFSP2', 'WDR35', 'LAMA5', 'EDN3', 'LINS1', 'LBX1', 'CHEK2', 'SPIDR', 'BBS4', 'HSPD1', 'MYH11', 'HSD11B1', 'PHGDH', 'SGCD', 'AGA', 'XYLT2', 'KPTN', 'PEX6', 'ACTA2', 'NSF', 'PKD1', 'KCNJ5', 'STX1A', 'PROP1', 'C18orf32', 'EMG1', 'KRAS', 'POT1', 'NSUN2', 'RAF1', 'TOP3A', 'NEDD4L', 'BBS9', 'ATP6V0A1', 'MYL3', 'POC1A', 'PLN', 'COL5A2', 'DEGS1', 'UNC93B1', 'GALNS', 'GFM2', 'ARHGEF1', 'DIO1', 'NCAPH', 'SCN2B', 'COL1A2', 'COL1A1', 'MMP21', 'RNF168', 'AFG2A', 'ATP6AP2', 'CELSR1', 'TDP1', 'TGFBR1', 'ALG9', 'MTAP', 'VEZF1', 'CSRP3', 'PROC', 'NBN', 'MKKS', 'MIA3', 'ZBTB20', 'EPG5', 'CASQ2', 'TLR4', 'ERAP1', 'KLRC4', 'CCR1', 'IL23R', 'IL12A-AS1', 'UBAC2', 'MOCS2', 'ADAM17', 'GNAS-AS1', 'TCAP', 'SLC2A9', 'DES', 'ROBO4', 'NOS1AP', 'SLC39A13', 'NCF1', 'MT-ATP6', 'SIL1', 'ZPR1', 'COL4A3', 'EN1', 'TMEM38B', 'SH3BP2', 'TGFBR2', 'LAMA4', 'TNNC2', 'IL6R', 'SH2B1', 'TRAF3', 'NUP85', 'GPAA1', 'LHX3', 'IBA57', 'KRIT1', 'FAT4', 'COMT', 'PDHA1', 'TKT', 'PPIL1', 'DMPK', 'RPL3L', 'IFITM5', 'THSD4', 'PRDM16', 'MYL2', 'ACP5', 'FCSK', 'ZSWIM7', 'GOLGA2', 'DNM1L', 'TBX20', 'FKBP14', 'PIK3R1', 'PIGT', 'P4HB', 'VPS11', 'APTX', 'PEX5', 'DCHS1', 'TPK1', 'CITED2', 'ELP1', 'LOX', 'WT1', 'ITGB2', 'ERCC6', 'GHR', 'VPS53', 'IFT27', 'HMGA2', 'AVPR2', 'CTCF', 'SDHC', 'MYL4', 'SCN3B', 'PIGB', 'NR3C1', 'FLNC', 'SDHD', 'RNF125', 'KCNE2', 'HPDL', 'ITPR2', 'SLC25A11', 'IGHMBP2', 'SPINK5', 'PLAGL1', 'PTCD3', 'AMPD2', 'MYPN', 'PPFIBP1', 'MCM9', 'AIRE', 'CYP17A1', 'NRAS', 'LIG1', 'KCNE3', 'KLHDC8B', 'MYRF', 'TRPM4', 'TRIP13', 'TNNC1', 'H4C3', 'BSCL2', 'ST3GAL5', 'PLAG1', 'DNAJB11', 'SCN4B', 'CRLF1', 'SLC30A9', 'IGKC', 'NTRK1', 'DOHH', 'FOXF1', 'SCLT1', 'CD2AP', 'CHD7', 'DMD', 'PDGFRL', 'DLAT', 'PIGK', 'NCAPD2', 'GLI1', 'MED12', 'KMT5B', 'ADAMTS10', 'ITPR3', 'DLST', 'RARS1', 'NKX3-2', 'CDK5', 'SGPL1', 'GNB2', 'SLC2A1', 'MICU1', 'VCL', 'IL17RD', 'FBP2', 'TECTA', 'KDELR2', 'DHCR7', 'ABCA12', 'GAPVD1', 'ARHGAP24', 'ANKFY1', 'EXT2', 'IL1R1', 'ARL6', 'CALM3', 'OSGEP', 'CYB5A', 'PRPH', 'HIVEP2', 'PIK3C2A', 'LZTFL1', 'TDP2', 'SREBF1', 'SOST', 'CACNB2', 'PKP2', 'NUP155', 'SLC36A2', 'LMNB2', 'MSH4', 'MAP1B', 'HESX1', 'POLR2A', 'HAL', 'CIC', 'CD40', 'MNS1', 'GPD1L', 'HNRNPH1', 'TFE3', 'TMEM127', 'MAX', 'PRDM5', 'PLPBP', 'KCNA5', 'FLT4', 'EXOSC8', 'CST3', 'ANK2', 'MTFMT', 'CARD8', 'BUB1B', 'HTR1A', 'DSC2', 'DNM2', 'RIN2', 'PLEKHG5', 'ALG5', 'AKAP9', 'NEXN', 'CHRM3', 'SFRP4', 'KDM6A', 'KRT13', 'IPO8', 'MYH6', 'BLM', 'LETM1', 'KCNH2', 'APOL1', 'EPX', 'TENT5A', 'IQCB1', 'PYGM', 'BBS1', 'BCOR', 'TRAPPC2', 'NUP107', 'PARS2', 'SLC4A3', 'TBX1', 'KCNJ18', 'EXOSC3', 'TNNI3K', 'AMPD3', 'ARVCF', 'RREB1', 'JMJD1C', 'SEC24C', 'HIRA', 'UFD1', 'AGO2', 'GNA11', 'COL5A1', 'KISS1R', 'GRIA4', 'CD244', 'SLC22A4', 'NFKBIL1', 'SCAPER', 'TRIM32', 'NAT2', 'CES1', 'JPH1', 'CFAP418', 'ARCN1', 'INPPL1', 'FNIP1', 'MLIP', 'KCNK3', 'DZIP1', 'AP3D1', 'BICC1', 'ALPK3', 'CDKN1A', 'CDKN2C', 'PMS2', 'SNTA1', 'TPM1', 'SLC35A2', 'SARDH', 'ACTC1', 'MAPKAPK5', 'CD96', 'ABCA3', 'B4GALT7', 'DPP6', 'NPR3', 'NAGA', 'MSH2', 'CCM2', 'AICDA', 'NUDT2', 'ITGB4', 'NACC1', 'PEX1', 'ALDH7A1', 'ALDH1A2', 'CDKN1C', 'SDHAF2', 'CHST3', 'SDHB', 'ASXL2', 'DOCK8', 'ANKH', 'TRH', 'FBN2', 'ZNF341', 'CRLS1', 'PWRN1', 'IPW', 'NPAP1', 'PWAR1', 'SNORD116-1', 'SNORD115-1', '-', 'FANCB', 'MANBA', 'H3-3B', 'DYNC2I2', 'PEX7', 'CALCRL', 'SLC7A9', 'PTPN14', 'SOX18', 'MPEG1', 'CTSK', 'GET3', 'JAM3', 'IFT80', 'RNF13', 'PTH', 'FBXW7', 'CCDC28B', 'LYSET', 'LGI3', 'GTF2E2', 'PYCR1', 'ZNF469', 'STK4', 'C9orf72', 'DCTN1', 'ANGPT1', 'SEC31A', 'IDUA', 'HS6ST2', 'KRT10', 'TIE1', 'TAF13', 'FKBP6', 'HABP2', 'ATP6V1B1', 'EIF5A', 'TRIT1', 'RBM10', 'PKD1L1', 'ABCD1', 'MMP13', 'GALC', 'NAXE', 'KCNJ10', 'TBX2', 'DYM', 'PIGS', 'WDR19', 'ZNF335', 'VEGFC', 'FGFRL1', '-', 'KRT6B', 'AIMP1', 'MB', 'NCAPD3', 'TXNDC15', 'POLE', 'MYO1H', 'CALM2', 'MSH6', 'EPRS1', 'CYP2D6', 'PIGU', 'PGR', 'SLC2A10', 'RET', 'SPR', 'PDCD10', 'HACD1', 'STAG1', 'TUBA4A', 'CALM1', 'CARS1', 'PIGG', 'TTC8', 'FOXN1', 'WDR4', 'DNAJC30', 'HERC2', 'TFG', 'CFAP53', 'SPPL2A', 'ATPAF1', 'LRSAM1', 'MKRN3', 'TRIP11', 'HCN4', 'RNU4ATAC', 'SLC26A4', 'IFT74', 'ASPA', 'BGN', 'CSPP1', 'MUTYH', 'SUMF1', 'TMEM260', 'PMS1', 'TIA1', 'LIMS2', 'UNC80', 'AGTPBP1', 'SHOX', 'RNF2', 'BBS2', 'PLXND1', 'NEFH', 'ALDH4A1', 'RYR2', 'NAT8L', 'GUF1', 'TOR1A', 'ARPC4', 'NHLH2', 'CORO1A', 'TNPO2', 'TSPAN12', 'CSNK2A1', 'NR2F2', 'ESCO2', 'HPRT1', 'FHOD3', 'NGF', 'GORAB', 'KMT2E', 'TAC3', 'MT-TE', 'GNS', 'CDKN2B', 'PSPH', 'SPTBN4', 'CDC42', 'GLE1', 'USP48', 'SP7', 'SFTPB', 'ACVR1B', 'CFAP45', 'LMNA', 'BPTF', 'IL17F', 'FERMT1', 'MYL11', 'LONP1', 'FOXA2', 'RNF43', 'ACTN2', 'MATR3', 'MLXIPL', 'C19orf12', 'LMOD1', 'ALG10B', 'CNNM2', 'NAA20', 'PDGFRB', 'TARS1', 'UFM1', 'VRK1', 'TNF', 'PLIN4', 'FLRT3', 'DNAL1', 'MCM5', 'CRYBB3', 'ENAM', 'CEACAM16', 'METTL27', 'GTF2I', 'LIMK1', 'VPS37D', 'CLIP2', 'BUD23', 'GTF2IRD2', 'EIF4H', 'BAZ1B', 'TMEM270', 'RFC2', 'GTF2IRD1', 'BCL7B', 'TBL2', 'ELMOD3', 'HLA-DPA1', 'PRTN3', 'PCGF2', 'MYLK2', 'ATP9A', 'DNAJB4', 'MMP2', 'FAN1', 'FTO', 'KRT4', 'HNMT', 'APOC3', 'C5', 'CARMIL2', 'PRKACB', 'SCN9A', 'SLC12A5', 'IL10RA', 'CTBP1', 'CLEC7A', 'COL3A1', 'CPN1', 'NAA15', 'ITGA7', 'PDE11A', 'PACS2', 'NSMF', 'SKI', 'CTPS1', 'IDS', 'GNRHR', 'MEN1', 'KRT2', 'ABCC9', 'KISS1', 'PHYH', 'TUBA8', 'KLHL24', 'EYA4', '-', 'HPS1', 'MGME1', 'HEY2', 'MAT2A', 'AFF3', 'KRT1', 'TARDBP', 'TNXB', 'MKS1', 'CENATAC', 'NFASC', 'EVC2', 'EVC', 'WNT7B', 'RANBP2', 'MYL9', 'CEP57', 'STRADA', 'CNBP', 'MLH1', 'OPTN', 'UBTF', 'INPP5K', 'LEPR', 'ARL13B', 'CEP290', 'BUB1', 'WDR11', 'P4HTM', 'PAH', 'DTNA', 'BCO1', 'ELN', 'TECRL', 'IL17RA', 'CTDP1', 'PFN1', 'AEBP1', 'GATA4', 'PGAM2', 'PROK2', 'MYH8', 'UNG', 'PROKR2', 'SLC1A3', 'AIP', 'NSD2', 'VPS37A', 'PCNT', 'CRTAP', 'LEP', 'PAM16', 'TBCE', 'KRT5', 'RAD54L', 'IKBKG', 'MITF', 'ITPA', 'UBE3C', 'PSAT1', 'SLC44A1', 'SOX3', 'MLH3', 'TMEM43', 'POLR3H', 'KRT14', 'NFIA', 'BVES', 'MYOF', 'GYS1', 'TBX6', 'TMC1', 'BFSP1', 'ACO2', 'ANG', 'RBP4', 'RAB33B', 'NUP133', 'ATXN7', 'KCNQ1OT1', 'PDE3A', 'CTNNB1', 'CHIC2', 'LPP', 'SH3GL1', 'CEBPA', 'MLLT10', 'PICALM', 'TBX4', 'SYNE2', 'C2', 'TBK1', 'EPM2A', 'NDN', 'TBXT', 'GRB10', 'COCH', 'TRMT10A', 'CFAP43', 'EGR2', 'CCDC8', 'OTUD6B', 'ATP6V1E1', 'DYNC2H1', 'SLC1A1', 'KCNA4', 'ARHGAP26', 'PIGF', 'DUSP6', 'SPRY4', 'FGF17', 'SLC38A3', 'SEC24D', 'SHQ1', 'PGAP1', 'MYH2', 'GPC3', 'SULT2B1', 'BAG3', 'RECQL4', 'FLT3', 'FOXE3', 'PLCD1', 'SLC6A5', 'RYR3', 'MAP2K2', 'PDE10A', 'NDUFB11', 'PNPLA1', 'ABAT', 'PCBD1', 'SDR9C7', 'ARSK', 'ADCY5', 'GABRA2', 'SQSTM1', 'QDPR', 'CLCF1', 'B3GAT3', 'KRT6A', 'MDFIC', 'CLCN5', 'FHL1', 'CHCHD10', 'PLEC', 'PPM1K', 'SERPINH1', 'EFEMP2', 'TK2', 'HSPG2', 'MYL1', 'LAMTOR2', 'SLC22A18', 'ANXA11', 'RAD50', 'DCAF17', 'PRDM6', 'TRU-TCA1-1', 'FOXE1', 'IL31RA', 'MMP23B', 'UBE4B', 'LUZP1', 'CASZ1', 'KCNAB2', 'PDPN', 'PRKCZ', 'PTEN', 'ALDH5A1', 'FBLN5', 'DST', 'LINGO1', 'KIAA0586', 'GNRH1', 'DLX3', 'NFATC2', 'GSX2', 'PTS', 'MYOZ2', 'MTRFR', 'DSP', 'IL17RC', 'MTHFS', 'FBN1', 'MED23', 'STAMBP', 'SPG7', 'COPA', 'HPCA', 'BLOC1S5', 'IGF2', 'SLC35D1', 'MYO6', 'FXN', 'TUBB8', 'GABRA3', 'PSMD12', 'LIFR', 'GFAP', 'GJB3', 'MOG', 'USP7', 'CD320', 'HEPACAM', 'ANGPT2', 'PIBF1', 'TBX5', 'PLCB1', 'KY', 'DALRD3', 'HAX1', 'RNPC3', 'BMPER', 'ARSA', 'CCNF', 'SLC12A2', 'RXYLT1', 'GALNT3', 'CYP4F22', 'CPLX1', 'MARS2', 'TREM2', 'SLC6A3', 'TRAF3IP2', 'CCDC78', 'TRAPPC4', 'LDB3', 'PLAA', 'CLCN1', 'ERBB4', 'CIT', 'TLK2', 'CLN3', 'HTRA1', 'MAFA', 'PTPRQ', 'CD4', 'INAVA', 'RAD54B', 'POPDC3', 'ARHGEF10', 'ABCA2', 'FBXW11', 'MEGF10', 'MRPS25', 'CENPJ', 'MCOLN1', 'ANO5', 'LTBP2', 'MT-ATP8', 'MYH7', 'LDHD', 'CHD3', 'GRIA1', 'RNASEH1', 'DSE', 'GABRD', 'RAB23', 'GIGYF2', 'ACADSB', 'SPTBN1', 'STIL', 'BRAF', 'CHCHD2', 'LTBP3', 'EXOSC9', 'ATP6V0A2', 'TACR3', 'SLC30A2', 'HS6ST1', 'MECP2', 'HSD3B2', 'CCDC88A', 'NSRP1', 'ATP11A', 'ATP13A3', 'MTOR', 'NEK9', 'CERS3', 'MYMK', 'LAMB2', 'EGF', 'AGTR1', 'AGT', 'ALDH18A1', 'TRIP4', 'DHDDS', 'MAGEL2', 'KLHL7', 'PTDSS1', 'DLX5', 'TSPYL1', 'SH3KBP1', 'D2HGDH', 'PMPCA', 'TOR1AIP1', 'UNC45B', 'SPRED1', 'SNX14', 'LAMA2', 'GLMN', 'CFAP52', 'SPINT2', 'PABPN1', 'TRPM6', 'ASCL1', 'POMGNT2', 'FLNA', 'PPP1CB', 'POLR1D', 'DNMT3A', 'TTPA', 'MPLKIP', 'GPT2', 'B3GALT6', 'PLCH1', 'TCF12', 'QRICH1', 'HLA-DPB1', 'HPSE2', 'CHST14', 'NIPAL4', 'NEK10', 'UVSSA', 'CACNA1C', 'FXYD2', 'GYG1', 'MNX1', 'POLR3F', 'FAM20C', 'FLCN', 'COA3', 'PRX', 'KRT17', 'COL17A1', 'PRODH', 'NUAK2', 'PGK1', 'FRG1', 'CPA6', 'HHAT', 'KNSTRN', 'PIGY', 'PPIB', 'GLRA1', 'AGXT2', 'TRMT1', 'C1S', 'RHOH', 'COL4A2', 'SH3TC2', 'SLC35B2', 'COL6A1', 'PRDX3', 'TBR1', 'PHYKPL', 'OGDHL', 'IVNS1ABP', 'VPS35', 'COL4A1', 'POLR1B', 'CDH23', 'COL4A4', 'ALX4', 'TRAPPC2L', 'NUP62', 'LMAN2L', 'SFTPA1', 'CFAP410', 'MIEF2', 'EPB41L1', 'ZFHX2', 'XYLT1', 'CAPN3', 'KBTBD13', 'PNKP', 'SGCG', 'COLQ', 'REPS1', 'HGSNAT', 'ARSL', 'CRYAB', 'NAA10', 'TUBB6', 'CSF1R', 'SON', 'PPP2R3C', 'SORD', 'ADCY6', 'KMT2C', 'VAPB', 'BUB3', 'CNP', 'SLC4A11', 'NELFA', 'IGF1R', 'FCGR3A', 'WDR26', 'INTU', 'TONSL', 'VCP', 'CRELD1', 'WIPI2', 'TBCK', 'ZMPSTE24', 'XPNPEP3', 'NODAL', 'HNRNPK', 'IFT43', 'SIM1', 'COA5', 'SARS1', 'PIGL', 'CACNA2D1', 'ERCC3', 'GNAI1', 'COA7', 'ASCC1', 'CLCN6', 'MGP', 'RELA', 'AHDC1', 'EIF4G1', 'ERGIC1', 'SNAP29', 'IGSF3', 'KLF6', 'MT-TL2', 'MCPH1', 'SOX10', 'SZT2', 'TNNT1', 'PUS3', 'SGCA', 'CAMLG', 'KIF22', 'EXOC6B', 'CDK8', 'VANGL2', 'OTX2', 'CTNNA3', 'NUS1', 'ACY1', 'SEMA4A', 'EIF2AK4', 'TYK2', 'VPS35L', 'NIPBL', 'HTT', 'PHC1', 'RSPO4', 'PKP1', 'ISG15', 'FIG4', 'ATXN3', 'ANKLE2', 'GNAQ', 'ASNS', 'GJB4', 'PAK1', 'SLC28A1', 'FGF8', 'ERCC2', 'IRF9', 'YIF1B', 'SLC22A12', 'ZNHIT3', 'CDT1', 'NAPB', 'NEPRO', 'RSPRY1', 'PLXNA1', 'SYNJ1', 'DLL3', 'CYFIP2', 'SLC25A12', 'ATP2B2', 'NF1', 'SOX17', 'BAX', 'ANKRD11', 'SVIL', 'DNAAF4', 'PSEN2', 'FZD4', 'SELENON', 'SPRY2', 'RNF170', 'CDON', 'UMOD', 'TBX21', 'TGDS', 'ALOXE3', 'AARS1', 'NECAP1', 'HAAO', 'TRAK1', 'MRTFA', 'DHTKD1', 'ZNRF3', 'AMER1', 'CNKSR2', 'WDR73', 'NADSYN1', 'CASQ1', 'B4GAT1', 'SLC41A1', 'MESP2', 'CLDN10', 'MATN3', 'BLOC1S3', 'MIR140', 'ROBO1', 'CTH', 'GLRA2', 'GNB5', 'PANK2', 'PUS7', 'RAB3GAP1', 'SLC10A7', 'SEMA3A', 'SLC25A46', 'HOXD10', 'HECW2', 'TANC2', 'KCNE5', 'DHPS', 'VPS13B', 'MEG3', 'DLK1', 'RTL1', 'MECR', 'CDC45', 'CDC6', 'FTL', 'OCA2', 'GABRA5', 'CHKB', 'AIMP2', 'SLC16A12', 'ALOX12B', 'SEC23A', 'GNAI2', 'LRRK2', 'PDGFB', 'SH3PXD2B', 'SMAD9', 'CDK4', 'LRP4', 'KCNA2', 'CUL7', 'MBD4', 'CEP135', 'TET3', 'GABRB2', 'FKTN', 'FRMD5', 'COL9A3', 'SLC6A8', 'GRIN2D', 'RIMS2', 'IGFALS', 'NR0B1', 'SLITRK2', 'ARV1', 'FAM149B1', 'FUS', 'PLCG2', 'HR', 'MEOX1', 'IARS2', 'SDHAF1', 'ANTXR1', 'EMILIN1', 'PACS1', 'HCRT', 'RAC3', 'SCN4A', 'KIF1A', 'EXOSC5', 'KDSR', 'PISD', 'CYP26C1', 'PPM1D', 'SLC6A2', 'SCGB3A2', 'IL13', 'CCL11', 'HLA-G', 'MUC7', 'ALOX5', 'CCT5', 'NUTM2B-AS1', 'RELN', 'KCNQ5', 'DPYD', 'SCN1B', 'WDR62', 'GSN', 'FDXR', 'WDFY3', 'METTL5', 'SUPT16H', 'PNPLA6', 'B9D2', 'KCNJ8', 'MASP2', 'TTN', 'ATP2A1', 'DEAF1', 'GLI2', 'TPM3', 'DLL1', 'CCN2', 'CCR6', 'ORC4', 'TMC6', 'FOXC2', 'ACTL6B', 'DNAJB6', 'MOCOS', 'AGBL1', 'HEPHL1', 'CNTNAP2', 'UFC1', 'HNRNPDL', 'WASHC5', 'ANO10', 'IFT52', 'TGM1', 'CENPE', 'SLC6A6', 'DMXL2', 'TGIF1', 'WNT4', 'SLC33A1', 'AFF4', 'DSTYK', 'DNA2', 'B3GLCT', 'CAMK2B', 'OSMR', 'LRIG2', 'LTBP1', 'MIB1', 'VAC14', 'AIFM1', 'MTMR14', 'PPP3CA', 'DCAF8', 'ADH1C', 'SNORA31', 'YWHAG', 'PIGQ', 'SERPINF1', 'CANT1', 'H1-4', 'FOXJ1', 'IFNAR2', 'ACAN', 'COL2A1', 'CD8A', 'RUNX2', 'OBSL1', 'IRF1', 'GSC', 'ADARB1', 'B3GALNT2', 'NOVA2', 'OPA1', 'CEP63', 'POLR1A', 'ADGRE2', 'TH', 'RNU12', 'GOSR2', 'CELF2', 'CHKA', 'ATP5PO', 'PRKG2', 'RERE', 'BARD1', 'KCND3', 'MDM2', 'TMEM106B', 'CDK6', 'AQP4', 'PAPSS2', 'POGLUT1', 'IFNGR2', 'PPP1R15B', 'LARGE1', 'WNT3A', 'KCNJ2', 'ODAD4', 'C8A', 'MFF', 'ORC1', 'RGR', 'H4C9', 'TRAIP', 'HOXD13', 'SPOP', 'TPR', 'EHMT1', 'TRAPPC12', 'DGCR2', 'ESS2', 'DGCR8', 'DGCR6', 'COL10A1', 'ZNF148', 'ZC3H14', 'CYP26B1', 'DDX6', 'SGCB', 'KCNB1', 'GPX4', 'ODAD1', 'CFD', 'IL10RB', 'PSEN1', 'TRAF7', 'SLC12A6', 'GMNN', 'RBBP8', 'PMFBP1', 'TASP1', 'PANX1', 'KRT16', 'ERCC1', 'NEK1', 'FCN3', 'PRKDC', 'HSD17B3', 'GIPC1', 'RPIA', 'C8B', 'SLC26A2', 'DYRK1A', 'RSPO1', 'KCNQ2', 'UBE3B', 'TRIM71', 'ACTG1', 'SASS6', 'SNCAIP', 'SPEN', 'DARS2', 'CRY1', 'ADRB1', 'TIMELESS', 'POMK', 'CPE', 'NCSTN', 'RIPOR2', 'DRD5', 'TSC1', 'CIBAR1', 'TSC2', 'TIAM1', 'COL4A6', 'HOXA1', 'IL7', 'PYROXD1', 'PTPN23', 'NUP188', 'SYNE1', 'DYNLT2B', 'NME5', 'KDM3B', 'FOLR1', 'RNF113A', 'RAD21', 'MT-ND4L', 'MSTN', 'CRADD', 'CACNA1I', 'ACTA1', 'C6', 'TRAPPC14', 'ADAT3', 'SMARCC2', 'TTC12', 'FGF12', 'NRCAM', 'KIAA0753', 'GJA5', 'DNAAF2', 'IGHG2', 'SP6', 'TOGARAM1', 'ASPN', 'LMX1B', 'GLS', 'SETD2', 'MMP9', 'MAP3K20', 'PRPS1', 'KMT2D', 'NTRK2', 'LFNG', 'HCFC1', 'MTMR2', 'HOXA2', 'PPP1R21', 'TBC1D23', 'ACE', 'CAMSAP1', 'MAPK8IP3', 'SCN3A', 'POLR3A', 'ADGRL1', 'MDH1', 'DBR1', 'BRF1', 'CNGA1', 'CDK19', 'SIX3', 'ALKBH8', 'STAC3', 'GLUL', 'RIPPLY2', 'ZFHX4', 'EPS8L2', 'WBP2', 'POU4F3', 'TDRD7', 'SERPINB6', 'LMX1A', 'KHDC3L', 'UROC1', 'ARR3', 'SPNS2', 'OTOA', 'GRAP', 'GAB1', 'HOMER2', 'TBL1Y', 'PJVK', 'SLC26A5', 'GJA3', 'ING1', 'TNFRSF10B', 'SIPA1L3', 'GCNT2', 'CASP14', 'GSDME', 'ADCY1', 'HGF', 'C3orf52', 'TLE6', 'MST1R', 'A2ML1', 'ANXA5', 'TCTN1', 'ZIC2', 'MFN2', 'RILPL1', 'KAT8', 'RNF220', 'HOGA1', 'IRF7', 'ITGA6', 'GDAP1', 'NALCN', 'SYT2', 'ATP6V1A', 'CYP11B1', 'GHRHR', 'POLR1C', 'GAS2L2', 'HAND2', 'TAF1A', 'FHL2', 'TMPO', 'ANKRD1', 'CAP2', 'EXTL3', 'APP', 'NDNF', 'MYOCD', 'GCH1', 'SUN5', 'SLC13A5', 'TMEM107', 'DACT1', 'CHMP2B', 'GUCY2D', 'ORC6', 'MYBPC1', 'SLC5A6', 'CHRND', 'HEXA', 'PITX3', 'KCNK18', 'SMARCC1', 'KDR', 'JPH3', 'SPEF2', 'ATP2B1', 'GZF1', 'GAS8', 'C7', 'PLCB3', 'CLDN9', 'AP3B2', 'TRIM36', 'OFD1', 'PER3', 'AOPEP', 'PIGP', 'DRD4', 'EED', 'FGF20', 'ANK3', 'SOHLH1', 'TOPORS', 'EXT1', 'KLHL40', 'ODAPH', 'SCP2', 'WDR72', 'SLC25A32', 'ODAD2', 'KATNB1', 'CDH15', 'CRYBB1', 'ARNT2', 'FZR1', 'MSTO1', 'FUZ', 'WASF1', 'ACBD5', 'CHRNG', 'NFIX', 'PYCR2', 'CCNO', 'KIF2A', 'CNOT2', 'EDN1', 'SIK1', 'GPC4', 'MPZ', 'HES7', 'PTHLH', 'RDH5', 'SLC6A19', 'KLHL41', 'CCDC103', 'MYH14', 'RAI1', 'JAG2', 'VANGL1', 'GPRC5B', 'SOX5', 'KCNN3', 'TUSC3', 'PIKFYVE', 'MSX2', 'POGZ', 'AMT', 'CAPN5', 'MAP3K7', 'TNRC6A', 'TCOF1', 'JUP', 'CTSB', 'GFPT1', 'SASH1', 'DNAH5', 'HRAS', 'ERCC5', 'ALS2', 'CHST11', 'PRKD1', 'STK36', 'DNAJB13', 'DNAH9', 'GPR68', 'FLII', 'AMTN', 'PRUNE1', 'IMPA1', 'DCPS', 'CCDC141', 'RNF135', 'ATIC', 'C1QA', 'COLGALT1', 'LMNB1', 'BET1', 'TAT', 'SRRM2', 'NME8', 'PDE6G', 'CPLANE1', 'ANGPTL6', 'TGFBR3', 'TAF2', 'RSPH1', 'ASH1L', 'KANSL1', 'ROM1', 'RBP3', 'NEMF', 'TUBB4A', 'GRHL2', 'PER2', 'GFRA1', 'BCL11B', 'FLNB', 'NTHL1', 'LRRC56', 'NLGN4X', 'LMOD3', 'GDF3', 'LITAF', 'TSPOAP1', 'RAPGEF2', 'RAC1', 'CCDC88C', 'GBF1', 'COL11A2', 'BIN1', 'ASPRV1', 'ZEB2', 'DAG1', 'KCNH1', 'PIGV', 'VPS41', 'NDE1', 'TSEN34', 'SPTAN1', 'NQO2', 'RB1CC1', 'XRCC3', 'HMMR', 'PHB1', 'CFAP300', 'L2HGDH', 'PI4KA', 'MXI1', 'COX6A1', 'MCIDAS', 'DNAI2', 'MYH3', 'RTTN', 'RRP7A', 'DCX', 'DDHD2', 'CRYAA', 'SALL1', 'PADI6', 'ATP2C1', 'C9', 'TMIE', 'OSBPL2', 'PPIP5K2', 'CRYM', 'SLC17A8', 'PLS1', 'CLRN2', 'TMEM132E', 'CABP2', 'EPHA10', 'SCD5', 'PRIMPOL', 'MLC1', 'TRPA1', 'FGF5', 'MYO3A', 'UBIAD1', 'TOP6BL', 'EPS8', 'CPSF1', 'PRICKLE3', 'DNAAF1', 'ZNF644', 'SLC39A5', 'BDP1', 'DSG3', 'MINAR2', 'S1PR2', 'ROBO2', 'ACTL9', 'ZP2', 'PLCZ1', 'ACR', 'MARVELD2', 'RDX', 'ASTL', 'NLRP2', 'NLRP5', 'MYO15A', 'ZP3', 'TRIOBP', 'TMEM216', 'RNASEL', 'RSPH4A', 'DPYSL5', 'TPM2', 'RAB5IF', 'KIAA0825', 'CACNA1B', 'FOXD3', 'FGD4', 'ZNF408', 'ANKRD17', 'FLG', 'PCNA', 'FAM83H', 'SCYL2', 'LGR4', 'VPS13D', 'PIP5K1C', 'RSPH9', 'CAMK2A', 'EIF2B1', 'SLC1A2', 'NIN', 'GNB1', 'CYLD', 'GRHPR', 'NECTIN4', 'SETD1A', 'LARP7', 'IFNAR1', 'CACNG2', 'PTGER2', 'YY1', 'EDC3', 'ACTB', 'SNRPN', 'TLR2', 'ITGA8', 'SLC25A22', 'GJC2', 'SPAG1', 'CCDC65', 'DNAAF11', 'CFAP74', 'ZNF711', 'KMT2B', 'DNAI1', 'BRPF1', 'IQCE', 'TRIM2', 'RDH12', 'GPSM2', 'SMC3', 'SYT14', 'PDE8B', 'CCND2', 'H6PD', 'PDE6D', 'TRAPPC10', 'FOXP2', 'EMD', 'TPRN', 'TSHZ1', 'DKK1', 'RSPH3', 'COL12A1', 'PIK3R2', 'TELO2', 'PCLO', 'IRF3', 'KIRREL1', 'DNAAF3', 'IHH', 'NRROS', 'BICRA', 'TBX3', 'DDX3X', 'NHLRC1', 'AMHR2', 'AMH', 'SNRPB', 'CENPF', 'CSGALNACT1', 'DCC', 'CEP250', 'KRT3', 'FIBP', 'TPRKB', 'SMARCA4', 'GNB4', 'AUTS2', 'DNM1', 'DDB2', 'MMP20', 'DNAH1', 'TP53RK', 'TCF20', 'MAD1L1', 'CDK5RAP2', 'CCDC40', 'SLC26A1', 'ADD3', 'MCC', 'PTPN12', 'DLC1', 'AURKA', 'PLA2G2A', 'TPH2', 'RELT', 'RP1L1', 'ATR', 'MYF5', 'CLN5', 'RAPSN', 'CDSN', 'TM4SF20', 'GATA3', 'RP1', 'SMO', 'PINK1', 'SNCB', 'UBA5', 'SLC13A3', 'PIGW', 'IFT81', 'DHX16', 'NR2E3', 'OXR1', 'CCL2', 'TMEM218', 'BRAT1', 'LDHB', 'DNAH11', 'ZBTB42', 'TBCD', 'CHRNB1', 'ZNF750', 'GRN', 'PRCC', '-', 'PRRX1', 'GTPBP2', 'TECPR2', 'CHST6', 'GAN', 'NLGN1', 'SLC52A2', 'SPEG', 'CHRNA1', 'FMN2', 'LAMA1', 'CLCN3', 'RPGRIP1', 'LIPN', 'GPC6', 'POP1', 'PHIP', 'PLA2G5', 'LOXHD1', 'BFSP2', 'GRXCR1', 'KCNQ4', 'LHFPL5', 'CLDN14', 'MSRB3', 'PDE1C', 'LIM2', 'ATOH1', 'MEI1', 'NLRP7', 'HARS2', 'OTOGL', 'TMPRSS3', 'ILDR1', 'ESRP1', 'CSNK1D', 'INSL3', 'GREM2', 'CHMP4B', 'GLIS2', 'KPNA7', 'MOS', 'FYCO1', 'SPATA16', 'ZFP36L2', 'PRY2', 'CDY2A', 'HSFY1', 'PRY', 'XKRY', 'BPY2', 'KDM5D', 'RPS4Y2', 'VCY', 'CDY1', 'SLC26A8', 'DPY19L2', 'CCDC62', 'GGN', 'TSGA10', 'ZPBP', 'MPZL2', 'ZP1', 'CDC20', 'STUB1', 'SYN1', 'WARS1', 'ARL3', 'ZNF292', 'POLA1', 'HCN1', 'FOXG1', 'UGP2', 'DNAAF5', 'UBE3A', 'UBE4A', 'TMEM53', 'ODAD3', 'TMEM237', 'NR5A1', 'VPS13C', 'TCTN2', 'RBM28', 'CFL2', 'DLG4', 'GPR88', 'CEP120', 'CLTC', 'GRIN1', 'ROR1', 'PIGO', 'AMBN', 'OXGR1', 'GAS1', 'DISP1', 'FOXH1', 'CRIPTO', 'SLC6A4', 'SNCA', 'PIK3CA', 'HSPB8', 'WAC', 'UBR7', 'PLCB4', 'HCN2', 'WNT3', 'NEUROD2', 'REEP2', 'B9D1', 'SMN2', 'AKT3', 'SATB1', 'EP300', 'CLPP', 'AP5Z1', 'STAG2', 'PPP2R1A', 'INTS8', 'CFAP298', 'EIF2B5', 'TRAPPC6B', 'SLC16A2', 'MSH3', 'KCNC2', 'OTOG', 'EML1', 'HYAL1', 'GDF6', 'DRC1', 'EXOC2', 'GON7', 'PLA2G6', 'MYOD1', 'SHH', 'ASPM', 'APC', 'FLVCR1', 'SPG11', 'FRA10AC1', 'PRDM12', 'SHANK3', 'CTSC', 'HYDIN', 'KCNMA1', 'CDH2', 'ODC1', 'TECR', 'DAO', 'GLT8D1', 'PON2', 'PON3', 'PON1', 'PPARGC1A', 'EPHA4', 'UNC13A', 'ANAPC7', 'SLC25A24', 'WWOX', 'TRAPPC9', 'APOL2', 'DISC2', 'RTN4R', 'DAOA', 'APOL4', 'CHI3L1', 'SYN2', 'KIF5A', 'ZBTB18', 'OTOF', 'KNL1', 'XRCC1', 'MED13', 'SEPSECS', 'GNAO1', 'GLDN', 'MCTP2', 'ATP1A2', 'MACF1', 'AMMECR1', 'CHD4', 'SIGMAR1', 'CDK10', 'ATAD1', 'AQP5', 'ATG7', 'GLRB', 'MED27', 'HMCN1', 'GDF9', 'PRMT7', 'XPC', 'GRM1', 'SLITRK1', 'RAX2', 'CREBBP', 'TAF15', 'PLEKHG2', 'PARK7', 'PKDCC', 'SLC39A14', 'LRP12', 'TRPC3', 'NOTCH3', 'SRD5A2', 'KCNK9', 'C1R', 'TTBK2', 'CLN6', 'TCTN3', 'DYSF', 'OPCML', 'PPP2R1B', 'MAP3K8', 'SRGAP1', 'TNIK', 'PPT1', 'DNAJC5', 'ESRRB', 'ACKR3', 'CCDC50', 'DIP2B', 'LRPAP1', 'PNKD', 'MMP19', 'GRXCR2', 'MIR96', 'EPHA2', 'ABCC1', 'SOX2', 'TEAD1', 'LRTOMT', 'ASB10', 'SLC44A4', 'CLIC5', 'PI4KB', 'P2RX2', 'TNC', 'CD164', 'LOXL3', 'MCM2', 'AKR1C2', 'AKR1C4', 'TUBA3D', 'ADAM10', 'SERPINB8', 'SLITRK6', 'KRT6C', 'BTG4', 'SELENBP1', 'HSF2BP', 'CRYGB', 'MIP', 'VIM', 'AVIL', 'TMEM151A', 'SYCP2', 'BRDT', 'AURKC', 'SPINK2', 'SYNE4', 'SLC24A4', 'EIF2B3', 'PAK2', 'GRM7', 'PRKN', 'CCDC39', 'GDI1', 'MEIS2', 'MME', 'CHD8', 'FAT2', 'MAST1', 'PTCH2', 'FEZF1', 'CAPN15', 'SBF1', 'HERC1', 'TRIO', 'SCUBE3', 'CRB1', 'PGAP3', 'SSBP1', 'EFTUD2', 'CTSD', 'IQSEC1', 'CCNQ', 'CRPPA', 'ZBTB11', 'ADAMTSL4', 'CHMP1A', 'MED11', 'RBM12', 'CHUK', 'GRIN2B', 'KMT2A', 'ATP1A3', 'ZMYND10', 'KCNA1', 'SEMA3E', 'KCNJ6', 'SMOC1', 'SLC25A1', 'CC2D1A', 'LAMC3', 'KIF5C', 'COL9A2', 'PSMB1', 'CUX1', 'ZNF423', 'EBP', 'RGS9', 'MAB21L2', 'PAFAH1B1', 'KLK4', 'DPH1', 'SIN3A', 'GLDC', 'C1QC', 'COMP', 'ACP4', 'PPP2CA', 'ADAMTS17', 'CCDC22', 'PRPF3', 'KIDINS220', 'AP1G1', 'SERPINI1', 'LRRC32', 'MYT1L', 'AFG3L2', 'NR4A2', 'ZFYVE27', 'ZMIZ1', 'GDAP2', 'HNRNPH2', 'DNAL4', 'GAMT', 'POU4F1', 'WDR37', 'MFSD8', 'RAB7A', 'XPA', 'HFM1', 'PRDM13', 'POFUT1', 'VAX1', 'MYOT', 'BMP4', 'ISCA2', 'ZNF141', 'TRPV4', 'TUBB2A', 'FLVCR2', 'MFSD2A', 'C12orf57', 'PLD3', 'KCNT1', 'AMFR', 'CSNK2B', 'PUF60', 'ATL3', 'RPS6KA3', 'FXR1', 'ENTPD1', 'TSEN15', 'MCM3AP', 'NKX2-1', 'COLEC10', 'EDAR', 'AHSG', 'KITLG', 'TMX2', 'MYMX', 'YRDC', 'FGFR1', 'ALG14', 'SRCAP', 'CEP41', 'GREB1L', 'GIPC3', 'RORA', 'EXPH5', 'KAT6B', 'THOC1', 'MVD', 'MIR204', 'DIABLO', 'PANK4', 'MAPKAPK3', 'TCHH', 'HSF4', 'CRYBA1', 'CDC14A', 'CRYGS', 'SEPTIN12', 'CEP112', 'MAFB', 'TEKT3', 'CFAP70', 'DNAH2', 'M1AP', 'IQCN', 'KCNU1', 'REC114', 'CATSPER1', 'ACTL7A', 'DNALI1', 'CFAP44', 'CFAP69', 'MASP1', 'FBXO28', 'BICD2', 'EIF4A3', 'KIF26A', 'GCNA', 'NOTCH2NLC', 'CTSF', 'POF1B', 'HDC', 'NEK2', 'ERLIN2', 'VSX2', 'SLC6A9', 'NDST1', 'DDR2', 'WLS', 'PIEZO2', 'PERP', 'FAM50A', 'EEF1A2', 'AGO1', 'HNRNPR', 'CFHR5', 'CLN8', 'NARS1', 'LMBR1', 'TSEN2', 'DPH5', 'GABRB1', 'ATP5MC3', 'MEGF8', 'STEEP1', 'BLTP1', 'NEFL', 'WBP11', 'SLC19A3', 'HTR2A', 'CRBN', 'KDM5B', 'PSENEN', 'AR', 'KLF13', 'POMT2', 'ARL6IP1', 'ADAM9', 'GRHL3', 'KRT12', 'SLC35A3', 'FOXI1', 'TRIM8', 'EIF2B2', 'ASXL3', 'TTI2', 'CLDN19', 'ZSWIM6', 'KLC2', 'RAB11B', 'NCDN', 'COPB1', 'GJA8', 'NSDHL', 'PRKCG', 'UBQLN2', 'KCNJ3', 'PMP2', 'DIAPH3', 'GAL', 'SETBP1', 'COL9A1', 'CWC27', 'PCARE', 'AHR', 'FAM161A', 'PDE6A', 'GUCA1B', 'CNGB1', 'SNRNP200', 'FSCN2', 'NTN1', 'UCHL1', 'PRKRA', 'APC2', 'TTC19', 'PRKAR1B', 'THOC2', 'SIX6', 'TAP1', 'TAP2', 'TAPBP', 'DDHD1', 'KATNIP', 'EXOSC1', 'MAPKBP1', 'TMEM163', 'PCYT1A', 'ZNF462', 'FLG2', 'CTU2', 'PGAP2', 'ATP6V1B2', 'DDX11', 'RIC1', 'KRT9', 'ELOVL5', 'FAM13A', 'KDM1A', 'MAN2C1', 'TP73', 'TNRC6B', 'TSEN54', 'FAR1', 'RBL2', 'BAP1', 'BPNT2', 'DNAH7', 'HOXB1', 'MARK3', 'DPH2', 'CRYBA2', 'MED12L', 'GNAT1', 'DARS1', 'FGF9', 'CLEC3B', 'FRMD7', 'ARL2', 'MYF6', 'NONO', 'NOBOX', 'CFAP65', 'AKAP3', 'CFAP58', 'SPACA1', 'QRICH2', 'KAT6A', 'CEP104', 'CLP1', 'MEF2C', 'ARHGEF18', 'KCNK4', 'WNT7A', 'MLPH', 'CNOT3', 'ITGB6', 'FKRP', 'KANK2', 'SLC18A2', 'SMOC2', 'UNC119', 'CEP55', 'ARMC9', 'FMR1', 'CHAMP1', 'POLR3GL', 'PRNP', 'PRCD', 'CERKL', 'BHLHA9', 'SLC2A3', 'AKT1', 'FITM2', 'KCNC1', 'TBC1D7', 'ATXN2', 'SLC27A4', 'TACO1', 'LAMB1', 'IGF2R', 'MN1', 'CNTNAP1', 'CHRNE', 'MYO18B', 'AAGAB', 'IQSEC2', 'POMT1', 'NUP54', 'IRF2BPL', 'ARFGEF1', 'GNB3', 'HMGB3', 'TBC1D24', 'NEB', 'ZFPM2', 'TAF8', 'PTCH1', 'TUBG1', 'SEMA6B', 'AIPL1', 'CLCC1', 'GM2A', 'RGS9BP', 'FOXI3', 'FBXL3', 'HYCC1', 'CKAP2L', 'MESD', 'KDM5C', 'PDE6B', 'FERRY3', 'COL27A1', 'MAPK1', 'GABBR2', 'MCM8', 'EYS', 'IDH3B', 'CD151', 'CYP2U1', 'THG1L', 'ADNP', 'TMEM94', 'PTPA', 'ADSS1', 'DNMT1', 'LHCGR', 'TDO2', 'EIF2B4', 'ITM2B', 'ZEB1', 'ZFHX3', 'MED25', 'SUZ12', 'SEMA5A', 'TPP1', 'GRIP1', 'CRX', 'ZNF142', 'TENM4', 'DAB1', 'SET', 'PCDH12', 'DLG3', 'DICER1', 'RP9', 'TUBB', 'DRD3', 'HKDC1', 'TUFT1', 'SLC17A9', 'FZD6', 'DNMBP', 'FDPS', 'ELP4', 'HRURF', 'ADGRG2', 'CTNNA1', 'PATL2', 'VWA3B', 'ERAL1', 'TTC29', 'CFAP251', 'TTC21A', 'DNAH8', 'AK7', 'DSC3', 'GDF11', 'NOL3', 'GNAL', 'DLX4', 'SIAH1', 'POLH', 'SNORD118', 'KIAA1549', 'ATG5', 'VWA1', 'KIF7', 'ATCAY', 'NSD1', 'KCNJ13', 'GJA1', 'EIF2AK1', 'EIF2AK2', 'COL25A1', 'SOX9', 'TNNT3', 'CDHR1', 'AGBL5', 'SLC7A14', 'PRPF6', 'ZNF513', 'RNASET2', 'TMEM231', 'FAM20A', 'PAX7', 'PAICS', 'DNAJB2', 'DLEC1', 'FGFR2', 'SLC7A6OS', 'IFT57', 'ERLIN1', 'EXOC7', 'ROBO3', 'LRMDA', 'ZNF407', 'COQ6', 'SATB2', 'COL6A2', 'SPG21', 'ATXN8', 'POLR3B', 'ATXN8OS', 'GEMIN5', 'ELP2', 'DNAJC12', 'MYO5A', 'CDK13', 'PHKA1', 'MBOAT7', 'BMPR1B', 'CACNA1E', 'MINPP1', 'PPP2R5D', 'TRPS1', 'GMPPA', 'HNRNPU', 'ABHD16A', 'BNC2', 'MAK', 'PRPF4', 'MERTK', 'DHX38', 'NDRG1', 'UQCRC1', 'FGF13', 'NANS', 'UGDH', 'TMC8', 'SMG9', 'NANOS1', 'RNF212', 'SYCP3', 'TEX14', 'PRICKLE1', 'TMEM63A', 'CCDC174', 'PITX1', 'H4C5', 'AHI1', 'PCYT2', 'RSRC1', 'BEST1', 'SLC5A7', 'PRPF31', 'TXNL4A', 'CRYGD', 'GPNMB', 'ADAMTS18', 'VWA8', 'MIR184', 'PMVK', 'WEE2', 'DAZ3', 'DAZ1', 'DDX3Y', 'RBMY1A1', 'DAZ2', 'USP9Y', 'ARMC2', 'ATP1A1', 'DNAH17', 'SSX1', 'FSIP2', 'MAPT', 'TACSTD2', 'RBMX', 'COL11A1', 'TMCO1', 'CBX2', 'RCBTB1', 'CADM3', 'FBLN1', 'NLGN3', 'TGM5', 'POR', 'PDE4D', 'MAP3K1', 'LOXL1', 'KCNT2', 'REEP6', 'PDE6H', 'CLRN1', 'RNF6', 'MAST3', 'NDP', 'POMGNT1', 'RFX7', 'IMPG2', 'CEP152', 'EDEM3', 'CHD1', 'KIZ', 'KRT83', 'ATP8A2', 'VAMP2', 'DHODH', 'ADGRG1', 'DCN', 'DRAM2', 'OPN1SW', 'DCT', 'WNK3', 'SPART', 'ROGDI', 'AXIN1', 'DNAJC6', 'DOCK3', 'SHMT2', 'SEPTIN9', 'SLC1A4', 'FBXO7', 'NBEA', 'TUBGCP4', 'CACNA1A', 'IRF6', 'CNTN2', 'CA8', 'ADPRS', 'FREM1', 'IDH3A', 'HS2ST1', 'DNAJC13', 'LAMP2', 'SETD5', 'CAPN1', 'TERB2', 'MOV10L1', 'PNLDC1', 'TERB1', 'SPAG17', 'MEIOB', 'SF3B4', 'AP4E1', 'TMEM63C', 'GATAD2B', 'ACSL4', 'WDR45B', 'EXOC8', 'SLC9A6', 'HDAC9', 'HECTD4', 'SLC9A1', 'DHX30', 'DDX59', 'CHP1', 'SMG8', 'RAX', 'TRIM44', 'SMARCD1', 'CRYBA4', 'KERA', 'P3H2', 'CFAP91', 'FBXO11', 'COL8A2', 'CEP85L', 'METTL23', 'SAG', 'TAF4B', 'ARID2', 'DOK7', 'PSMC3', 'SPTLC1', 'HINT1', 'SOBP', 'RORB', 'PITX2', 'USP45', 'BEAN1', 'CTNNA2', 'TNNI2', 'HDAC8', 'ZMYND11', 'ARID1A', 'ZDHHC9', 'SHOC1', 'MAMLD1', 'SMPD4', 'USP9X', 'DONSON', 'SLMAP', 'RANGRF', 'REEP1', 'TUB', 'ARID1B', 'ABCA4', 'ACER3', 'KCNV2', 'KIF14', 'SALL4', 'RTN2', 'BRD4', 'COL6A3', 'HCCS', 'ECEL1', 'RSPO2', 'RD3', 'PMP22', 'GPR101', 'MUSK', 'COQ5', 'CHRNA7', 'NRL', 'PHACTR1', 'SACS', 'HYLS1', 'KLK11', 'VARS1', 'TMEM222', 'HSPB3', 'MRE11', 'THUMPD1', 'CNPY3', 'SLC45A1', 'HOXC13', 'IL11RA', 'SMARCA2', 'MBTPS2', 'FRMD4A', 'HDAC4', 'TWIST1', 'PRPF8', 'CTNND2', 'PGM2L1', 'ZFYVE26', 'STXBP1', 'WASHC4', 'SLURP1', 'KLHL10', 'PDHA2', 'RPL10L', 'TEX15', 'RTN4IP1', 'TMEM126A', 'TBP', 'MTSS2', 'SOX4', 'EMC10', 'RALGAPA1', 'PDCD6IP', 'EIF3F', 'STARD7', 'USP26', 'OAT', 'CERS1', 'POU3F3', 'PADI3', 'TGM3', 'LTV1', 'SALL2', 'SNRPE', 'CFAP61', 'ARX', 'EZH2', 'AXL', 'SRA1', 'OPA3', 'SCN8A', 'SETD1B', 'SPTBN2', 'H4C11', 'SPTLC2', 'ANOS1', 'FBXO38', 'ADAM22', 'KCNC3', 'ARL2BP', 'PROM1', 'SYT1', 'DSPP', 'FGFR3', 'TFAP2A', 'KDF1', 'WNT10B', 'PLK4', 'CST6', 'MPDZ', 'MAPRE2', 'HARS1', 'PITPNM3', 'SLC24A5', 'SRPX2', 'GRIA2', 'YEATS2', 'KCTD7', 'PUM1', 'C14orf39', 'KIF1C', 'TGM6', 'VAMP1', 'PDZD8', 'GNAI3', 'IMPDH1', 'SNAP25', 'GBA2', 'NR2F1', 'SLC52A3', 'TBC1D2B', 'ANO3', 'ZMYM2', 'NUP88', 'C2CD3', 'EEF2', 'SUFU', 'NFIB', 'TDRD9', 'ZIC1', 'CLDN11', 'LNPK', 'SYNGAP1', 'RPGR', 'BRWD1', 'ATN1', 'DYNC1I2', 'PDYN', 'PDXK', 'NOP56', 'CIB1', 'DHX37', 'NRIP1', 'PRSS56', 'TMEM98', 'KREMEN1', 'CRYBB2', 'CPAMD8', 'CAMK2G', 'QARS1', 'TTI1', 'TNR', 'THAP1', 'SAMD12', 'THOC6', 'SGCE', 'DPF2', 'KIFBP', 'COASY', 'NPTX1', 'ST3GAL3', 'DDB1', 'KPNA3', 'GJB2', 'PIGN', 'TUBGCP6', 'MYO7A', 'CTNND1', 'MYO9A', 'TRIP12', 'EFHC1', 'ZMYND15', 'CAMTA1', 'ITPR1', 'MYOC', 'CACNA2D2', 'FGD1', 'MFRP', 'TRRAP', 'VPS16', 'CFAP221', 'ROR2', 'SMARCE1', 'MARCHF6', 'TBX18', 'CT55', 'TMEM147', 'P2RY11', 'CTSH', 'CHAT', 'CDH1', 'UBE2A', 'TLCD3B', 'CDC42BPB', 'ABCA7', 'MBD5', 'GLI3', 'HSPB1', 'AAAS', 'RFC1', 'RUBCN', 'APCDD1', 'H3-3A', 'ADSL', 'SELENOI', 'VCAN', 'SLC38A8', 'PTPRF', 'COX7B', 'LRAT', 'LRP2', 'DUX4L1', 'DUX4', 'NTNG2', 'SVBP', 'CACNA1H', 'ADGRG6', 'ALDH3A2', 'PRDM8', 'INTS1', 'ATL1', 'CLTCL1', 'RAB28', 'TTLL5', 'ZNF365', 'TMEM138', 'GDF5', 'NF2', 'RPE65', 'CSTA', 'TULP1', 'HUWE1', 'SOX11', 'DHH', 'GRID2', 'TBX15', 'TBX22', 'USH2A', 'IMPG1', 'RP2', 'KCNQ3', 'GJB6', 'NT5C2', 'FBXO43', 'CCDC34', 'COLEC11', 'SF3B2', 'TSPEAR', 'RHO', 'RLBP1', 'AP4M1', 'LRP1', 'KCTD17', 'AGRN', 'CPT1C', 'NIPA1', 'KRT85', 'ATXN10', 'GMPPB', 'COL18A1', 'ADGRV1', 'UBAP1', 'SCN2A', 'AP4B1', 'MAN1B1', '-', 'PXDN', 'MICAL1', 'SERPINB7', 'CATSPER2', 'STRC', 'SPECC1L', 'CCNK', 'SMN1', 'CILK1', 'SMARCB1', 'RPL10', 'CHRNB2', 'EMC1', 'ELOVL4', 'RALA', 'CRYGC', 'SLC18A3', 'MSL3', 'GRIK2', 'CHD5', 'CLIC2', 'ALDH1A3', 'COL13A1', 'MSX1', 'SOX6', 'FGF10', 'TOE1', 'GABRG2', 'USF3', 'NECTIN1', 'DNAH10', 'BCAS3', 'AFG2B', 'ECM1', 'KIF11', 'TUBGCP2', 'STX1B', 'PHOX2A', 'TCEAL1', 'TAF6', 'PAX1', 'ERF', 'PPP2R2B', 'DNAAF6', 'PPP1R12A', 'NPRL2', 'LGI4', 'PDE2A', 'TRPM3', 'HOXA13', 'TBC1D20', 'DYNC1H1', 'RNF216', 'YAP1', 'EPS8L3', 'HID1', 'NPRL3', 'MSH5', 'ALX3', 'ALX1', 'NKX6-2', 'SRY', 'FA2H', 'SIX2', 'MAF', 'TAF1', 'FBXO31', 'LMBRD2', 'STAG3', 'RAB3GAP2', 'SLC32A1', 'SYCE1', 'CATIP', 'WDR81', 'AP4S1', 'TRANK1', 'ARHGEF2', 'NXN', 'VLDLR', 'EXOSC2', 'TUBB2B', 'USH1G', 'PIDD1', 'ABHD12', 'TUBB4B', 'DOCK7', 'ATP13A2', 'CAST', 'KLLN', 'OVOL2', 'GARS1', 'TYRP1', 'ATOH7', 'PCDHGC4', 'SCARF2', 'PQBP1', 'TFAP2B', 'DVL3', 'SBF2', 'POC1B', 'TUBB3', 'CHRNA4', 'RDH11', 'CERT1', 'SMC1A', 'RPS23', 'UPF3B', 'MTPAP', 'ESPN', 'ZNF526', 'KCTD1', 'XPNPEP2', 'DNHD1', 'SLC6A17', 'KLHL9', 'SMCHD1', 'NKAP', 'DSG4', 'KDM6B', 'LHB', 'GAD1', 'SLC24A1', 'ADD1', 'ATP1B1', 'CYP3A5', 'PTGIS', 'RGS5', 'PURA', 'FZD2', 'FREM2', 'SHROOM4', 'PLP1', 'CACNA1G', 'CNNM4', 'LAGE3', 'B4GALNT1', 'CWF19L1', 'TTC5', 'CLTRN', 'BRCC3', 'CRKL', 'KIF21A', 'CIB2', 'ST14', 'FOXC1', 'CUX2', 'ABCA5', 'ASPH', 'KRT74', 'FRAS1', 'CHM', 'DENND5A', 'PAX3', 'RPL21', 'SIX5', 'KRT25', 'TRPV3', 'CDKL5', 'TUBA1A', 'SMS', 'VSX1', 'CHSY1', 'FGF14', 'LSS', 'CDH11', 'PORCN', 'EIF2S3', 'CHRNA2', 'EDARADD', 'RUSC2', 'KRT71', 'ELOVL1', 'GPR179', 'FSHB', 'SPATA7', 'GRIN2A', 'SLC45A2', 'USH1C', 'NOG', 'MORC2', 'LORICRIN', 'MAB21L1', 'TENM3', 'CDH3', 'KAT5', 'KCNN2', 'CSTB', 'CYP4V2', 'CACNA1F', 'ATXN1', 'TRPM1', 'LRIT3', 'MAG', 'WHRN', 'NMNAT1', 'SCN1A', 'LGI1', 'CACNA2D4', 'MSN', 'SPAST', 'PCDH15', 'RHOBTB2', 'KRT86', 'KRT81', 'WDR45', 'ZFTA', 'CHN1', 'TMEM240', 'PDZD7', 'GNAT2', 'RAB18', 'TIMP3', 'GRM6', 'EFEMP1', 'DLG1', 'COBLL1', 'ARHGAP29', 'ARHGEF38', 'EBF3', 'MED13L', 'DVL1', 'GJB1', 'FGF3', 'FRRS1L', 'TWIST2', 'PHF6', 'CARD14', 'ATF6', 'GPR143', 'TGFBI', 'STS', 'KDM4B', 'VMA21', 'NEXMIF', 'MC1R', 'CACNB4', 'SMARCAD1', 'HDAC6', 'WNT5A', 'SLC6A1', 'PDE6C', 'ISL1', 'ARSG', 'PAX6', 'ATP10A', 'PRPH2', 'GUCA1A', 'CEP78', 'ATRIP', 'PODXL', 'NTNG1', 'CUL4B', 'SCNM1', 'NHS', 'AP2M1', 'GABRB3', 'DEPDC5', 'NUTM1', 'WNT9B', 'MID1', 'CBY1', 'LIPH', 'GRK1', 'RIPK4', 'MCM7', 'CYP1B1', 'MTM1', 'MAOA', 'CNGA3', 'ATP2A2', 'DMRT3', 'VAMP7', 'CEP126', 'AP1S2', 'CLCN4', 'IGBP1', 'JARID2', 'PCDH19', 'PRRT2', 'ZC4H2', 'RLIM', 'CABP4', 'PRR12', 'HMX1', 'CHD2', 'TP63', 'LPAR6', 'C1QTNF5', 'AXIN2', 'PAX9', 'LCA5', 'ALOX5AP', 'PRKCH', 'TYR', 'GABRA1', 'MGMT', 'TERF2IP', 'POU3F4', 'IMPDH2', 'EDA2R', 'CFP', 'UBB', 'SIX1', 'EYA1', 'NIPA2', 'DDIT3', 'BDNF', 'CNGB3', 'YWHAE', 'GRIA3', 'L1CAM', 'CA4', 'IFT88', 'EDA', 'HIC1', 'MIR17HG', 'HLA-C', 'EFNB1', 'REV3L', 'WNT10A', 'CTHRC1', 'MSR1', 'PDK3', 'FOXL2', 'TIMM8A', 'FRZB', 'COL14A1', 'LAS1L', 'TRAF6', 'GPKOW', 'SLC6A20', 'SLC6A18', 'MAGED2', 'BCKDK', 'FLRT1', 'ATP2B3', 'ADAMTSL1', 'RAB39B', 'FRA16E', 'ADORA2A', 'SIN3B', 'TAS2R16', 'ADH1B', 'AK9', 'RNF139', 'OGG1', 'PBRM1', 'IGSF1', 'TAL1', 'TAL2', 'TMLHE', 'PLEKHG4', 'RAD51D', 'CIZ1', 'AFF2', 'IFRD1', 'MACROH2A1', 'SLC9A7', 'IL1B', 'ARHGEF9', 'OPHN1', 'DISC1', 'EOMES', 'PAK3', 'FRMPD4', 'SNAI2', 'SORL1', 'TOMM40', 'BCORL1', 'MAPK10', 'WDR48', 'HLA-A', 'TMEM185A', 'ZFR', 'ZNF592', 'ABCB1', 'IRGM', 'MT-RNR1', 'SMPX', 'PHF8', 'SEM1', 'DLX6', 'BTRC', 'FBXW4', 'EPS15L1', 'OGT', 'SUMO1', 'RHOA', 'ARSI', 'KLHL15', 'CYSLTR2', 'BRWD3', 'MID2', 'KANK1', 'RS1', 'CRH', 'JRK', 'LRIF1', 'IL1RAPL1', 'FTSJ1', 'EMX2', 'PTCHD1', 'IRS4', 'DRD2', 'FGF16', 'ADRA2B', 'LZTS1', 'SMAD7', 'KIF4A', 'USP27X', 'NR4A3', 'SYP', 'KEAP1', 'AMELX', 'DIAPH2', 'TSPAN7', 'GPRASP2', 'ZFAT', 'TEX11', 'FIGLA', 'OPN1LW', 'OPN1MW', 'FKBP5', 'PLS3', 'CLDN2', 'TGFA', 'RIMS1', 'FOXO1', 'CFAP47', 'CHRDL1', 'NYX', 'CREB1', 'SSX2', 'ASPSCR1', 'HLA-DRA', 'WDR36', 'NTF4', 'DMRT1', 'TSPY1', 'DAZ4', 'SERPINA12', 'C2CD6']\n", + "['HSD3B7', 'LIPA', 'AKR1D1', 'PYGL', 'BAAT', 'CDAN1', 'CALR', 'MRPL3', 'TRMT10C', 'RUNX1', 'FAH', 'LARS1', 'STEAP3', 'MYO5B', 'SLC2A2', 'KIF23', 'SLC4A1', 'PKLR', 'RHAG', 'SCO1', 'PHKG2', 'VPS45', 'TKFC', 'SP110', 'RPS14', 'GALM', 'KLF1', 'GPR35', 'MST1', 'SEMA4D', 'LARS2', 'TFAM', 'MRPS7', 'UNC13D', 'KCNN4', 'ACAD9', 'HBB', 'FERMT3', 'ABCD3', 'LCAT', 'PCCA', 'PCCB', 'UQCRB', 'RHCE', 'MPI', 'HAMP', 'SMPD1', 'STXBP2', 'MMAB', 'UQCRFS1', 'STX11', 'RACGAP1', 'SLC25A13', 'FADD', 'DCDC2', 'DEF6', 'SCARB2', 'F5', 'STX5', 'EPB42', 'ABCB4', 'SRSF2', 'JAK2', 'ATP8B1', 'FECH', 'CDIN1', 'IARS1', 'IRF8', 'SAR1B', 'MPIG6B', 'KIF12', 'PHKA2', 'PHKB', 'HBG1', 'LYRM4', 'CCDC115', 'MRPL44', 'SLC7A7', 'SPTA1', 'GALT', 'PCK1', 'DLD', 'UNC45A', 'SPTB', 'PRF1', 'ALAS2', 'TMEM165', 'EPB41', 'TET2', 'GPD1', 'SARS2', 'COX4I2', 'ABCG8', 'CD55', 'NLRC4', 'MMAA', 'AMN', 'USP53', 'ATP6AP1', 'LPIN2', 'UMPS', 'PLEKHM1', 'ATP7B', 'MPL', 'NR1H4', 'VPS33B', 'TBXAS1', 'RHD', 'FARSB', 'TALDO1', 'PALLD', 'RABL3', 'TJP2', 'TRMU', 'GYS2', 'MTTP', 'ABCC2', 'DDOST', 'HMGCL', 'HMOX1', 'MYH9', 'HADH', 'GATC', 'QRSL1', 'HBG2', 'HMGCS2', 'EARS2', 'SLC51A', 'SLC30A10', 'CYC1', 'MECOM', 'ABCB11', 'MPV17', 'NFS1', 'PSMB9', 'PSMB4', 'TMEM199', 'RBCK1', 'ALG8', 'TNFSF15', 'POU2AF1', 'MMEL1', 'SPIB', 'PRKACG', 'GFI1B', 'ALDOB', 'THPO', 'ABCA1', 'TFRC', 'ALDOA', 'GPIHBP1', 'SLC51B', 'SEMA7A', 'BLVRA', 'GIMAP5', 'GPI', 'TF', 'APOB', 'ADK', 'ITK', 'LCK', 'SPINK1', 'CD46', 'DOCK2', 'GYPC', 'RINT1', 'IVD', 'MS4A1', 'CUBN', 'FBP1', 'SLC11A2', 'DAXX', 'PRSS1', 'PRSS2', 'TCN2', 'CTRC', 'OTC', 'ACSL5', 'TNFSF12', 'B4GALT1', 'SF3B1', 'DNASE2', 'UQCRC2', 'CPT1A', 'STAT2', 'NAF1', 'NEUROG3', 'LMO1', 'ALK', 'LIN28B', 'TOP2A', 'HAVCR2', 'SERPINA1', 'NBEAL2', 'SLC40A1', 'LPL', 'CYP7B1', 'SH2B3', 'EIF2AK3', 'COX10', 'ADAMTS13', 'SLC25A38', 'IRF2BP2', 'ASL', 'NPC1', 'ZNFX1', 'PIEZO1', 'SLC22A5', 'XIAP', 'MTHFD1', 'AMACR', 'FOCAD', 'CA2', 'HSCB', 'SH2D1A', 'NFKB1', 'GATB', 'IL12RB1', 'FTH1', 'ACAD8', 'HJV', 'ACSF3', 'GATA1', 'TNFRSF13B', 'ACADM', 'CSF3R', 'ZFYVE19', 'IKZF1', 'GATA2', 'ALG6', 'TNFRSF13C', 'GLRX5', 'CD81', 'G6PC1', 'RAG2', 'DHFR', 'CELA2A', 'SBDS', 'MTO1', 'BPGM', 'SLC4A2', 'EPOR', 'PSMB10', 'PKHD1', 'EPO', 'EFL1', 'XK', 'GP1BA', 'ICOS', 'RIPK1', 'OSTM1', 'CD27', 'GSS', 'PCK2', 'IL18BP', 'DPYS', 'ATP6V0A4', 'PGM1', 'TRNT1', 'RAG1', 'NHLRC2', 'MDM4', 'DGUOK', 'GCLC', 'CORIN', 'MRPS2', 'MICOS13', 'HELLPAR', 'HNF4A', 'BCS1L', 'IFT56', 'GALK1', 'YARS1', 'ITGA2B', 'HLA-DQA1', 'KRT18', 'AK2', 'TMPRSS6', 'UROD', 'ACAT1', 'ERCC6L2', 'MARS1', 'DGAT1', 'G6PC3', 'SLC9A3', 'CD19', 'TLR8', 'ETV6', 'TNPO3', 'AHCY', 'SLC37A4', 'APOE', 'CYP7A1', 'SUGCT', 'SMARCD2', 'EWSR1', 'CD36', 'PIK3CG', 'FARSA', 'HBA2', 'SLCO2A1', 'FOXP3', 'ABHD5', 'MMUT', 'LYST', 'SRC', 'SLC25A20', 'ACTN4', 'APOA1', 'NSMCE2', 'CBLIF', 'SRP54', 'HADHB', 'HBA1', 'ALB', 'SYK', 'RFX6', 'COA8', 'DNAJC19', 'PNPO', 'KIF20A', 'ASS1', 'GFM1', 'SNX10', 'NDUFB7', 'IGH', 'SLC25A3', 'UBR1', 'G6PD', 'HCK', 'PSTPIP1', 'CAD', 'SLC5A1', 'SURF1', 'SI', 'TMPRSS15', 'GALE', 'SLC25A15', 'MT-TN', 'DZIP1L', 'ABCD4', 'CFB', 'SERPINA6', 'IL21R', 'MYC', 'FYB1', 'HFE', 'PET100', 'CLCA4', 'SLC11A1', 'SLC6A14', 'DCTN4', 'SLC26A9', 'GSTM3', 'CEACAM3', 'CEACAM6', 'LMBRD1', 'ERBB3', 'USP18', 'MIF', 'RARA', 'NUMA1', 'IL37', 'F12', 'COG7', 'COG6', 'UROS', 'ASAH1', 'TPI1', 'COG4', 'SLC26A3', 'VWF', 'TNFSF11', 'WRAP53', 'ACADVL', 'PRKCSH', 'PFKM', 'THBD', 'AGXT', 'FCGR2A', 'ANKRD26', 'FTCD', 'HADHA', 'TFR2', 'FLT1', 'LACC1', 'VPS50', 'STAT5B', 'IRF5', 'TYMP', 'LIG3', 'APOA5', 'PUS1', 'PML', 'NABP1', 'FIP1L1', 'ZBTB16', 'KLKB1', 'MTRR', 'TRAC', 'PIGM', 'LAT', 'RNU7-1', 'YARS2', 'MRPS28', 'KHK', 'GBE1', 'UGT1A1', 'CYP27B1', 'NDUFB8', 'CYP2R1', 'AP1S3', 'CA5A', 'SHPK', 'BMP6', 'GDF2', 'LDLRAP1', 'FGA', 'CBL', 'MCEE', 'VKORC1', 'SKIC3', 'LCT', 'RPSA', 'RAB27A', 'F13B', 'STOX1', 'NR3C2', 'CP', 'FGF23', 'IL7R', 'NPC2', 'NDUFA2', 'MCCC2', 'RAC2', 'VIPAS39', 'NDUFAF1', 'TUFM', 'F13A1', 'PDSS2', 'NPM1', 'F2', 'GP9', 'SLC19A1', 'PHOX2B', 'APOC2', 'ACD', 'SAMD9', 'PLVAP', 'IL1RN', 'TIMM22', 'PEPD', 'COG8', 'SAMD9L', 'ALPL', 'OCLN', 'NT5C3A', 'PTPRJ', 'RPL27', 'ACTN1', 'UQCC3', 'PRDX1', 'POLG2', 'DNAJC21', 'WDR1', 'FMO3', 'CLPB', 'CFTR', 'TNFRSF4', 'SFXN4', 'GATM', 'TOM1', 'ITGB3', 'HLCS', 'MTR', 'ACOX2', 'MALT1', 'PERCC1', 'TEK', 'F11', 'JAGN1', 'TGFB1', 'LDLR', 'AP1B1', 'MMADHC', 'LIPC', 'CTSA', 'C2orf69', 'CLDN1', 'TCIRG1', 'TREH', 'AGGF1', 'ARPC1B', 'UQCRH', 'ADH5', 'LRRK1', 'LYZ', 'C3', 'LIPT1', 'CYP19A1', 'RFT1', 'PCSK9', 'CYB561', 'ABCG5', 'ANK1', 'NEK8', 'RPL35', 'PRKCD', 'TCF3', 'DCLRE1C', 'BCHE', 'MRM2', 'COX5A', 'SERAC1', 'ISCU', 'CUL3', 'CR2', 'MPO', 'TRMT5', 'FDX2', 'SLC34A1', 'ZAP70', 'ADA', 'LRBA', 'TPMT', 'JAK1', 'OPLAH', 'SLC52A1', 'NAGS', 'SLC17A5', 'MVK', 'REL', 'NHP2', 'CETP', 'SGO1', 'RHBDF2', 'CPS1', 'DGKE', 'ABL1', 'IL12A', 'CAT', 'HBD', 'CD3D', 'PC', 'HSD11B2', 'BTNL2', 'BCAT2', 'KIT', 'GAA', 'CBS', 'NOP10', 'MCM4', 'PNPLA2', 'RMND1', 'FAM111A', 'COX14', 'CD40LG', 'IL36RN', 'ELANE', 'STAT1', 'RFXAP', 'RFX5', 'RFXANK', 'SLC46A1', 'CLMP', 'PTPRC', 'USB1', 'C1GALT1C1', 'RPL18', 'ALG1', 'GSTZ1', 'CAVIN1', 'ELAC2', 'LMAN1', 'COX16', 'DDX41', 'SKIC2', 'RTEL1', 'ORAI1', 'IFNGR1', 'MCCC1', 'MRPS16', 'MIPEP', 'PARN', 'RPS27', 'SGMS2', 'SLC4A4', 'CPA1', 'RPS15A', 'CASR', 'EHHADH', 'ACVRL1', 'IL2RB', 'PPOX', 'GLIS3', 'BIRC3', 'ASXL1', 'CIITA', 'WIPF1', 'CLCN7', 'CFHR3', 'CFHR1', 'NSUN3', 'FH', 'CA12', 'MRPS23', 'TYMS', 'SCYL1', 'STING1', 'CPOX', 'TERC', 'SLC35A1', 'TPP2', 'UQCC2', 'RPL5', 'IL6', 'RPS24', 'MSMO1', 'TPM4', 'RPL11', 'ELMO2', 'SUCLG1', 'PAX4', 'CASP8', 'SOCS1', 'CYCS', 'PSMG2', 'FSHR', 'ITCH', 'RPS10', 'DPM2', 'LRPPRC', 'NFKB2', 'MLYCD', 'RPS17', 'RPL15', 'PDSS1', 'OTULIN', 'SLC10A1', 'SLC25A21', 'ARG1', 'CD70', 'NPHP3', 'COX6B1', 'COA6', 'POLRMT', 'SLC25A10', 'ENG', 'NAE1', 'RPL35A', 'DLL4', 'CYBC1', 'SC5D', 'RPS7', 'RASGRP1', 'HACE1', 'CTC1', 'COG2', 'B2M', 'PPARG', 'ELF4', 'CCND1', 'SEC63', 'ANKS6', 'EPHB4', 'ACVR1', 'MC4R', 'ALPK1', 'TCF4', 'AVP', 'STX3', 'STT3B', 'BCL10', 'SCNN1A', 'DMP1', 'ACACA', 'STIM1', 'SMC5', 'SCNN1B', 'TINF2', 'DSG1', 'NOTCH1', 'SCNN1G', 'P2RY12', 'MT-TV', 'AGK', 'GHSR', 'CSF2RA', 'SLC19A2', 'RPS29', 'PRIM1', 'SLC12A1', 'SCN11A', 'MPC1', 'CYP2C9', 'HIBCH', 'CFI', 'SLC25A19', 'NDUFB9', 'MOGS', 'TBX19', 'EDNRA', 'HPD', 'EPHB2', 'PLAU', 'HNF1A', 'BACH2', 'MRPS14', 'PALB2', 'PEX14', 'CRIPT', 'FLI1', 'COX15', 'WNT2B', 'RPS26', 'RPL26', 'SLC39A7', 'CPT2', 'CTNS', 'RNASEH2A', 'THRA', 'HPGD', 'PSMB8', 'SERPINF2', 'PLD1', 'MYCN', 'FGG', 'FGB', 'SCN10A', 'CREB3L3', 'GOT2', 'KCNJ1', 'ALG3', 'LYRM7', 'MYSM1', 'TNFRSF11A', 'ANO6', 'LDHA', 'SERPINE1', 'CFH', 'WRN', 'STN1', 'NHERF1', 'KARS1', 'YIPF5', 'PCSK1', 'ETFA', 'ETFDH', 'ETFB', 'SLC34A3', 'CARD11', 'ARFGEF2', 'ATPAF2', 'DPM1', 'IFNG', 'ADCY10', 'SLC25A26', 'BRCA1', 'ACADS', 'PTF1A', 'WAS', 'COQ9', 'POMC', 'IFIH1', 'DIAPH1', 'SEC61A1', 'HRG', 'PLA2G7', 'SUCLA2', 'CYP3A4', 'AP1S1', 'GK', 'LEMD2', 'NOS3', 'NDUFB10', 'FARS2', 'NDUFS4', 'MYD88', 'RPL13', 'PMM2', 'NDUFV1', 'NPHP4', 'TSFM', 'SLCO1B1', 'SLCO1B3', 'BCL6', 'BCL2', 'INS', 'RIT1', 'MET', 'CASP10', 'PSMC1', 'PLA2G4A', 'BCAP31', 'PROS1', 'MCM10', 'TARS2', 'TRAF3IP1', 'ETHE1', 'CD3E', 'NFKBIA', 'INVS', 'WNK1', 'NFU1', 'ATP5F1A', 'GP6', 'XPR1', 'RPS28', 'TP53', 'AGR2', 'ALAD', 'HELLS', 'SLC10A2', 'NDUFAF8', 'CYP24A1', 'NHEJ1', 'VPS33A', 'DMGDH', 'NDUFS3', 'CD247', 'BLK', 'IL12B', 'OGDH', 'HOXA11', 'IKZF5', 'AKT2', 'HEATR3', 'TNFRSF9', 'SMARCAL1', 'AQP2', 'CEL', 'ZNF668', 'REN', 'CYB5R3', 'C1QBP', 'GBA1', 'JAK3', 'FOS', 'TBXA2R', 'PHLDB1', 'FASLG', 'ANKRD55', 'PTPN2', 'SLFN14', 'LPIN1', 'GFI1', 'CEBPE', 'MRPS22', 'RPS19', 'MMACHC', 'MRPL12', 'IDH2', 'SRD5A3', 'NDUFAF4', 'KLF11', 'ABCC6', 'HAGH', 'NDUFA11', 'DNMT3B', 'AGPS', 'POU6F2', 'PDGFRA', 'SQOR', 'SMAD4', 'IRF4', 'DYRK1B', 'GCM2', 'SLC16A1', 'GTPBP3', 'ESR1', 'ISCA1', 'CDC40', 'NEUROD1', 'IL2RA', 'SAA1', 'ATP5F1B', 'NSMCE3', 'OBSCN', 'ADAR', 'BCKDHA', 'PEX2', 'TULP3', 'NCF4', 'NDUFB3', 'ZFP57', 'TMEM67', 'AGPAT2', 'ZNF699', 'NCF2', 'HSD17B4', 'NDUFS7', 'NDUFA9', 'CIDEC', 'P4HA2', 'LRRC8A', 'KIF3B', 'NDUFA8', 'MEF2A', 'AP3B1', 'CD3G', 'SLF2', 'PDX1', 'PAPPA2', 'COX20', 'NDUFA4', 'FBXL4', 'IL2RG', 'MCFD2', 'CYBA', 'LIAS', 'PDP1', 'PITRM1', 'TMEM126B', 'DBH', 'NGLY1', 'SOS2', 'AUH', 'ADA2', 'GPX1', 'ALG12', 'APPL1', 'RPL9', 'RPL8', 'RPL31', 'SLC39A8', 'NLRP1', 'COX4I1', 'XDH', 'FUT8', 'FCGR2B', 'DNASE1', 'EPAS1', 'POMP', 'ARF1', 'GCDH', 'PMPCB', 'F7', 'APRT', 'ALDH2', 'SLC12A3', 'SLC29A3', 'TRPV6', 'KNG1', 'DDRGK1', 'ENPP1', 'GNA14', 'SAMHD1', 'ARHGAP31', 'PPP1R17', 'APOA2', 'EPHX2', 'ANTXR2', 'NDUFS6', 'MBTPS1', 'RRM2B', 'ADAMTS19', 'POLD1', 'MYBPC3', 'CSF2RB', 'SAT1', 'AGL', 'SLC39A4', 'CEP83', 'NPHS1', 'CISD2', 'GCK', 'CDKN2A', 'ANO1', 'SASH3', 'BRCA2', 'TMEM70', 'RBPJ', 'HSPA9', 'NDUFS1', 'HLA-B', 'DPP9', 'DOLK', 'CREB3L1', 'KLHL3', 'SEC23B', 'SGSH', 'EOGT', 'RRAS2', 'AK1', 'NLRP3', 'MT-TK', 'NDUFA10', 'STAT3', 'GNMT', 'PRLR', 'NADK2', 'IL21', 'SLC25A4', 'IKBKB', 'C1QB', 'CYP2A6', 'RPGRIP1L', 'MUC1', 'MT-ND3', 'COG1', 'JAM2', 'IRAK1', 'SPP1', 'IGLL1', 'COX8A', 'LIPT2', 'GUCY1A1', 'NDUFA6', 'GCGR', 'NDUFS2', 'KIF1B', 'PRG4', 'SOS1', 'NDUFA13', 'IKZF3', 'MT-ND2', 'SPI1', 'MRAS', 'HLA-DQB1', 'TNFRSF11B', 'MT-TT', 'NLRP12', 'MEFV', 'RNASEH2C', 'NDUFV2', 'ESR2', 'SLC3A1', 'TSR2', 'LBR', 'HPS6', 'CARD9', 'HNRNPA2B1', 'FCHO1', 'CNOT1', 'CDCA7', 'DUT', 'ALG11', 'PEX13', 'CLPX', 'TIMMDC1', 'BTK', 'DKC1', 'TANGO2', 'F8', 'ADAMTSL2', 'AFP', 'CD79A', 'PNP', 'RNASEH2B', 'MT-TW', 'PEX12', 'NT5E', 'HGD', 'SRP72', 'NOD2', 'PIGA', 'LTC4S', 'STK11', 'RORC', 'ERBB2', 'TNFAIP3', 'PPA2', 'ALMS1', 'UPB1', 'CD109', 'ITGA2', 'PEX16', 'BLNK', 'GANAB', 'STAT6', 'NAB2', 'TNNI3', 'HYOU1', 'ACVR2B', 'LSM11', 'BLOC1S6', 'EGLN1', 'IGFBP7', 'CD79B', 'KCNJ16', 'GUCY2C', 'CACNA1S', 'PLIN1', 'CYP11B2', 'BCL11A', 'NUBPL', 'VPS51', 'STAT4', 'FCGR3B', 'FDFT1', 'ATM', 'PDLIM4', 'CALCR', 'MLX', 'NDUFAF3', 'SLC5A2', 'HNF1B', 'COQ4', 'TSHB', 'MPDU1', 'ZNF687', 'NCKAP1L', 'NDUFAF6', 'GEMIN4', 'PKD2', 'BMP2', 'ANAPC1', 'HPS4', 'COG5', 'TNNT2', 'MAD2L2', 'MT-ND4', 'TRPC6', 'REST', 'VDR', 'IGF1', 'XRCC4', 'GSR', 'LIPE', 'GDF1', 'AASS', 'SCO2', 'F10', 'PREPL', 'PEX26', 'PNPLA8', 'NDUFAF5', 'AARS2', 'NUP205', 'NDUFS8', 'BCR', 'MT-CO1', 'PHEX', 'KCNJ11', 'NCAPG2', 'MT-TS1', 'IGHM', 'AMPD1', 'GLA', 'CYP11A1', 'CDC73', 'MTX2', 'SMAD6', 'OXCT1', 'PBX1', 'HYMAI', 'PDHX', 'GHRL', 'SDC3', 'ADRB3', 'UCP3', 'AGRP', 'NR0B2', 'CARTPT', 'GNPAT', 'NPHS2', 'GLYCTK', 'ITGAM', 'TNIP1', 'ETS1', 'IGHG1', 'UBE2L3', 'PXK', 'BANK1', 'JAZF1', 'GNPTG', 'WFS1', 'PAX2', 'SLC35C1', 'UBE2T', 'MT-TC', 'COQ2', 'MYORG', 'EDNRB', 'PRSS12', 'HTRA2', 'SERPINC1', 'DPAGT1', 'GDNF', 'GNE', 'NDUFAF2', 'BMPR1A', 'SSR4', 'NPPA', 'MAGI2', 'TTC7A', 'ANGPTL3', 'PPCS', 'PSAP', 'PTH1R', 'BRIP1', 'MT-ND6', 'CTNNBL1', 'ZBTB24', 'NRXN1', 'MT-CO3', 'BMPR2', 'RB1', 'THSD1', 'OCRL', 'GGCX', 'PEX19', 'SLC25A36', 'SLC20A2', 'ABCC8', 'MCM6', 'TNFRSF1A', 'GATA6', 'FOXRED1', 'MT-TI', 'F9', 'PDHB', 'ALG13', 'NUP93', 'OAS1', 'TBL1XR1', 'NFE2L2', 'ECE1', 'ATRX', 'HPS3', 'RFWD3', 'UBA2', 'VARS2', 'C4B', 'RELB', 'DPM3', 'RRAS', 'RASA2', 'MT-ND5', 'EMP2', 'PTPRO', 'DUOXA2', 'LHX1', 'KCNE1', 'ARMC5', 'SUOX', 'CYBB', 'PTPN22', 'TAPT1', 'HS3ST6', 'MT-CO2', 'COX6A2', 'IYD', 'FAS', 'YY1AP1', 'NAGLU', 'PNLIP', 'ABCB6', 'RRAGD', 'TTC21B', 'FANCE', 'CARS2', 'FANCA', 'CCDC134', 'PEX11B', 'FANCC', 'MGAT2', 'CHRNA3', 'PLOD2', 'VPS13A', 'HEXB', 'COPB2', 'RIGI', 'KYNU', 'RBM8A', 'SMAD2', 'ABCB7', 'SLC25A42', 'GREM1', 'TLL1', 'NUP160', 'ANLN', 'VHL', 'BMS1', 'NEU1', 'SLC5A5', 'TTR', 'MT-TL1', 'TREX1', 'FASTKD2', 'MTHFR', 'MMP1', 'SETX', 'CLCNKB', 'BSND', 'C4A', 'MYLK', 'SRP19', 'EGFR', 'WNK4', 'CAV1', 'NDUFA12', 'LIG4', 'CCDC47', 'ARSB', 'MOCS1', 'ACOX1', 'ECHS1', 'SPRED2', 'CENPT', 'LAMC2', 'MT-TF', 'SLX4', 'RARS2', 'CIROP', 'MT-TQ', 'POLG', 'GH1', 'SIK3', 'DCXR', 'PLOD3', 'BANF1', 'KIAA0319L', 'SECISBP2', 'TLR7', 'MT-ND1', 'CCDC32', 'TPO', 'MED17', 'NUP214', 'LZTR1', 'IREB2', 'NKX2-6', 'NBAS', 'DAAM2', 'PLCE1', 'FANCF', 'RPS20', 'MAP2K1', 'PIGH', 'BOLA3', 'KL', 'RECQL', 'COX11', 'GGPS1', 'NOTCH2', 'FUCA1', 'NARS2', 'HSD17B10', 'ATP11C', 'TXNRD2', 'GLUD1', 'MMP14', 'HPS5', 'PDCD1', 'SMAD3', 'CEP19', 'SERPIND1', 'GALNT2', 'GINS1', 'SPRTN', 'DNASE1L3', 'THRB', 'FANCD2', 'CACNA1D', 'H19', 'IFT122', 'EPCAM', 'CD59', 'MYO1E', 'PET117', 'DIS3L2', 'NRTN', 'SEMA3C', 'SEMA3D', 'MRPS34', 'MT-CYB', 'CBFB', 'GFER', 'TMTC3', 'LAMB3', 'IRAK4', 'SLC31A1', 'TBC1D8B', 'DHCR24', 'FANCI', 'CYP27A1', 'POU1F1', 'HLA-DRB1', 'TSHR', 'MBL2', 'DUOX2', 'PEX3', 'PNPT1', 'NAXD', 'TRAPPC11', 'ALG2', 'PRKAG2', 'FANCG', 'AP2S1', 'SPARC', 'UCP2', 'GPR161', 'IDH1', 'IL6ST', 'PHF21A', 'BMP1', 'PRORP', 'JPH2', 'ACTG2', 'TG', 'NNT', 'CAV3', 'RARB', 'PLG', 'PTPN11', 'STAR', 'ATP5F1D', 'FANCL', 'TAOK1', 'DOCK6', 'STRA6', 'FKBP10', 'MUC5B', 'SFTPA2', 'RASGRP2', 'HMBS', 'DDC', 'MDH2', 'TBL1X', 'BBS12', 'RMRP', 'COQ8B', 'ARHGDIA', 'GP1BB', 'TRIM37', 'TERT', 'UBA1', 'TUBB1', 'NPR2', 'MT-TP', 'YME1L1', 'RASA1', 'KIF15', 'TNFRSF1B', 'CD28', 'FANCM', 'PIK3CD', 'MRAP', 'COQ7', 'DCLRE1B', 'CXCR4', 'TAFAZZIN', 'ERCC4', 'NOS1', 'LRP6', 'MT-TH', 'BAG5', 'STX16', 'TRPM7', 'PIGC', 'JAG1', 'DSG2', 'HK1', 'LAMA3', 'PLOD1', 'ALDH6A1', 'ADCY3', 'CEP164', 'CRAT', 'GET4', 'CLDN16', 'CTLA4', 'SERPING1', 'PPM1B', 'CAMKMT', 'BNC1', 'MT-TS2', 'LMOD2', 'TICAM1', 'TWNK', 'INF2', 'LEMD3', 'BTD', 'POLR3K', 'ATP7A', 'FCGR2C', 'SNIP1', 'DNAJC3', 'NUP37', 'USP8', 'GATA5', 'PEX10', 'LCP2', 'ATP5F1E', 'DTYMK', 'RAD51C', 'IER3IP1', 'IFT172', 'FAM111B', 'LTBP4', 'PRKG1', 'IL10', 'PRKACA', 'ZCCHC8', 'GGT1', 'FOXP1', 'IRX5', 'ATAD3A', 'UQCRQ', 'CXCR2', 'XRCC2', 'SDHA', 'GLB1', 'FN1', 'TXN2', 'INSR', 'COL4A5', 'NDUFC2', 'INPP5E', 'OTUD5', 'NDUFA1', 'NPHP1', 'GUSB', 'DYNC2LI1', 'MC2R', 'TRIM28', 'LHX4', 'TAB2', 'ERCC8', 'ERMARD', 'MAN2B1', 'WDPCP', 'GNPTAB', 'LMF1', 'CLCN2', 'CNTN1', 'RAD51', 'CDKN1B', 'KCNQ1', 'WNT1', 'BBIP1', 'ZBTB7A', 'RPA1', 'CCN6', 'IFT140', 'CLCNKA', 'MAGT1', 'FLAD1', 'GPHN', 'BMP15', 'COL7A1', 'CC2D2A', 'CASK', 'LRP5', 'SFTPC', 'WARS2', 'NKX2-5', 'MAPK8IP1', 'RETN', 'MTNR1B', 'SLC30A8', 'PPP1R3A', 'IGF2BP2', 'IRS2', 'HMGA1', 'TCF7L2', 'GPD2', 'PTPN1', 'IRS1', 'TGFB2', 'PTPN3', 'BBS5', 'SLC34A2', 'SOD1', 'PRKAR1A', 'BBS7', 'ATP5MK', 'HIKESHI', 'DTNBP1', 'RBM20', 'PIK3R5', 'ADAMTS3', 'ARL6IP6', 'VPS4A', 'GATAD1', 'BBS10', 'TRHR', 'CFC1', 'MFAP5', 'PSMC3IP', 'CYP21A2', 'P3H1', 'SHOC2', 'GNAS', 'MADD', 'TYROBP', 'CPSF3', 'TRDN', 'PGM3', 'SCN5A', 'PTRH2', 'TGFB3', 'CRB2', 'DYNC2I1', 'GTF2H5', 'ITGA3', 'ADAMTS2', 'TNFSF4', 'STT3A', 'COQ8A', 'CCBE1', 'PAX8', 'RETREG1', 'SDCCAG8', 'ENO3', 'RYR1', 'RNF213', 'CARD10', 'ACAT2', 'HNRNPA1', 'TIMM50', 'MAT1A', 'TLR3', 'ZIC3', 'UFSP2', 'WDR35', 'LAMA5', 'EDN3', 'LINS1', 'LBX1', 'CHEK2', 'SPIDR', 'BBS4', 'HSPD1', 'MYH11', 'HSD11B1', 'PHGDH', 'SGCD', 'AGA', 'XYLT2', 'KPTN', 'PEX6', 'ACTA2', 'NSF', 'PKD1', 'KCNJ5', 'STX1A', 'PROP1', 'C18orf32', 'EMG1', 'KRAS', 'POT1', 'NSUN2', 'RAF1', 'TOP3A', 'NEDD4L', 'BBS9', 'ATP6V0A1', 'MYL3', 'POC1A', 'PLN', 'COL5A2', 'DEGS1', 'UNC93B1', 'GALNS', 'GFM2', 'ARHGEF1', 'DIO1', 'NCAPH', 'SCN2B', 'COL1A2', 'COL1A1', 'MMP21', 'RNF168', 'AFG2A', 'ATP6AP2', 'CELSR1', 'TDP1', 'TGFBR1', 'ALG9', 'MTAP', 'VEZF1', 'CSRP3', 'PROC', 'NBN', 'MKKS', 'MIA3', 'ZBTB20', 'EPG5', 'CASQ2', 'CCR1', 'IL12A-AS1', 'ERAP1', 'TLR4', 'UBAC2', 'IL23R', 'KLRC4', 'MOCS2', 'ADAM17', 'GNAS-AS1', 'TCAP', 'SLC2A9', 'DES', 'ROBO4', 'NOS1AP', 'SLC39A13', 'NCF1', 'MT-ATP6', 'SIL1', 'ZPR1', 'COL4A3', 'EN1', 'TMEM38B', 'SH3BP2', 'TGFBR2', 'LAMA4', 'TNNC2', 'IL6R', 'SH2B1', 'TRAF3', 'NUP85', 'GPAA1', 'LHX3', 'IBA57', 'KRIT1', 'FAT4', 'COMT', 'PDHA1', 'TKT', 'PPIL1', 'DMPK', 'RPL3L', 'IFITM5', 'THSD4', 'PRDM16', 'MYL2', 'ACP5', 'FCSK', 'ZSWIM7', 'GOLGA2', 'DNM1L', 'TBX20', 'FKBP14', 'PIK3R1', 'PIGT', 'P4HB', 'VPS11', 'APTX', 'PEX5', 'DCHS1', 'TPK1', 'CITED2', 'ELP1', 'LOX', 'WT1', 'ITGB2', 'ERCC6', 'GHR', 'VPS53', 'IFT27', 'HMGA2', 'AVPR2', 'CTCF', 'SDHC', 'MYL4', 'SCN3B', 'PIGB', 'NR3C1', 'FLNC', 'SDHD', 'RNF125', 'KCNE2', 'HPDL', 'ITPR2', 'SLC25A11', 'IGHMBP2', 'SPINK5', 'PLAGL1', 'PTCD3', 'AMPD2', 'MYPN', 'PPFIBP1', 'MCM9', 'AIRE', 'CYP17A1', 'NRAS', 'LIG1', 'KCNE3', 'KLHDC8B', 'MYRF', 'TRPM4', 'TRIP13', 'TNNC1', 'H4C3', 'BSCL2', 'ST3GAL5', 'PLAG1', 'DNAJB11', 'SCN4B', 'CRLF1', 'SLC30A9', 'IGKC', 'NTRK1', 'DOHH', 'FOXF1', 'SCLT1', 'CD2AP', 'CHD7', 'DMD', 'PDGFRL', 'DLAT', 'PIGK', 'NCAPD2', 'GLI1', 'MED12', 'KMT5B', 'ADAMTS10', 'ITPR3', 'DLST', 'RARS1', 'NKX3-2', 'CDK5', 'SGPL1', 'GNB2', 'SLC2A1', 'MICU1', 'VCL', 'IL17RD', 'FBP2', 'TECTA', 'KDELR2', 'DHCR7', 'ABCA12', 'GAPVD1', 'ARHGAP24', 'ANKFY1', 'EXT2', 'IL1R1', 'ARL6', 'CALM3', 'OSGEP', 'CYB5A', 'PRPH', 'HIVEP2', 'PIK3C2A', 'LZTFL1', 'TDP2', 'SREBF1', 'SOST', 'CACNB2', 'PKP2', 'NUP155', 'SLC36A2', 'LMNB2', 'MSH4', 'MAP1B', 'HESX1', 'POLR2A', 'HAL', 'CIC', 'CD40', 'MNS1', 'GPD1L', 'HNRNPH1', 'TFE3', 'MAX', 'TMEM127', 'PRDM5', 'PLPBP', 'KCNA5', 'FLT4', 'EXOSC8', 'CST3', 'ANK2', 'MTFMT', 'CARD8', 'BUB1B', 'HTR1A', 'DSC2', 'DNM2', 'RIN2', 'PLEKHG5', 'ALG5', 'AKAP9', 'NEXN', 'CHRM3', 'SFRP4', 'KDM6A', 'KRT13', 'IPO8', 'MYH6', 'BLM', 'LETM1', 'KCNH2', 'APOL1', 'EPX', 'TENT5A', 'IQCB1', 'PYGM', 'BBS1', 'BCOR', 'TRAPPC2', 'NUP107', 'PARS2', 'SLC4A3', 'TBX1', 'KCNJ18', 'EXOSC3', 'TNNI3K', 'AMPD3', 'RREB1', 'ARVCF', 'UFD1', 'JMJD1C', 'HIRA', 'SEC24C', 'AGO2', 'GNA11', 'COL5A1', 'KISS1R', 'GRIA4', 'CD244', 'NFKBIL1', 'SLC22A4', 'SCAPER', 'TRIM32', 'NAT2', 'CES1', 'JPH1', 'CFAP418', 'ARCN1', 'INPPL1', 'FNIP1', 'MLIP', 'KCNK3', 'DZIP1', 'AP3D1', 'BICC1', 'ALPK3', 'CDKN2C', 'CDKN1A', 'PMS2', 'SNTA1', 'TPM1', 'SLC35A2', 'SARDH', 'ACTC1', 'MAPKAPK5', 'CD96', 'ABCA3', 'B4GALT7', 'DPP6', 'NPR3', 'NAGA', 'MSH2', 'CCM2', 'AICDA', 'NUDT2', 'ITGB4', 'NACC1', 'PEX1', 'ALDH7A1', 'ALDH1A2', 'CDKN1C', 'SDHAF2', 'CHST3', 'SDHB', 'ASXL2', 'DOCK8', 'ANKH', 'TRH', 'FBN2', 'ZNF341', 'CRLS1', 'SNORD116-1', 'NPAP1', '-', 'PWRN1', 'PWAR1', 'SNORD115-1', 'IPW', 'FANCB', 'MANBA', 'H3-3B', 'DYNC2I2', 'PEX7', 'CALCRL', 'SLC7A9', 'PTPN14', 'SOX18', 'MPEG1', 'CTSK', 'GET3', 'JAM3', 'IFT80', 'RNF13', 'PTH', 'FBXW7', 'CCDC28B', 'LYSET', 'LGI3', 'GTF2E2', 'PYCR1', 'ZNF469', 'STK4', 'C9orf72', 'DCTN1', 'ANGPT1', 'SEC31A', 'IDUA', 'HS6ST2', 'KRT10', 'TIE1', 'TAF13', 'FKBP6', 'HABP2', 'ATP6V1B1', 'EIF5A', 'TRIT1', 'RBM10', 'PKD1L1', 'ABCD1', 'MMP13', 'GALC', 'NAXE', 'KCNJ10', 'TBX2', 'DYM', 'PIGS', 'WDR19', 'ZNF335', 'VEGFC', 'FGFRL1', '-', 'KRT6B', 'AIMP1', 'MB', 'NCAPD3', 'TXNDC15', 'POLE', 'MYO1H', 'CALM2', 'MSH6', 'EPRS1', 'CYP2D6', 'PIGU', 'PGR', 'SLC2A10', 'RET', 'SPR', 'PDCD10', 'HACD1', 'STAG1', 'TUBA4A', 'CALM1', 'CARS1', 'PIGG', 'TTC8', 'FOXN1', 'WDR4', 'DNAJC30', 'HERC2', 'TFG', 'CFAP53', 'SPPL2A', 'ATPAF1', 'LRSAM1', 'MKRN3', 'TRIP11', 'HCN4', 'RNU4ATAC', 'SLC26A4', 'IFT74', 'ASPA', 'BGN', 'CSPP1', 'MUTYH', 'SUMF1', 'TMEM260', 'PMS1', 'TIA1', 'LIMS2', 'UNC80', 'AGTPBP1', 'SHOX', 'RNF2', 'BBS2', 'PLXND1', 'NEFH', 'ALDH4A1', 'RYR2', 'NAT8L', 'GUF1', 'TOR1A', 'ARPC4', 'NHLH2', 'CORO1A', 'TNPO2', 'TSPAN12', 'CSNK2A1', 'NR2F2', 'ESCO2', 'HPRT1', 'FHOD3', 'NGF', 'GORAB', 'KMT2E', 'TAC3', 'MT-TE', 'GNS', 'CDKN2B', 'PSPH', 'SPTBN4', 'CDC42', 'GLE1', 'USP48', 'SP7', 'SFTPB', 'ACVR1B', 'CFAP45', 'LMNA', 'BPTF', 'IL17F', 'FERMT1', 'MYL11', 'LONP1', 'FOXA2', 'RNF43', 'ACTN2', 'MATR3', 'MLXIPL', 'C19orf12', 'LMOD1', 'ALG10B', 'CNNM2', 'NAA20', 'PDGFRB', 'TARS1', 'UFM1', 'VRK1', 'TNF', 'PLIN4', 'FLRT3', 'DNAL1', 'MCM5', 'CRYBB3', 'ENAM', 'CEACAM16', 'VPS37D', 'GTF2IRD1', 'BCL7B', 'BAZ1B', 'GTF2I', 'LIMK1', 'TMEM270', 'EIF4H', 'METTL27', 'CLIP2', 'BUD23', 'TBL2', 'GTF2IRD2', 'RFC2', 'ELMOD3', 'HLA-DPA1', 'PRTN3', 'PCGF2', 'MYLK2', 'ATP9A', 'DNAJB4', 'MMP2', 'FAN1', 'FTO', 'KRT4', 'HNMT', 'APOC3', 'C5', 'CARMIL2', 'PRKACB', 'SCN9A', 'SLC12A5', 'IL10RA', 'CTBP1', 'CLEC7A', 'COL3A1', 'CPN1', 'NAA15', 'ITGA7', 'PDE11A', 'PACS2', 'NSMF', 'SKI', 'CTPS1', 'IDS', 'GNRHR', 'MEN1', 'KRT2', 'ABCC9', 'KISS1', 'PHYH', 'TUBA8', 'KLHL24', 'EYA4', '-', 'HPS1', 'MGME1', 'MAT2A', 'HEY2', 'AFF3', 'KRT1', 'TARDBP', 'TNXB', 'MKS1', 'CENATAC', 'NFASC', 'EVC', 'EVC2', 'WNT7B', 'RANBP2', 'MYL9', 'CEP57', 'STRADA', 'CNBP', 'MLH1', 'OPTN', 'UBTF', 'INPP5K', 'LEPR', 'ARL13B', 'CEP290', 'BUB1', 'WDR11', 'P4HTM', 'PAH', 'DTNA', 'BCO1', 'ELN', 'TECRL', 'IL17RA', 'CTDP1', 'PFN1', 'AEBP1', 'GATA4', 'PGAM2', 'PROK2', 'MYH8', 'UNG', 'PROKR2', 'SLC1A3', 'AIP', 'NSD2', 'VPS37A', 'PCNT', 'CRTAP', 'LEP', 'PAM16', 'TBCE', 'KRT5', 'RAD54L', 'IKBKG', 'MITF', 'ITPA', 'UBE3C', 'PSAT1', 'SLC44A1', 'SOX3', 'MLH3', 'TMEM43', 'POLR3H', 'KRT14', 'NFIA', 'BVES', 'MYOF', 'GYS1', 'TBX6', 'TMC1', 'BFSP1', 'ACO2', 'ANG', 'RBP4', 'RAB33B', 'NUP133', 'ATXN7', 'KCNQ1OT1', 'PDE3A', 'CTNNB1', 'PICALM', 'SH3GL1', 'LPP', 'MLLT10', 'CEBPA', 'CHIC2', 'TBX4', 'SYNE2', 'C2', 'TBK1', 'EPM2A', 'NDN', 'TBXT', 'GRB10', 'COCH', 'TRMT10A', 'CFAP43', 'EGR2', 'CCDC8', 'OTUD6B', 'ATP6V1E1', 'DYNC2H1', 'SLC1A1', 'KCNA4', 'ARHGAP26', 'PIGF', 'DUSP6', 'SPRY4', 'FGF17', 'SLC38A3', 'SEC24D', 'SHQ1', 'PGAP1', 'MYH2', 'GPC3', 'SULT2B1', 'BAG3', 'RECQL4', 'FLT3', 'FOXE3', 'PLCD1', 'SLC6A5', 'RYR3', 'MAP2K2', 'PDE10A', 'NDUFB11', 'PNPLA1', 'ABAT', 'PCBD1', 'SDR9C7', 'ARSK', 'ADCY5', 'GABRA2', 'SQSTM1', 'QDPR', 'CLCF1', 'B3GAT3', 'KRT6A', 'MDFIC', 'CLCN5', 'FHL1', 'CHCHD10', 'PLEC', 'PPM1K', 'SERPINH1', 'EFEMP2', 'TK2', 'HSPG2', 'MYL1', 'LAMTOR2', 'SLC22A18', 'ANXA11', 'RAD50', 'DCAF17', 'PRDM6', 'TRU-TCA1-1', 'FOXE1', 'IL31RA', 'PRKCZ', 'KCNAB2', 'PDPN', 'MMP23B', 'LUZP1', 'UBE4B', 'CASZ1', 'PTEN', 'ALDH5A1', 'FBLN5', 'DST', 'LINGO1', 'KIAA0586', 'GNRH1', 'DLX3', 'NFATC2', 'GSX2', 'PTS', 'MYOZ2', 'MTRFR', 'DSP', 'IL17RC', 'MTHFS', 'FBN1', 'MED23', 'STAMBP', 'SPG7', 'COPA', 'HPCA', 'BLOC1S5', 'IGF2', 'SLC35D1', 'MYO6', 'FXN', 'TUBB8', 'GABRA3', 'PSMD12', 'LIFR', 'GFAP', 'GJB3', 'MOG', 'USP7', 'CD320', 'HEPACAM', 'ANGPT2', 'PIBF1', 'TBX5', 'PLCB1', 'KY', 'DALRD3', 'HAX1', 'RNPC3', 'BMPER', 'ARSA', 'CCNF', 'SLC12A2', 'RXYLT1', 'GALNT3', 'CYP4F22', 'CPLX1', 'MARS2', 'TREM2', 'SLC6A3', 'TRAF3IP2', 'CCDC78', 'TRAPPC4', 'LDB3', 'PLAA', 'CLCN1', 'ERBB4', 'CIT', 'TLK2', 'CLN3', 'HTRA1', 'MAFA', 'PTPRQ', 'CD4', 'INAVA', 'RAD54B', 'POPDC3', 'ARHGEF10', 'ABCA2', 'FBXW11', 'MEGF10', 'MRPS25', 'CENPJ', 'MCOLN1', 'ANO5', 'LTBP2', 'MT-ATP8', 'MYH7', 'LDHD', 'CHD3', 'GRIA1', 'RNASEH1', 'DSE', 'GABRD', 'RAB23', 'GIGYF2', 'ACADSB', 'SPTBN1', 'STIL', 'BRAF', 'CHCHD2', 'LTBP3', 'EXOSC9', 'ATP6V0A2', 'TACR3', 'SLC30A2', 'HS6ST1', 'MECP2', 'HSD3B2', 'CCDC88A', 'NSRP1', 'ATP11A', 'ATP13A3', 'MTOR', 'NEK9', 'CERS3', 'MYMK', 'LAMB2', 'EGF', 'AGTR1', 'AGT', 'ALDH18A1', 'TRIP4', 'DHDDS', 'MAGEL2', 'KLHL7', 'PTDSS1', 'DLX5', 'TSPYL1', 'SH3KBP1', 'D2HGDH', 'PMPCA', 'TOR1AIP1', 'UNC45B', 'SPRED1', 'SNX14', 'LAMA2', 'GLMN', 'CFAP52', 'SPINT2', 'PABPN1', 'TRPM6', 'ASCL1', 'POMGNT2', 'FLNA', 'PPP1CB', 'POLR1D', 'DNMT3A', 'TTPA', 'MPLKIP', 'GPT2', 'B3GALT6', 'PLCH1', 'TCF12', 'QRICH1', 'HLA-DPB1', 'HPSE2', 'CHST14', 'NIPAL4', 'NEK10', 'UVSSA', 'CACNA1C', 'FXYD2', 'GYG1', 'MNX1', 'POLR3F', 'FAM20C', 'FLCN', 'COA3', 'PRX', 'KRT17', 'COL17A1', 'PRODH', 'NUAK2', 'PGK1', 'FRG1', 'CPA6', 'HHAT', 'KNSTRN', 'PIGY', 'PPIB', 'GLRA1', 'AGXT2', 'TRMT1', 'C1S', 'RHOH', 'COL4A2', 'SH3TC2', 'SLC35B2', 'COL6A1', 'PRDX3', 'TBR1', 'PHYKPL', 'OGDHL', 'IVNS1ABP', 'VPS35', 'COL4A1', 'POLR1B', 'CDH23', 'COL4A4', 'ALX4', 'TRAPPC2L', 'NUP62', 'LMAN2L', 'SFTPA1', 'CFAP410', 'MIEF2', 'EPB41L1', 'ZFHX2', 'XYLT1', 'CAPN3', 'KBTBD13', 'PNKP', 'SGCG', 'COLQ', 'REPS1', 'HGSNAT', 'ARSL', 'CRYAB', 'NAA10', 'TUBB6', 'CSF1R', 'SON', 'PPP2R3C', 'SORD', 'ADCY6', 'KMT2C', 'VAPB', 'BUB3', 'CNP', 'SLC4A11', 'NELFA', 'IGF1R', 'FCGR3A', 'WDR26', 'INTU', 'TONSL', 'VCP', 'CRELD1', 'WIPI2', 'TBCK', 'ZMPSTE24', 'XPNPEP3', 'NODAL', 'HNRNPK', 'IFT43', 'SIM1', 'COA5', 'SARS1', 'PIGL', 'CACNA2D1', 'ERCC3', 'GNAI1', 'COA7', 'ASCC1', 'CLCN6', 'MGP', 'RELA', 'AHDC1', 'EIF4G1', 'ERGIC1', 'SNAP29', 'IGSF3', 'KLF6', 'MT-TL2', 'MCPH1', 'SOX10', 'SZT2', 'TNNT1', 'PUS3', 'SGCA', 'CAMLG', 'KIF22', 'EXOC6B', 'CDK8', 'VANGL2', 'OTX2', 'CTNNA3', 'NUS1', 'ACY1', 'SEMA4A', 'EIF2AK4', 'TYK2', 'VPS35L', 'NIPBL', 'HTT', 'PHC1', 'RSPO4', 'PKP1', 'ISG15', 'FIG4', 'ATXN3', 'ANKLE2', 'GNAQ', 'ASNS', 'GJB4', 'PAK1', 'SLC28A1', 'FGF8', 'ERCC2', 'IRF9', 'YIF1B', 'SLC22A12', 'ZNHIT3', 'CDT1', 'NAPB', 'NEPRO', 'RSPRY1', 'PLXNA1', 'SYNJ1', 'DLL3', 'CYFIP2', 'SLC25A12', 'ATP2B2', 'NF1', 'SOX17', 'BAX', 'ANKRD11', 'SVIL', 'DNAAF4', 'PSEN2', 'FZD4', 'SELENON', 'SPRY2', 'RNF170', 'CDON', 'UMOD', 'TBX21', 'TGDS', 'ALOXE3', 'AARS1', 'NECAP1', 'HAAO', 'TRAK1', 'MRTFA', 'DHTKD1', 'ZNRF3', 'AMER1', 'CNKSR2', 'WDR73', 'NADSYN1', 'CASQ1', 'B4GAT1', 'SLC41A1', 'MESP2', 'CLDN10', 'MATN3', 'BLOC1S3', 'MIR140', 'ROBO1', 'CTH', 'GLRA2', 'GNB5', 'PANK2', 'PUS7', 'RAB3GAP1', 'SLC10A7', 'SEMA3A', 'SLC25A46', 'HOXD10', 'HECW2', 'TANC2', 'KCNE5', 'DHPS', 'VPS13B', 'DLK1', 'MEG3', 'RTL1', 'MECR', 'CDC45', 'CDC6', 'FTL', 'OCA2', 'GABRA5', 'CHKB', 'AIMP2', 'SLC16A12', 'ALOX12B', 'SEC23A', 'GNAI2', 'LRRK2', 'PDGFB', 'SH3PXD2B', 'SMAD9', 'CDK4', 'LRP4', 'KCNA2', 'CUL7', 'MBD4', 'CEP135', 'TET3', 'GABRB2', 'FKTN', 'FRMD5', 'COL9A3', 'SLC6A8', 'GRIN2D', 'RIMS2', 'IGFALS', 'NR0B1', 'SLITRK2', 'ARV1', 'FAM149B1', 'FUS', 'PLCG2', 'HR', 'MEOX1', 'IARS2', 'SDHAF1', 'ANTXR1', 'EMILIN1', 'PACS1', 'HCRT', 'RAC3', 'SCN4A', 'KIF1A', 'EXOSC5', 'KDSR', 'PISD', 'CYP26C1', 'PPM1D', 'SLC6A2', 'SCGB3A2', 'MUC7', 'ALOX5', 'CCL11', 'IL13', 'HLA-G', 'CCT5', 'NUTM2B-AS1', 'RELN', 'KCNQ5', 'DPYD', 'SCN1B', 'WDR62', 'GSN', 'FDXR', 'WDFY3', 'METTL5', 'SUPT16H', 'PNPLA6', 'B9D2', 'KCNJ8', 'MASP2', 'TTN', 'ATP2A1', 'DEAF1', 'GLI2', 'TPM3', 'DLL1', 'CCN2', 'CCR6', 'ORC4', 'TMC6', 'FOXC2', 'ACTL6B', 'DNAJB6', 'MOCOS', 'AGBL1', 'HEPHL1', 'CNTNAP2', 'UFC1', 'HNRNPDL', 'WASHC5', 'ANO10', 'IFT52', 'TGM1', 'CENPE', 'SLC6A6', 'DMXL2', 'TGIF1', 'WNT4', 'SLC33A1', 'AFF4', 'DSTYK', 'DNA2', 'B3GLCT', 'CAMK2B', 'OSMR', 'LRIG2', 'LTBP1', 'MIB1', 'VAC14', 'AIFM1', 'MTMR14', 'PPP3CA', 'DCAF8', 'ADH1C', 'SNORA31', 'YWHAG', 'PIGQ', 'SERPINF1', 'CANT1', 'H1-4', 'FOXJ1', 'IFNAR2', 'ACAN', 'COL2A1', 'CD8A', 'RUNX2', 'OBSL1', 'IRF1', 'GSC', 'ADARB1', 'B3GALNT2', 'NOVA2', 'OPA1', 'CEP63', 'POLR1A', 'ADGRE2', 'TH', 'RNU12', 'GOSR2', 'CELF2', 'CHKA', 'ATP5PO', 'PRKG2', 'RERE', 'BARD1', 'KCND3', 'MDM2', 'TMEM106B', 'CDK6', 'AQP4', 'PAPSS2', 'POGLUT1', 'IFNGR2', 'PPP1R15B', 'LARGE1', 'WNT3A', 'KCNJ2', 'ODAD4', 'C8A', 'MFF', 'ORC1', 'RGR', 'H4C9', 'TRAIP', 'HOXD13', 'SPOP', 'TPR', 'EHMT1', 'TRAPPC12', 'DGCR8', 'DGCR6', 'DGCR2', 'ESS2', 'COL10A1', 'ZNF148', 'ZC3H14', 'CYP26B1', 'DDX6', 'SGCB', 'KCNB1', 'GPX4', 'ODAD1', 'CFD', 'IL10RB', 'PSEN1', 'TRAF7', 'SLC12A6', 'GMNN', 'RBBP8', 'PMFBP1', 'TASP1', 'PANX1', 'KRT16', 'ERCC1', 'NEK1', 'FCN3', 'PRKDC', 'HSD17B3', 'GIPC1', 'RPIA', 'C8B', 'SLC26A2', 'DYRK1A', 'RSPO1', 'KCNQ2', 'UBE3B', 'TRIM71', 'ACTG1', 'SASS6', 'SNCAIP', 'SPEN', 'DARS2', 'CRY1', 'TIMELESS', 'ADRB1', 'POMK', 'CPE', 'NCSTN', 'RIPOR2', 'DRD5', 'TSC1', 'CIBAR1', 'TSC2', 'TIAM1', 'COL4A6', 'HOXA1', 'IL7', 'PYROXD1', 'PTPN23', 'NUP188', 'SYNE1', 'DYNLT2B', 'NME5', 'KDM3B', 'FOLR1', 'RNF113A', 'RAD21', 'MT-ND4L', 'MSTN', 'CRADD', 'CACNA1I', 'ACTA1', 'C6', 'TRAPPC14', 'ADAT3', 'SMARCC2', 'TTC12', 'FGF12', 'NRCAM', 'KIAA0753', 'GJA5', 'DNAAF2', 'IGHG2', 'SP6', 'TOGARAM1', 'ASPN', 'LMX1B', 'GLS', 'SETD2', 'MMP9', 'MAP3K20', 'PRPS1', 'KMT2D', 'NTRK2', 'LFNG', 'HCFC1', 'MTMR2', 'HOXA2', 'PPP1R21', 'TBC1D23', 'ACE', 'CAMSAP1', 'MAPK8IP3', 'SCN3A', 'POLR3A', 'ADGRL1', 'MDH1', 'DBR1', 'BRF1', 'CNGA1', 'CDK19', 'SIX3', 'ALKBH8', 'STAC3', 'GLUL', 'RIPPLY2', 'ZFHX4', 'WBP2', 'POU4F3', 'EPS8L2', 'TDRD7', 'LMX1A', 'SERPINB6', 'KHDC3L', 'UROC1', 'ARR3', 'HOMER2', 'GAB1', 'GRAP', 'PJVK', 'OTOA', 'TBL1Y', 'SPNS2', 'SLC26A5', 'GJA3', 'ING1', 'TNFRSF10B', 'GCNT2', 'SIPA1L3', 'CASP14', 'GSDME', 'ADCY1', 'HGF', 'C3orf52', 'TLE6', 'MST1R', 'A2ML1', 'ANXA5', 'TCTN1', 'ZIC2', 'MFN2', 'RILPL1', 'KAT8', 'RNF220', 'HOGA1', 'IRF7', 'ITGA6', 'GDAP1', 'NALCN', 'SYT2', 'ATP6V1A', 'CYP11B1', 'GHRHR', 'POLR1C', 'GAS2L2', 'HAND2', 'TMPO', 'FHL2', 'TAF1A', 'ANKRD1', 'CAP2', 'EXTL3', 'APP', 'NDNF', 'MYOCD', 'GCH1', 'SUN5', 'SLC13A5', 'TMEM107', 'DACT1', 'CHMP2B', 'GUCY2D', 'ORC6', 'MYBPC1', 'SLC5A6', 'CHRND', 'HEXA', 'PITX3', 'KCNK18', 'SMARCC1', 'KDR', 'JPH3', 'SPEF2', 'ATP2B1', 'GZF1', 'GAS8', 'C7', 'PLCB3', 'CLDN9', 'AP3B2', 'TRIM36', 'OFD1', 'PER3', 'AOPEP', 'PIGP', 'DRD4', 'EED', 'FGF20', 'ANK3', 'SOHLH1', 'TOPORS', 'EXT1', 'KLHL40', 'ODAPH', 'SCP2', 'WDR72', 'SLC25A32', 'ODAD2', 'KATNB1', 'CDH15', 'CRYBB1', 'ARNT2', 'FZR1', 'MSTO1', 'FUZ', 'WASF1', 'ACBD5', 'CHRNG', 'NFIX', 'PYCR2', 'CCNO', 'KIF2A', 'CNOT2', 'EDN1', 'SIK1', 'GPC4', 'MPZ', 'HES7', 'PTHLH', 'RDH5', 'SLC6A19', 'KLHL41', 'CCDC103', 'MYH14', 'RAI1', 'JAG2', 'VANGL1', 'GPRC5B', 'SOX5', 'KCNN3', 'TUSC3', 'PIKFYVE', 'MSX2', 'POGZ', 'AMT', 'CAPN5', 'MAP3K7', 'TNRC6A', 'TCOF1', 'JUP', 'CTSB', 'GFPT1', 'SASH1', 'DNAH5', 'HRAS', 'ERCC5', 'ALS2', 'CHST11', 'PRKD1', 'STK36', 'DNAJB13', 'DNAH9', 'GPR68', 'FLII', 'AMTN', 'PRUNE1', 'IMPA1', 'DCPS', 'CCDC141', 'RNF135', 'ATIC', 'C1QA', 'COLGALT1', 'LMNB1', 'BET1', 'TAT', 'SRRM2', 'NME8', 'PDE6G', 'CPLANE1', 'TGFBR3', 'ANGPTL6', 'TAF2', 'RSPH1', 'ASH1L', 'KANSL1', 'ROM1', 'RBP3', 'NEMF', 'TUBB4A', 'GRHL2', 'PER2', 'GFRA1', 'BCL11B', 'FLNB', 'NTHL1', 'LRRC56', 'NLGN4X', 'LMOD3', 'GDF3', 'LITAF', 'TSPOAP1', 'RAPGEF2', 'RAC1', 'CCDC88C', 'GBF1', 'COL11A2', 'BIN1', 'ASPRV1', 'ZEB2', 'DAG1', 'KCNH1', 'PIGV', 'VPS41', 'NDE1', 'TSEN34', 'SPTAN1', 'XRCC3', 'NQO2', 'PHB1', 'RB1CC1', 'HMMR', 'CFAP300', 'L2HGDH', 'PI4KA', 'MXI1', 'COX6A1', 'MCIDAS', 'DNAI2', 'MYH3', 'RTTN', 'RRP7A', 'DCX', 'DDHD2', 'CRYAA', 'SALL1', 'PADI6', 'ATP2C1', 'C9', 'TMIE', 'OSBPL2', 'TMEM132E', 'PLS1', 'CLRN2', 'CRYM', 'SLC17A8', 'PPIP5K2', 'CABP2', 'EPHA10', 'SCD5', 'PRIMPOL', 'MLC1', 'TRPA1', 'FGF5', 'MYO3A', 'UBIAD1', 'TOP6BL', 'EPS8', 'CPSF1', 'PRICKLE3', 'DNAAF1', 'ZNF644', 'SLC39A5', 'BDP1', 'MINAR2', 'DSG3', 'S1PR2', 'ROBO2', 'ACTL9', 'ZP2', 'PLCZ1', 'ACR', 'MARVELD2', 'NLRP5', 'MYO15A', 'ZP3', 'RDX', 'NLRP2', 'ASTL', 'TRIOBP', 'TMEM216', 'RNASEL', 'RSPH4A', 'DPYSL5', 'TPM2', 'RAB5IF', 'KIAA0825', 'CACNA1B', 'FOXD3', 'FGD4', 'ZNF408', 'ANKRD17', 'FLG', 'PCNA', 'FAM83H', 'SCYL2', 'LGR4', 'VPS13D', 'PIP5K1C', 'RSPH9', 'CAMK2A', 'EIF2B1', 'SLC1A2', 'NIN', 'GNB1', 'CYLD', 'GRHPR', 'NECTIN4', 'SETD1A', 'LARP7', 'IFNAR1', 'CACNG2', 'PTGER2', 'YY1', 'EDC3', 'ACTB', 'SNRPN', 'TLR2', 'ITGA8', 'SLC25A22', 'GJC2', 'SPAG1', 'CCDC65', 'DNAAF11', 'CFAP74', 'ZNF711', 'KMT2B', 'DNAI1', 'BRPF1', 'IQCE', 'TRIM2', 'RDH12', 'GPSM2', 'SMC3', 'SYT14', 'PDE8B', 'CCND2', 'H6PD', 'PDE6D', 'TRAPPC10', 'FOXP2', 'EMD', 'TPRN', 'TSHZ1', 'DKK1', 'RSPH3', 'COL12A1', 'PIK3R2', 'TELO2', 'PCLO', 'IRF3', 'KIRREL1', 'DNAAF3', 'IHH', 'NRROS', 'BICRA', 'TBX3', 'DDX3X', 'NHLRC1', 'AMHR2', 'AMH', 'SNRPB', 'CENPF', 'CSGALNACT1', 'DCC', 'CEP250', 'KRT3', 'FIBP', 'TPRKB', 'SMARCA4', 'GNB4', 'AUTS2', 'DNM1', 'DDB2', 'MMP20', 'DNAH1', 'TP53RK', 'TCF20', 'MAD1L1', 'CDK5RAP2', 'CCDC40', 'SLC26A1', 'ADD3', 'AURKA', 'PLA2G2A', 'PTPN12', 'MCC', 'DLC1', 'TPH2', 'RELT', 'RP1L1', 'ATR', 'MYF5', 'CLN5', 'RAPSN', 'CDSN', 'TM4SF20', 'GATA3', 'RP1', 'SMO', 'PINK1', 'SNCB', 'UBA5', 'SLC13A3', 'PIGW', 'IFT81', 'DHX16', 'NR2E3', 'OXR1', 'CCL2', 'TMEM218', 'BRAT1', 'LDHB', 'DNAH11', 'ZBTB42', 'TBCD', 'CHRNB1', 'ZNF750', 'GRN', 'PRCC', '-', 'PRRX1', 'GTPBP2', 'TECPR2', 'CHST6', 'GAN', 'NLGN1', 'SLC52A2', 'SPEG', 'CHRNA1', 'FMN2', 'LAMA1', 'CLCN3', 'RPGRIP1', 'LIPN', 'GPC6', 'POP1', 'PHIP', 'PLA2G5', 'LOXHD1', 'BFSP2', 'GRXCR1', 'KCNQ4', 'LHFPL5', 'CLDN14', 'MSRB3', 'PDE1C', 'LIM2', 'ATOH1', 'MEI1', 'NLRP7', 'HARS2', 'OTOGL', 'TMPRSS3', 'ILDR1', 'ESRP1', 'CSNK1D', 'INSL3', 'GREM2', 'CHMP4B', 'GLIS2', 'KPNA7', 'MOS', 'FYCO1', 'SPATA16', 'ZFP36L2', 'KDM5D', 'PRY2', 'XKRY', 'CDY2A', 'CDY1', 'VCY', 'HSFY1', 'BPY2', 'PRY', 'RPS4Y2', 'SLC26A8', 'DPY19L2', 'CCDC62', 'ZPBP', 'TSGA10', 'GGN', 'MPZL2', 'ZP1', 'CDC20', 'STUB1', 'SYN1', 'WARS1', 'ARL3', 'ZNF292', 'POLA1', 'HCN1', 'FOXG1', 'UGP2', 'DNAAF5', 'UBE3A', 'UBE4A', 'TMEM53', 'ODAD3', 'TMEM237', 'NR5A1', 'VPS13C', 'TCTN2', 'RBM28', 'CFL2', 'DLG4', 'GPR88', 'CEP120', 'CLTC', 'GRIN1', 'ROR1', 'PIGO', 'AMBN', 'OXGR1', 'CRIPTO', 'FOXH1', 'DISP1', 'GAS1', 'SLC6A4', 'SNCA', 'PIK3CA', 'HSPB8', 'WAC', 'UBR7', 'PLCB4', 'HCN2', 'WNT3', 'NEUROD2', 'REEP2', 'B9D1', 'SMN2', 'AKT3', 'SATB1', 'EP300', 'CLPP', 'AP5Z1', 'STAG2', 'PPP2R1A', 'INTS8', 'CFAP298', 'EIF2B5', 'TRAPPC6B', 'SLC16A2', 'MSH3', 'KCNC2', 'OTOG', 'EML1', 'HYAL1', 'GDF6', 'DRC1', 'EXOC2', 'GON7', 'PLA2G6', 'MYOD1', 'SHH', 'ASPM', 'APC', 'FLVCR1', 'SPG11', 'FRA10AC1', 'PRDM12', 'SHANK3', 'CTSC', 'HYDIN', 'KCNMA1', 'CDH2', 'ODC1', 'TECR', 'PPARGC1A', 'UNC13A', 'EPHA4', 'DAO', 'PON3', 'GLT8D1', 'PON2', 'PON1', 'ANAPC7', 'SLC25A24', 'WWOX', 'TRAPPC9', 'DISC2', 'APOL4', 'APOL2', 'CHI3L1', 'RTN4R', 'DAOA', 'SYN2', 'KIF5A', 'ZBTB18', 'OTOF', 'KNL1', 'XRCC1', 'MED13', 'SEPSECS', 'GNAO1', 'GLDN', 'MCTP2', 'ATP1A2', 'MACF1', 'AMMECR1', 'CHD4', 'SIGMAR1', 'CDK10', 'ATAD1', 'AQP5', 'ATG7', 'GLRB', 'MED27', 'HMCN1', 'GDF9', 'PRMT7', 'XPC', 'GRM1', 'SLITRK1', 'RAX2', 'CREBBP', 'TAF15', 'PLEKHG2', 'PARK7', 'PKDCC', 'SLC39A14', 'LRP12', 'TRPC3', 'NOTCH3', 'SRD5A2', 'KCNK9', 'C1R', 'TTBK2', 'CLN6', 'TCTN3', 'DYSF', 'OPCML', 'PPP2R1B', 'MAP3K8', 'SRGAP1', 'TNIK', 'PPT1', 'DNAJC5', 'ESRRB', 'ACKR3', 'CCDC50', 'DIP2B', 'LRPAP1', 'PNKD', 'MMP19', 'GRXCR2', 'MIR96', 'EPHA2', 'ABCC1', 'SOX2', 'TEAD1', 'LRTOMT', 'ASB10', 'SLC44A4', 'CLIC5', 'PI4KB', 'P2RX2', 'CD164', 'TNC', 'LOXL3', 'MCM2', 'AKR1C4', 'AKR1C2', 'TUBA3D', 'ADAM10', 'SERPINB8', 'SLITRK6', 'KRT6C', 'BTG4', 'SELENBP1', 'HSF2BP', 'CRYGB', 'MIP', 'VIM', 'AVIL', 'TMEM151A', 'SYCP2', 'BRDT', 'AURKC', 'SPINK2', 'SYNE4', 'SLC24A4', 'EIF2B3', 'PAK2', 'GRM7', 'PRKN', 'CCDC39', 'GDI1', 'MEIS2', 'MME', 'CHD8', 'FAT2', 'MAST1', 'PTCH2', 'FEZF1', 'CAPN15', 'SBF1', 'HERC1', 'TRIO', 'SCUBE3', 'CRB1', 'PGAP3', 'SSBP1', 'EFTUD2', 'CTSD', 'IQSEC1', 'CCNQ', 'CRPPA', 'ZBTB11', 'ADAMTSL4', 'CHMP1A', 'MED11', 'RBM12', 'CHUK', 'GRIN2B', 'KMT2A', 'ATP1A3', 'ZMYND10', 'KCNA1', 'SEMA3E', 'KCNJ6', 'SMOC1', 'SLC25A1', 'CC2D1A', 'LAMC3', 'KIF5C', 'COL9A2', 'PSMB1', 'CUX1', 'ZNF423', 'EBP', 'RGS9', 'MAB21L2', 'PAFAH1B1', 'KLK4', 'DPH1', 'SIN3A', 'GLDC', 'C1QC', 'COMP', 'ACP4', 'PPP2CA', 'ADAMTS17', 'CCDC22', 'PRPF3', 'KIDINS220', 'AP1G1', 'SERPINI1', 'LRRC32', 'MYT1L', 'AFG3L2', 'NR4A2', 'ZFYVE27', 'ZMIZ1', 'GDAP2', 'HNRNPH2', 'DNAL4', 'GAMT', 'POU4F1', 'WDR37', 'MFSD8', 'RAB7A', 'XPA', 'HFM1', 'PRDM13', 'POFUT1', 'VAX1', 'MYOT', 'BMP4', 'ISCA2', 'ZNF141', 'TRPV4', 'TUBB2A', 'FLVCR2', 'MFSD2A', 'C12orf57', 'PLD3', 'KCNT1', 'AMFR', 'CSNK2B', 'PUF60', 'ATL3', 'RPS6KA3', 'FXR1', 'ENTPD1', 'TSEN15', 'MCM3AP', 'NKX2-1', 'COLEC10', 'EDAR', 'AHSG', 'KITLG', 'TMX2', 'MYMX', 'YRDC', 'FGFR1', 'ALG14', 'SRCAP', 'CEP41', 'GREB1L', 'GIPC3', 'RORA', 'EXPH5', 'KAT6B', 'THOC1', 'MVD', 'MIR204', 'DIABLO', 'PANK4', 'MAPKAPK3', 'TCHH', 'HSF4', 'CRYBA1', 'CDC14A', 'CRYGS', 'SEPTIN12', 'CEP112', 'MAFB', 'TEKT3', 'CFAP70', 'DNAH2', 'IQCN', 'M1AP', 'KCNU1', 'REC114', 'CATSPER1', 'ACTL7A', 'DNALI1', 'CFAP44', 'CFAP69', 'MASP1', 'FBXO28', 'BICD2', 'EIF4A3', 'KIF26A', 'GCNA', 'NOTCH2NLC', 'CTSF', 'POF1B', 'HDC', 'NEK2', 'ERLIN2', 'VSX2', 'SLC6A9', 'NDST1', 'DDR2', 'WLS', 'PIEZO2', 'PERP', 'FAM50A', 'EEF1A2', 'AGO1', 'HNRNPR', 'CFHR5', 'CLN8', 'NARS1', 'LMBR1', 'TSEN2', 'DPH5', 'GABRB1', 'ATP5MC3', 'MEGF8', 'STEEP1', 'BLTP1', 'NEFL', 'WBP11', 'SLC19A3', 'HTR2A', 'CRBN', 'KDM5B', 'PSENEN', 'AR', 'KLF13', 'POMT2', 'ARL6IP1', 'ADAM9', 'GRHL3', 'KRT12', 'SLC35A3', 'FOXI1', 'TRIM8', 'EIF2B2', 'ASXL3', 'TTI2', 'CLDN19', 'ZSWIM6', 'KLC2', 'RAB11B', 'NCDN', 'COPB1', 'GJA8', 'NSDHL', 'PRKCG', 'UBQLN2', 'KCNJ3', 'PMP2', 'DIAPH3', 'GAL', 'SETBP1', 'COL9A1', 'CWC27', 'PCARE', 'AHR', 'FAM161A', 'PDE6A', 'GUCA1B', 'CNGB1', 'SNRNP200', 'FSCN2', 'NTN1', 'UCHL1', 'PRKRA', 'APC2', 'TTC19', 'PRKAR1B', 'THOC2', 'SIX6', 'TAP2', 'TAP1', 'TAPBP', 'DDHD1', 'KATNIP', 'EXOSC1', 'MAPKBP1', 'TMEM163', 'PCYT1A', 'ZNF462', 'FLG2', 'CTU2', 'PGAP2', 'ATP6V1B2', 'DDX11', 'RIC1', 'KRT9', 'ELOVL5', 'FAM13A', 'KDM1A', 'MAN2C1', 'TP73', 'TNRC6B', 'TSEN54', 'FAR1', 'RBL2', 'BAP1', 'BPNT2', 'DNAH7', 'HOXB1', 'MARK3', 'DPH2', 'CRYBA2', 'MED12L', 'GNAT1', 'DARS1', 'FGF9', 'CLEC3B', 'FRMD7', 'ARL2', 'MYF6', 'NONO', 'NOBOX', 'CFAP65', 'AKAP3', 'CFAP58', 'SPACA1', 'QRICH2', 'KAT6A', 'CEP104', 'CLP1', 'MEF2C', 'ARHGEF18', 'KCNK4', 'WNT7A', 'MLPH', 'CNOT3', 'ITGB6', 'FKRP', 'KANK2', 'SLC18A2', 'SMOC2', 'UNC119', 'CEP55', 'ARMC9', 'FMR1', 'CHAMP1', 'POLR3GL', 'PRNP', 'PRCD', 'CERKL', 'BHLHA9', 'SLC2A3', 'AKT1', 'FITM2', 'KCNC1', 'TBC1D7', 'ATXN2', 'SLC27A4', 'TACO1', 'LAMB1', 'IGF2R', 'MN1', 'CNTNAP1', 'CHRNE', 'MYO18B', 'AAGAB', 'IQSEC2', 'POMT1', 'NUP54', 'IRF2BPL', 'ARFGEF1', 'GNB3', 'HMGB3', 'TBC1D24', 'NEB', 'ZFPM2', 'TAF8', 'PTCH1', 'TUBG1', 'SEMA6B', 'AIPL1', 'CLCC1', 'GM2A', 'RGS9BP', 'FOXI3', 'FBXL3', 'HYCC1', 'CKAP2L', 'MESD', 'KDM5C', 'PDE6B', 'FERRY3', 'COL27A1', 'MAPK1', 'GABBR2', 'MCM8', 'EYS', 'IDH3B', 'CD151', 'CYP2U1', 'THG1L', 'ADNP', 'TMEM94', 'PTPA', 'ADSS1', 'DNMT1', 'LHCGR', 'TDO2', 'EIF2B4', 'ITM2B', 'ZEB1', 'ZFHX3', 'MED25', 'SUZ12', 'SEMA5A', 'TPP1', 'GRIP1', 'CRX', 'ZNF142', 'TENM4', 'DAB1', 'SET', 'PCDH12', 'DLG3', 'DICER1', 'RP9', 'TUBB', 'DRD3', 'HKDC1', 'TUFT1', 'SLC17A9', 'FZD6', 'DNMBP', 'FDPS', 'ELP4', 'HRURF', 'ADGRG2', 'CTNNA1', 'PATL2', 'VWA3B', 'ERAL1', 'TTC29', 'TTC21A', 'DNAH8', 'CFAP251', 'AK7', 'DSC3', 'GDF11', 'NOL3', 'GNAL', 'DLX4', 'SIAH1', 'POLH', 'SNORD118', 'KIAA1549', 'ATG5', 'VWA1', 'KIF7', 'ATCAY', 'NSD1', 'KCNJ13', 'GJA1', 'EIF2AK1', 'EIF2AK2', 'COL25A1', 'SOX9', 'TNNT3', 'CDHR1', 'AGBL5', 'SLC7A14', 'PRPF6', 'ZNF513', 'RNASET2', 'TMEM231', 'FAM20A', 'PAX7', 'PAICS', 'DNAJB2', 'DLEC1', 'FGFR2', 'SLC7A6OS', 'IFT57', 'ERLIN1', 'EXOC7', 'ROBO3', 'LRMDA', 'ZNF407', 'COQ6', 'SATB2', 'COL6A2', 'SPG21', 'ATXN8', 'POLR3B', 'ATXN8OS', 'GEMIN5', 'ELP2', 'DNAJC12', 'MYO5A', 'CDK13', 'PHKA1', 'MBOAT7', 'BMPR1B', 'CACNA1E', 'MINPP1', 'PPP2R5D', 'TRPS1', 'GMPPA', 'HNRNPU', 'ABHD16A', 'BNC2', 'MAK', 'PRPF4', 'MERTK', 'DHX38', 'NDRG1', 'UQCRC1', 'FGF13', 'NANS', 'UGDH', 'TMC8', 'SMG9', 'NANOS1', 'RNF212', 'SYCP3', 'TEX14', 'PRICKLE1', 'TMEM63A', 'CCDC174', 'PITX1', 'H4C5', 'AHI1', 'PCYT2', 'RSRC1', 'BEST1', 'SLC5A7', 'PRPF31', 'TXNL4A', 'CRYGD', 'GPNMB', 'ADAMTS18', 'VWA8', 'MIR184', 'PMVK', 'WEE2', 'RBMY1A1', 'DAZ2', 'DDX3Y', 'DAZ1', 'DAZ3', 'USP9Y', 'ARMC2', 'ATP1A1', 'DNAH17', 'SSX1', 'FSIP2', 'MAPT', 'TACSTD2', 'RBMX', 'COL11A1', 'TMCO1', 'CBX2', 'RCBTB1', 'CADM3', 'FBLN1', 'NLGN3', 'TGM5', 'POR', 'PDE4D', 'MAP3K1', 'LOXL1', 'KCNT2', 'REEP6', 'PDE6H', 'CLRN1', 'RNF6', 'MAST3', 'NDP', 'POMGNT1', 'RFX7', 'IMPG2', 'CEP152', 'EDEM3', 'CHD1', 'KIZ', 'KRT83', 'ATP8A2', 'VAMP2', 'DHODH', 'ADGRG1', 'DCN', 'DRAM2', 'OPN1SW', 'DCT', 'WNK3', 'SPART', 'ROGDI', 'AXIN1', 'DNAJC6', 'DOCK3', 'SHMT2', 'SEPTIN9', 'SLC1A4', 'FBXO7', 'NBEA', 'TUBGCP4', 'CACNA1A', 'IRF6', 'CNTN2', 'CA8', 'ADPRS', 'FREM1', 'IDH3A', 'HS2ST1', 'DNAJC13', 'LAMP2', 'SETD5', 'CAPN1', 'TERB2', 'PNLDC1', 'MOV10L1', 'TERB1', 'SPAG17', 'MEIOB', 'SF3B4', 'AP4E1', 'TMEM63C', 'GATAD2B', 'ACSL4', 'WDR45B', 'EXOC8', 'SLC9A6', 'HDAC9', 'HECTD4', 'SLC9A1', 'DHX30', 'DDX59', 'CHP1', 'SMG8', 'RAX', 'TRIM44', 'SMARCD1', 'CRYBA4', 'KERA', 'P3H2', 'CFAP91', 'FBXO11', 'COL8A2', 'CEP85L', 'METTL23', 'SAG', 'TAF4B', 'ARID2', 'DOK7', 'PSMC3', 'SPTLC1', 'HINT1', 'SOBP', 'RORB', 'PITX2', 'USP45', 'BEAN1', 'CTNNA2', 'TNNI2', 'HDAC8', 'ZMYND11', 'ARID1A', 'ZDHHC9', 'SHOC1', 'MAMLD1', 'SMPD4', 'USP9X', 'DONSON', 'RANGRF', 'SLMAP', 'REEP1', 'TUB', 'ARID1B', 'ABCA4', 'ACER3', 'KCNV2', 'KIF14', 'SALL4', 'RTN2', 'BRD4', 'COL6A3', 'HCCS', 'ECEL1', 'RSPO2', 'RD3', 'PMP22', 'GPR101', 'MUSK', 'COQ5', 'CHRNA7', 'NRL', 'PHACTR1', 'SACS', 'HYLS1', 'KLK11', 'VARS1', 'TMEM222', 'HSPB3', 'MRE11', 'THUMPD1', 'CNPY3', 'SLC45A1', 'HOXC13', 'IL11RA', 'SMARCA2', 'MBTPS2', 'FRMD4A', 'HDAC4', 'TWIST1', 'PRPF8', 'CTNND2', 'PGM2L1', 'ZFYVE26', 'STXBP1', 'WASHC4', 'SLURP1', 'KLHL10', 'PDHA2', 'RPL10L', 'TEX15', 'RTN4IP1', 'TMEM126A', 'TBP', 'MTSS2', 'SOX4', 'EMC10', 'RALGAPA1', 'PDCD6IP', 'EIF3F', 'STARD7', 'USP26', 'OAT', 'CERS1', 'POU3F3', 'PADI3', 'TGM3', 'LTV1', 'SALL2', 'SNRPE', 'CFAP61', 'ARX', 'EZH2', 'AXL', 'SRA1', 'OPA3', 'SCN8A', 'SETD1B', 'SPTBN2', 'H4C11', 'SPTLC2', 'ANOS1', 'FBXO38', 'ADAM22', 'KCNC3', 'ARL2BP', 'PROM1', 'SYT1', 'DSPP', 'FGFR3', 'TFAP2A', 'KDF1', 'WNT10B', 'PLK4', 'CST6', 'MPDZ', 'MAPRE2', 'HARS1', 'PITPNM3', 'SLC24A5', 'SRPX2', 'GRIA2', 'YEATS2', 'KCTD7', 'PUM1', 'C14orf39', 'KIF1C', 'TGM6', 'VAMP1', 'PDZD8', 'GNAI3', 'IMPDH1', 'SNAP25', 'GBA2', 'NR2F1', 'SLC52A3', 'TBC1D2B', 'ANO3', 'ZMYM2', 'NUP88', 'C2CD3', 'EEF2', 'SUFU', 'NFIB', 'TDRD9', 'ZIC1', 'CLDN11', 'LNPK', 'SYNGAP1', 'RPGR', 'BRWD1', 'ATN1', 'DYNC1I2', 'PDYN', 'PDXK', 'NOP56', 'CIB1', 'DHX37', 'NRIP1', 'PRSS56', 'TMEM98', 'KREMEN1', 'CRYBB2', 'CPAMD8', 'CAMK2G', 'QARS1', 'TTI1', 'TNR', 'THAP1', 'SAMD12', 'THOC6', 'SGCE', 'DPF2', 'KIFBP', 'COASY', 'NPTX1', 'ST3GAL3', 'DDB1', 'KPNA3', 'GJB2', 'PIGN', 'TUBGCP6', 'MYO7A', 'CTNND1', 'MYO9A', 'TRIP12', 'EFHC1', 'ZMYND15', 'CAMTA1', 'ITPR1', 'MYOC', 'CACNA2D2', 'FGD1', 'MFRP', 'TRRAP', 'VPS16', 'CFAP221', 'ROR2', 'SMARCE1', 'MARCHF6', 'TBX18', 'CT55', 'TMEM147', 'CTSH', 'P2RY11', 'CHAT', 'CDH1', 'UBE2A', 'TLCD3B', 'CDC42BPB', 'ABCA7', 'MBD5', 'GLI3', 'HSPB1', 'AAAS', 'RFC1', 'RUBCN', 'APCDD1', 'H3-3A', 'ADSL', 'SELENOI', 'VCAN', 'SLC38A8', 'PTPRF', 'COX7B', 'LRAT', 'LRP2', 'DUX4', 'DUX4L1', 'NTNG2', 'SVBP', 'CACNA1H', 'ADGRG6', 'ALDH3A2', 'PRDM8', 'INTS1', 'ATL1', 'CLTCL1', 'RAB28', 'TTLL5', 'ZNF365', 'TMEM138', 'GDF5', 'NF2', 'RPE65', 'CSTA', 'TULP1', 'HUWE1', 'SOX11', 'DHH', 'GRID2', 'TBX15', 'TBX22', 'USH2A', 'IMPG1', 'RP2', 'KCNQ3', 'GJB6', 'NT5C2', 'FBXO43', 'CCDC34', 'COLEC11', 'SF3B2', 'TSPEAR', 'RHO', 'RLBP1', 'AP4M1', 'LRP1', 'KCTD17', 'AGRN', 'CPT1C', 'NIPA1', 'KRT85', 'ATXN10', 'GMPPB', 'COL18A1', 'ADGRV1', 'UBAP1', 'SCN2A', 'AP4B1', 'MAN1B1', '-', 'PXDN', 'MICAL1', 'SERPINB7', 'STRC', 'CATSPER2', 'SPECC1L', 'CCNK', 'SMN1', 'CILK1', 'SMARCB1', 'RPL10', 'CHRNB2', 'EMC1', 'ELOVL4', 'RALA', 'CRYGC', 'SLC18A3', 'MSL3', 'GRIK2', 'CHD5', 'CLIC2', 'ALDH1A3', 'COL13A1', 'MSX1', 'SOX6', 'FGF10', 'TOE1', 'GABRG2', 'USF3', 'NECTIN1', 'DNAH10', 'BCAS3', 'AFG2B', 'ECM1', 'KIF11', 'TUBGCP2', 'STX1B', 'PHOX2A', 'TCEAL1', 'TAF6', 'PAX1', 'ERF', 'PPP2R2B', 'DNAAF6', 'PPP1R12A', 'NPRL2', 'LGI4', 'PDE2A', 'TRPM3', 'HOXA13', 'TBC1D20', 'DYNC1H1', 'RNF216', 'YAP1', 'EPS8L3', 'HID1', 'NPRL3', 'MSH5', 'ALX3', 'ALX1', 'NKX6-2', 'SRY', 'FA2H', 'SIX2', 'MAF', 'TAF1', 'FBXO31', 'LMBRD2', 'STAG3', 'RAB3GAP2', 'SLC32A1', 'SYCE1', 'CATIP', 'WDR81', 'AP4S1', 'TRANK1', 'ARHGEF2', 'NXN', 'VLDLR', 'EXOSC2', 'TUBB2B', 'USH1G', 'PIDD1', 'ABHD12', 'TUBB4B', 'DOCK7', 'ATP13A2', 'CAST', 'KLLN', 'OVOL2', 'GARS1', 'TYRP1', 'ATOH7', 'PCDHGC4', 'SCARF2', 'PQBP1', 'TFAP2B', 'DVL3', 'SBF2', 'POC1B', 'TUBB3', 'CHRNA4', 'RDH11', 'CERT1', 'SMC1A', 'RPS23', 'UPF3B', 'MTPAP', 'ESPN', 'ZNF526', 'KCTD1', 'XPNPEP2', 'DNHD1', 'SLC6A17', 'KLHL9', 'SMCHD1', 'NKAP', 'DSG4', 'KDM6B', 'LHB', 'GAD1', 'SLC24A1', 'CYP3A5', 'PTGIS', 'ADD1', 'ATP1B1', 'RGS5', 'PURA', 'FZD2', 'FREM2', 'SHROOM4', 'PLP1', 'CACNA1G', 'CNNM4', 'LAGE3', 'B4GALNT1', 'CWF19L1', 'TTC5', 'CLTRN', 'BRCC3', 'CRKL', 'KIF21A', 'CIB2', 'ST14', 'FOXC1', 'CUX2', 'ABCA5', 'ASPH', 'KRT74', 'FRAS1', 'CHM', 'DENND5A', 'PAX3', 'RPL21', 'SIX5', 'KRT25', 'TRPV3', 'CDKL5', 'TUBA1A', 'SMS', 'VSX1', 'CHSY1', 'FGF14', 'LSS', 'CDH11', 'PORCN', 'EIF2S3', 'CHRNA2', 'EDARADD', 'RUSC2', 'KRT71', 'ELOVL1', 'GPR179', 'FSHB', 'SPATA7', 'GRIN2A', 'SLC45A2', 'USH1C', 'NOG', 'MORC2', 'LORICRIN', 'MAB21L1', 'TENM3', 'CDH3', 'KAT5', 'KCNN2', 'CSTB', 'CYP4V2', 'CACNA1F', 'ATXN1', 'TRPM1', 'LRIT3', 'MAG', 'WHRN', 'NMNAT1', 'SCN1A', 'LGI1', 'CACNA2D4', 'MSN', 'SPAST', 'PCDH15', 'RHOBTB2', 'KRT86', 'KRT81', 'WDR45', 'ZFTA', 'CHN1', 'TMEM240', 'PDZD7', 'GNAT2', 'RAB18', 'TIMP3', 'GRM6', 'EFEMP1', 'ARHGAP29', 'COBLL1', 'DLG1', 'ARHGEF38', 'EBF3', 'MED13L', 'DVL1', 'GJB1', 'FGF3', 'FRRS1L', 'TWIST2', 'PHF6', 'CARD14', 'ATF6', 'GPR143', 'TGFBI', 'STS', 'KDM4B', 'VMA21', 'NEXMIF', 'MC1R', 'CACNB4', 'SMARCAD1', 'HDAC6', 'WNT5A', 'SLC6A1', 'PDE6C', 'ISL1', 'ARSG', 'PAX6', 'ATP10A', 'PRPH2', 'GUCA1A', 'CEP78', 'ATRIP', 'PODXL', 'NTNG1', 'CUL4B', 'SCNM1', 'NHS', 'AP2M1', 'GABRB3', 'DEPDC5', 'NUTM1', 'WNT9B', 'MID1', 'CBY1', 'LIPH', 'GRK1', 'RIPK4', 'MCM7', 'CYP1B1', 'MTM1', 'MAOA', 'CNGA3', 'ATP2A2', 'DMRT3', 'VAMP7', 'CEP126', 'AP1S2', 'CLCN4', 'IGBP1', 'JARID2', 'PCDH19', 'PRRT2', 'ZC4H2', 'RLIM', 'CABP4', 'PRR12', 'HMX1', 'CHD2', 'TP63', 'LPAR6', 'C1QTNF5', 'AXIN2', 'PAX9', 'LCA5', 'PRKCH', 'ALOX5AP', 'TYR', 'GABRA1', 'TERF2IP', 'MGMT', 'POU3F4', 'IMPDH2', 'EDA2R', 'CFP', 'UBB', 'SIX1', 'EYA1', 'NIPA2', 'DDIT3', 'BDNF', 'CNGB3', 'YWHAE', 'GRIA3', 'L1CAM', 'CA4', 'IFT88', 'EDA', 'HIC1', 'MIR17HG', 'HLA-C', 'EFNB1', 'REV3L', 'WNT10A', 'CTHRC1', 'MSR1', 'PDK3', 'FOXL2', 'TIMM8A', 'FRZB', 'COL14A1', 'LAS1L', 'TRAF6', 'GPKOW', 'SLC6A20', 'SLC6A18', 'MAGED2', 'BCKDK', 'FLRT1', 'ATP2B3', 'ADAMTSL1', 'RAB39B', 'FRA16E', 'ADORA2A', 'SIN3B', 'ADH1B', 'TAS2R16', 'AK9', 'PBRM1', 'OGG1', 'RNF139', 'IGSF1', 'TAL2', 'TAL1', 'TMLHE', 'PLEKHG4', 'RAD51D', 'CIZ1', 'AFF2', 'IFRD1', 'MACROH2A1', 'SLC9A7', 'IL1B', 'ARHGEF9', 'OPHN1', 'DISC1', 'EOMES', 'PAK3', 'FRMPD4', 'SNAI2', 'SORL1', 'TOMM40', 'BCORL1', 'MAPK10', 'WDR48', 'HLA-A', 'TMEM185A', 'ZFR', 'ZNF592', 'IRGM', 'ABCB1', 'MT-RNR1', 'SMPX', 'PHF8', 'FBXW4', 'DLX6', 'SEM1', 'EPS15L1', 'BTRC', 'OGT', 'SUMO1', 'RHOA', 'ARSI', 'KLHL15', 'CYSLTR2', 'BRWD3', 'MID2', 'KANK1', 'RS1', 'CRH', 'JRK', 'LRIF1', 'IL1RAPL1', 'FTSJ1', 'EMX2', 'PTCHD1', 'IRS4', 'DRD2', 'FGF16', 'ADRA2B', 'LZTS1', 'SMAD7', 'KIF4A', 'USP27X', 'NR4A3', 'SYP', 'KEAP1', 'AMELX', 'DIAPH2', 'TSPAN7', 'GPRASP2', 'ZFAT', 'TEX11', 'FIGLA', 'OPN1LW', 'OPN1MW', 'FKBP5', 'PLS3', 'CLDN2', 'TGFA', 'RIMS1', 'FOXO1', 'CFAP47', 'CHRDL1', 'NYX', 'CREB1', 'ASPSCR1', 'SSX2', 'HLA-DRA', 'WDR36', 'NTF4', 'DMRT1', 'DAZ4', 'TSPY1', 'SERPINA12', 'C2CD6']\n", "\n", "Object names with similarities > threshold or top 10 highest values:\n", "['HSD3B7', 'LIPA', 'AKR1D1', 'PYGL', 'BAAT', 'CDAN1', 'CALR', 'MRPL3', 'TRMT10C', 'RUNX1', 'FAH', 'LARS1', 'STEAP3', 'MYO5B', 'SLC2A2', 'KIF23', 'SLC4A1', 'PKLR', 'RHAG', 'SCO1', 'PHKG2']\n", @@ -472,7 +441,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, "outputs": [ { @@ -486,7 +455,7 @@ "Similarity analysis done.\n", "\n", "Object names sorted by the highest similarities:\n", - "['Lysosomal acid lipase deficiency', 'Interstitial lung and liver disease', 'Hydrops, lactic acidosis, and sideroblastic anemia', 'Bile acid synthesis defect, congenital, 3', 'Triokinase and FMN cyclase deficiency syndrome', 'Mitochondrial DNA depletion syndrome 16 (hepatic type)', 'Galactosemia', 'Immunodeficiency 69, mycobacteriosis', 'Cholestasis, progressive familial intrahepatic, 10', 'Bile acid conjugation defect 1', 'Bile acid synthesis defect, congenital, 1', 'Anemia, congenital dyserythropoietic, type Ia', 'Sea-Blue histiocyte disease', 'Cholestasis, progressive familial intrahepatic, 5', 'Anemia, sideroblastic, 3, pyridoxine-refractory', 'Bile acid synthesis defect, congenital, 2', 'Combined oxidative phosphorylation deficiency 9', 'Bile acid synthesis defect, congenital, 4', 'Combined oxidative phosphorylation deficiency 30', 'Infantile liver failure syndrome 1', 'Tyrosinemia, type I', 'Liver failure, infantile, transient', 'Anemia, dyserythropoietic congenital, type IV', 'Pearson marrow-pancreas syndrome', 'Niemann-Pick disease, type A', 'Citrullinemia, type II, neonatal-onset', 'Mitochondrial DNA depletion syndrome 3 (hepatocerebral type)', 'Mitochondrial complex IV deficiency, nuclear type 4', 'Neutropenia, severe congenital, 5, autosomal recessive', 'Sitosterolemia 1', 'Renal tubular acidosis, distal, with hemolytic anemia', 'Niemann-pick disease, type B', 'Propionic acidemia', 'Mitochondrial DNA depletion syndrome 15 (hepatocerebral type)', 'Sclerosing cholangitis, neonatal', 'Combined oxidative phosphorylation deficiency 34', 'Cholestasis, progressive familial intrahepatic, 3', 'Fanconi-Bickel syndrome', 'Cholestasis, progressive familial intrahepatic, 12', 'Methylmalonic aciduria, vitamin B12-responsive, cblB type', 'Wolman disease', 'Leukocyte adhesion deficiency, type III', 'Bile acid synthesis defect, congenital, 5', 'Mitochondrial complex III deficiency, nuclear type 3', 'Immunodeficiency 32B, monocyte and dendritic cell deficiency, autosomal recessive', 'Congenital disorder of glycosylation, type Ib', 'Osteopetrosis, autosomal recessive 8', 'Mitochondrial complex III deficiency, nuclear type 10', 'Glycogen storage disease XII', 'Hemophagocytic lymphohistiocytosis, familial, 1', 'Immunodeficiency 27A, mycobacteriosis, AR', 'Omenn syndrome', 'Congenital disorder of glycosylation, type Ih', 'Transaldolase deficiency', 'Hyperbilirubinemia, shunt, primary', 'Immunodeficiency 87 and autoimmunity', 'Congenital disorder of glycosylation, type IIaa', 'Growth retardation, impaired intellectual development, hypotonia, and hepatopathy', 'Heme oxygenase-1 deficiency', 'Wilson disease', 'Anemia, congenital dyserythropoietic, type Ib', 'Thrombocytopenia, anemia, and myelofibrosis', 'Mitochondrial DNA depletion syndrome 6 (hepatocerebral type)', 'Orotic aciduria', 'Cholestasis, progressive familial intrahepatic, 8', 'Hemochromatosis, neonatal', 'Combined oxidative phosphorylation deficiency 19', 'Anemia, dyserythropoietic congenital, type III', 'Congenital disorder of glycosylation, type IIO', 'Combined oxidative phosphorylation deficiency 16', 'Thalassemia-beta, dominant inclusion-body', 'Phosphoenolpyruvate carboxykinase deficiency, cytosolic', 'Osteootohepatoenteric syndrome', 'Autoinflammation with infantile enterocolitis', 'Erythroleukemia, familial, susceptibility to', 'Congenital disorder of glycosylation, type IIK', 'Complement hyperactivation, angiopathic thrombosis, and protein-losing enteropathy', 'Cholestasis, progressive familial intrahepatic 1', 'Hypertriglyceridemia, transient infantile', 'Bleeding disorder, platelet-type, 16', 'Hyperuricemia, pulmonary hypertension, renal failure, and alkalosis syndrome', 'Letterer-Siwe disease', 'Exocrine pancreatic insufficiency, dyserythropoietic anemia, and calvarialhyperostosis', 'Anemia, hypochromic microcytic, with iron overload 2', 'Hemophagocytic lymphohistiocytosis, familial, 2', 'Methylmalonic aciduria, vitamin B12-responsive, cblA type', 'Dehydrated hereditary stomatocytosis 2', 'Lecithin:cholesterol acyltransferase deficiency', 'Cholestasis, progressive familial intrahepatic, 7, with or without hearing loss', 'Immunodeficiency 47', 'Ghosal hematodiaphyseal dysplasia', 'Hemophagocytic lymphohistiocytosis, familial, 4', 'Spherocytosis, type 5', 'Hemolytic anemia, nonspherocytic, due to hexokinase deficiency', 'Anemia, X-linked, with or without neutropenia and/or platelet abnormalities', 'Lysinuric protein intolerance', 'Rajab interstitial lung disease with brain calcifications', 'Hemophagocytic lymphohistiocytosis, familial, 5', 'Glycogen storage disease IV', 'HMG-CoA synthase-2 deficiency', 'Hypobetalipoproteinemia, familial, 1', 'Mitochondrial complex I deficiency, nuclear type 11', 'Osteopetrosis, autosomal recessive 1', 'Combined oxidative phosphorylation deficiency 42', 'Combined oxidative phosphorylation deficiency 40', 'Osteopetrosis, autosomal recessive 4', 'Gallbladder disease 1', 'Cholestasis-Lymphedema syndrome', 'Hemolytic anemia due to glutathione synthetase deficiency', 'Combined oxidative phosphorylation deficiency 12', 'Anemia, dyserythropoietic congenital, type II', 'Glycogen storage disease IXc', 'Cholestasis, progressive familial intrahepatic, 6', 'Mitochondrial complex III deficiency, nuclear type 6', 'Reticuloendotheliosis, X-linked', 'Glycogen storage disease VI', 'Majeed syndrome', 'Combined oxidative phosphorylation deficiency 52', 'Proteasome-Associated autoinflammatory syndrome 3', 'Congenital disorder of glycosylation, type IIP', 'Polyglucosan body myopathy 1 with or without immunodeficiency', 'Focal segmental glomerulosclerosis 1', 'Cholestasis, progressive familial intrahepatic 2', 'Bleeding disorder, platelet-type, 19', 'Bleeding disorder, platelet-type, 17', 'Citrullinemia, type II, adult-onset', 'Amegakaryocytic thrombocytopenia, congenital, 2', 'Immunodeficiency 46', 'Congenital disorder of glycosylation, type IIw', 'Juvenile polyposis syndrome', 'Gaucher disease, atypical', 'Mitochondrial trifunctional protein deficiency', 'Hyperlipoproteinemia, type ID', 'Bile acid malabsorption, primary, 2', 'Osteopetrosis, autosomal recessive 3', 'Cholestasis, progressive familial intrahepatic, 11', 'Pyridoxamine 5-prime-phosphate oxidase deficiency', 'Hyperbiliverdinemia', 'Portal hypertension, noncirrhotic, 2', 'Hemolytic anemia, nonspherocytic, due to glucose phosphate isomerasedeficiency', 'Protoporphyria, erythropoietic, 1', 'Prolidase deficiency', '3-Hydroxy-3-Methylglutaryl-Coa lyase deficiency', 'Hypermethioninemia due to adenosine kinase deficiency', 'Hypermethioninemia with deficiency of S-adenosylhomocysteine hydrolase', 'Monosomy 7 myelodysplasia and leukemia syndrome 2', 'Polycythemia vera', 'Immunodeficiency 22', 'Fanconi anemia, complementation group V', 'Osteopetrosis, autosomal recessive 5', 'Mitochondrial complex III deficiency, nuclear type 1', 'Infections, recurrent, with encephalopathy, hepatic dysfunction, and cardiovascular malformations', 'Cholestasis, intrahepatic, of pregnancy 3', 'Immunodeficiency 40', 'Infantile liver failure syndrome 3', 'Carnitine palmitoyltransferase I deficiency', 'Argininosuccinic aciduria', 'Lymphoproliferative syndrome 1', 'Hemochromatosis, type 2B', 'Thrombocytopenia 6', 'Isovaleric acidemia', 'Pyogenic sterile arthritis, pyoderma gangrenosum, and acne', 'Anemia, hypochromic microcytic, with iron overload 1', 'Spherocytosis, type 2', 'Thanatophoric dysplasia, glasgow variant', 'Combined oxidative phosphorylation deficiency 37', 'Diarrhea 13', 'Fructose intolerance, hereditary', 'Mitochondrial complex I deficiency, nuclear type 20', 'Infantile-onset multisystem neurologic, endocrine, and pancreatic disease 2', 'Autoinflammatory-pancytopenia syndrome', 'Mitochondrial complex III deficiency, nuclear type 5', 'Cyanosis, transient neonatal', 'Pulmonary fibrosis and/or bone marrow failure syndrome, telomere-related, 7', 'Combined oxidative phosphorylation deficiency 14', 'Arthrogryposis, renal dysfunction, and cholestasis 1', 'Fanconi renotubular syndrome 4 with maturity-onset diabetes of the young', 'Osteopetrosis, autosomal recessive 2', 'Overhydrated hereditary stomatocytosis', 'Carnitine deficiency, systemic primary', 'Fumarase deficiency', 'Combined low LDL and fibrinogen', 'Gaucher disease, type I', 'Osteopetrosis, autosomal dominant 3', 'Hemochromatosis, type 4', 'Elliptocytosis 1', 'Werner syndrome', 'Pyruvate kinase deficiency of red cells', '3-methylglutaconic aciduria, type V', 'Hemophagocytic lymphohistiocytosis, familial, 3', 'Mevalonic aciduria', 'Combined immunodeficiency and megaloblastic anemia with or without hyperhomocysteinemia', 'Hyperparathyroidism, neonatal severe', 'Cardiomyopathy, familial restrictive, 6', 'Mitochondrial complex IV deficiency, nuclear type 3', 'Thrombotic thrombocytopenic purpura, hereditary', 'Anemia, sideroblastic, 2, pyridoxine-refractory', 'Lymphoproliferative syndrome, X-linked, 1', 'Mitochondrial complex IV deficiency, nuclear type 1', 'ATRANSFERRINEMIA', 'Gray platelet syndrome', 'Niemann-pick disease, type C1', 'Immunodeficiency 91 and hyperinflammation', 'Gaucher disease, type III', 'Dehydrated hereditary stomatocytosis 1 with or without pseudohyperkalemia and/or perinatal edema', 'Dyserythropoiesis, congenital, with ultrastructurally normal erythroblastheterochromatin', 'Spherocytosis, type 1', 'Liver disease, severe congenital', 'Anemia, sideroblastic, 5', 'Transcobalamin II deficiency', 'Stormorken syndrome', 'Copper deficiency, familial benign', 'Seckel syndrome 10', 'Spherocytosis, type 4', 'Combined oxidative phosphorylation deficiency 41', 'Hemochromatosis, type 5', 'Trichohepatoenteric syndrome 1', 'Hardikar syndrome', 'Mitochondrial DNA depletion syndrome 4A (Alpers type)', 'Autoinflammation with episodic fever and lymphadenopathy', 'Cholestasis, intrahepatic, of pregnancy, 1', 'Cholestasis, progressive familial intrahepatic, 9', 'Aicardi-Goutieres syndrome 9', 'Methylmalonic aciduria and homocystinuria, Cblf type', 'Congenital disorder of glycosylation, type IIl', 'T-cell lymphoma, subcutaneous panniculitis-like', 'Celiac disease, susceptibility to, 1', 'Splenoportal vascular anomalies', 'Glycogen storage disease Ia', 'Megaloblastic anemia due to dihydrofolate reductase deficiency', 'Abdominal obesity-metabolic syndrome 4', 'Combined oxidative phosphorylation deficiency 10', 'Encephalomyopathy, mitochondrial, due to voltage-dependent anion channel deficiency', 'Trimethylaminuria', 'Thrombocytopenia 5', 'Erythrocytosis, familial, 8', 'Osteopetrosis, autosomal recessive 9', 'Thrombocytopenia with beta-thalassemia, X-linked', 'Proteasome-associated autoinflammatory syndrome 5', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 4A', 'Mcleod syndrome', 'Shwachman-Diamond syndrome 1', 'Sickle cell anemia', 'Medium chain 3-ketoacyl-coa thiolase deficiency', 'Peroxisome biogenesis disorder 8A (Zellweger)', 'Hypermanganesemia with dystonia 1', 'Lymphoproliferative syndrome 2', 'Phosphoenolpyruvate carboxykinase 2, mitochondrial', 'Hepatitis, fulminant viral, susceptibility to', 'Congenital disorder of glycosylation, type IR', 'Dihydropyrimidinuria', 'Distal renal tubular acidosis 3, with or without sensorineural hearing loss', 'RAS-associated autoimmune lymphoproliferative syndrome type IV, somatic', 'Lymphatic malformation 7', 'Dihydrolipoamide dehydrogenase deficiency', 'Congenital disorder of glycosylation, type It', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 1', 'Diamond-Blackfan anemia 16', 'Fibrosis, neurodegeneration, and cerebral angiomatosis', 'Fanconi anemia, complementation group T', 'Bone marrow failure syndrome 6', 'Neuroblastoma, susceptibility to', 'Combined oxidative phosphorylation deficiency 36', 'Mitochondrial trifunctional protein deficiency 2', 'Biliary, renal, neurologic, and skeletal syndrome', 'Congenital disorder of glycosylation, type IIj', 'Autoimmune lymphoproliferative syndrome, type III', 'Mandibular hypoplasia, deafness, progeroid features, and lipodystrophy syndrome', 'Cirrhosis, familial', 'Macrothrombocytopenia and granulocyte inclusions with or without nephritis or sensorineural hearing loss', 'Dyskeratosis congenita, autosomal dominant, 1', 'Anemia, sideroblastic, autosomal dominant', 'Glucose/galactose malabsorption', 'Hemochromatosis, type 1', 'Bone marrow failure syndrome 2', 'Diarrhea 7, protein-losing Enteropathy type', 'Neutropenia, severe congenital, 4, autosomal recessive', 'Iron-Refractory iron deficiency anemia', 'Bernard-Soulier syndrome, type A2, autosomal dominant', 'Chylomicron retention disease', 'Immunodeficiency 98 with autoinflammation, X-linked', 'Immunodeficiency 44', 'Myopathy, lactic acidosis, and sideroblastic anemia 2', 'Neutropenia, severe congenital, 1, autosomal dominant', 'Gaucher disease, type II', 'Cryohydrocytosis', 'Dyskeratosis congenita, autosomal dominant 2', 'Harderoporphyria', 'Specific granule deficiency 2', 'Platelet glycoprotein IV deficiency', 'Gaucher disease, perinatal lethal', 'Immunodeficiency 97 with autoinflammation', 'Eosinophilia, familial', 'Rajab interstitial lung disease with brain calcifications 2', 'Methylmalonic aciduria due to methylmalonyl-coa mutase deficiency', 'Pyloric stenosis, infantile hypertrophic 1', 'Triosephosphate isomerase deficiency', 'Cholestasis, benign recurrent intrahepatic, 2', 'Radioulnar synostosis with amegakaryocytic thrombocytopenia 2', 'Type I hyperlipoproteinemia', 'Intrinsic factor deficiency', 'Hemolytic uremic syndrome, atypical, susceptibility to, 4', 'Morbid obesity and spermatogenic failure', 'Hemolytic uremic syndrome, atypical, susceptibility to, 2', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 1', 'Bleeding disorder, platelet-type, 24, autosomal dominant', 'Diamond-Blackfan anemia 19', 'Immunodeficiency 82 with systemic inflammation', 'Mitchell-Riley syndrome', 'Porphyria, congenital erythropoietic', 'Thrombocytopenia 9', 'Gilbert syndrome', 'Glycogen storage disease type IXb', 'Citrullinemia, classic', 'Combined oxidative phosphorylation deficiency 1', 'Mitochondrial complex I deficiency, nuclear type 39', 'Diabetes mellitus, permanent neonatal 4', 'Hemolytic anemia, G6PD deficient (favism)', 'Autoinflammation with pulmonary and cutaneous vasculitis', 'Shwachman-Diamond syndrome 2', 'Developmental and epileptic encephalopathy 50', 'Glutaric aciduria III', 'Glycogen storage disease Ib', 'Red cell phospholipid defect with hemolysis', 'Analbuminemia', 'Rh-null disease, amorph type', 'Hemolytic uremic syndrome, atypical, susceptibility to, 6', 'Anemia, nonspherocytic hemolytic, possibly due to defect in porphyrinmetabolism', 'Patent ductus venosus', 'Enterokinase deficiency', 'Galactose epimerase deficiency', 'Johanson-Blizzard syndrome', 'Platelet disorder, undefined', 'Transient erythroblastopenia of childhood', 'Bleeding disorder, platelet-type, 21', 'Cholestasis, progressive familial intrahepatic 4', 'Congenital disorder of glycosylation, type IIr', 'Nephronophthisis 19', 'Methylmalonic aciduria and homocystinuria, Cblj type', 'Corticosteroid-binding globulin deficiency', 'Aplasia cutis congenita with intestinal lymphangiectasia', 'Immunodeficiency 56', 'Thrombocytopenic purpura, autoimmune', 'Bernard-Soulier syndrome', 'Lipodystrophy, congenital generalized, type 3', 'Mitochondrial complex IV deficiency, nuclear type 12', 'Mitochondrial myopathy, infantile, transient', 'Peroxisome biogenesis disorder 13A (Zellweger)', 'Lipodystrophy, congenital generalized, type 4', '3-hydroxyisobutyric aciduria', 'Platelet signal processing defect', 'Pseudo-Torch syndrome 2', 'Inflammatory bowel disease (infantile ulcerative colitis) 31', 'Ornithine transcarbamylase deficiency, hyperammonemia due to', 'Short-Rib thoracic dysplasia 10 with or without polydactyly', 'Pseudohypoaldosteronism, type I, autosomal dominant', 'Diarrhea 1, secretory chloride, congenital', 'Fanconi renotubular syndrome 1', 'Acyl-Coa dehydrogenase, medium-chain, deficiency of', 'Hyperzincemia with functional zinc depletion', 'Agammaglobulinemia 8B, autosomal recessive', 'Diarrhea 12, with microvillus atrophy', 'Infantile sialic acid storage disease', 'Immunodysregulation, polyendocrinopathy, and enteropathy, X-linked', 'Myopathy, lactic acidosis, and sideroblastic anemia 1', 'Wolfram syndrome, mitochondrial form', 'Thrombocytopenia with elevated serum IgA and renal disease', 'Ichthyosis, leukocyte vacuoles, alopecia, and sclerosing cholangitis', 'Polycystic liver disease 1 with or without kidney cysts', 'Immunodeficiency 48', 'Acetophenetidin sensitivity', 'Ceroid storage disease', 'von Willebrand disease, type 3', 'Dohle bodies and leukemia', 'Hemochromatosis, type 3', 'Amegakaryocytic thrombocytopenia, congenital', 'Thrombocythemia 1', 'Interleukin 1 receptor antagonist deficiency', 'Neutrophilia, hereditary', '3-Hydroxyacyl-Coa dehydrogenase deficiency', 'Neurodevelopmental disorder with microcephaly, seizures, and neonatal cholestasis', 'Pseudohypoaldosteronism, type I, autosomal recessive', 'Hemolytic uremic syndrome, atypical, susceptibility to, 3', 'Anemia, hemolytic, Rh-null, Regulator type', 'Congenital disorder of glycosylation, type IIe', 'Ovalocytosis, hereditary hemolytic, with defective erythropoiesis', 'Diamond-Blackfan anemia 12', 'Prekallikrein deficiency', 'Immunodeficiency 64', 'Hemolytic uremic syndrome, atypical, susceptibility to, 1', 'Thrombocytopenia 10', 'Aicardi-Goutieres syndrome 4', 'Immunodeficiency 7, TCR-alpha/beta deficient', 'Renal-Hepatic-Pancreatic dysplasia 2', 'Farber lipogranulomatosis', 'Cinca syndrome', 'Glycosylphosphatidylinositol deficiency', 'Apparent mineralocorticoid excess', 'Immunodeficiency 52', 'Combined oxidative phosphorylation deficiency 47', 'Amino aciduria with mental deficiency, dwarfism, muscular dystrophy,osteoporosis, and acidosis', 'Congenital disorder of glycosylation, type IID', 'Mitochondrial complex I deficiency, nuclear type 32', 'Diamond-Blackfan anemia 3', 'Phosphoglycerate dehydrogenase deficiency', 'Bone marrow failure syndrome 4', 'Combined malonic and methylmalonic aciduria', 'Hyperammonemia due to carbonic anhydrase VA deficiency', 'Lymphoproliferative syndrome, X-linked, 2', 'Galactosialidosis', 'Peroxisome biogenesis disorder 3B', 'Pseudo-Torch syndrome 3', 'Diarrhea 4, malabsorptive, congenital', 'Diamond-Blackfan anemia 18', 'Congenital short bowel syndrome', 'Infantile liver failure syndrome 2', 'Carnitine palmitoyltransferase II deficiency, infantile', 'Homocystinuria-megaloblastic anemia, cblg Complementation type', 'Band-Like calcification with simplified gyration and polymicrogyria', 'Methylmalonyl-Coa epimerase deficiency', 'Ataxia-Pancytopenia syndrome', 'Lactase deficiency, congenital', 'Asplenia, isolated congenital', 'Autoinflammation with arthritis and dyskeratosis', 'Renal tubulopathy, diabetes mellitus, and cerebellar ataxia', 'Berry aneurysm, cirrhosis, pulmonary emphysema, and cerebral calcification', 'Niemann-pick disease, type C2', 'Immunodeficiency 63 with lymphoproliferation and autoimmunity', 'Mitochondrial complex I deficiency, nuclear type 13', 'Sideroblastic anemia with B-cell immunodeficiency, periodic fevers, and developmental delay', 'Hemoglobin-Delta locus', 'Arthrogryposis, renal dysfunction, and cholestasis 2', 'Autoimmune lymphoproliferative syndrome', 'Blue rubber bleb nevus', 'Homocystinuria-megaloblastic anemia, cbl E type', 'Dyskeratosis congenita, autosomal dominant 3', 'Reynolds syndrome', 'Combined oxidative phosphorylation deficiency 4', 'Coenzyme Q10 deficiency, primary, 3', 'Autoimmune lymphoproliferative syndrome, type IIA', 'Megaloblastic anemia, folate-responsive', 'Apolipoprotein C-II deficiency', 'Erythroderma, lethal congenital', 'Methylmalonic aciduria and homocystinuria, Cblc type', 'Diarrhea 10, protein-losing enteropathy type', 'B-cell expansion with NFKB and T-cell anergy', 'Pancreatitis, hereditary', 'Hypercholanemia, familial', '3-Methylcrotonyl-CoA carboxylase 2 deficiency', 'Axial osteomalacia', 'Aicardi-Goutieres syndrome 6', 'Combined oxidative phosphorylation deficiency 43', 'Camurati-Engelmann disease', 'Thrombocytopenia, X-linked, with or without dyserythropoietic anemia', 'Hemangioma-Thrombocytopenia syndrome', 'Vasculitis, autoinflammation, immunodeficiency, and hematologic defects syndrome', 'Combined oxidative phosphorylation deficiency 8', 'Uridine 5-prime monophosphate hydrolase deficiency, hemolytic anemiadue to', 'Retinitis pigmentosa and erythrocytic microcytosis', 'Mitochondrial complex III deficiency, nuclear type 9', 'Diamond-Blackfan anemia 20', 'Porphyria, acute hepatic', 'Leukoencephalopathy, progressive, infantile-onset, with or without deafness', 'Glutaric acidemia I', 'Folate malabsorption, hereditary', 'Mitochondrial complex I deficiency, nuclear type 25', 'Periodic fever, immunodeficiency, and thrombocytopenia syndrome', 'Carbamoyl phosphate synthetase I deficiency, hyperammonemia due to', 'Aicardi-Goutieres syndrome 7', 'Mitochondrial DNA depletion syndrome 9 (encephalomyopathic type with methylmalonic aciduria)', 'Immunodeficiency 16', 'Combined oxidative phosphorylation deficiency 23', 'Combined oxidative phosphorylation deficiency 18', 'Storage pool platelet disease', 'Glutathione synthetase deficiency', 'Renal-hepatic-pancreatic dysplasia 1', 'Bile acid synthesis defect, congenital, 6', 'Coronary artery disease, autosomal dominant 2', 'Myeloperoxidase deficiency', 'Dyskeratosis congenita, autosomal recessive, 2', 'Methemoglobinemia due to deficiency of methemoglobin reductase', 'Osteopetrosis, autosomal recessive 7', 'Neutropenia, severe congenital, 6, autosomal recessive', 'Holocarboxylase synthetase deficiency', 'Erythroderma, congenital, with palmoplantar keratoderma, hypotrichosis, and hyper-ige', 'Inflammatory bowel disease, immunodeficiency, and encephalopathy', 'Cerebroretinal microangiopathy with calcifications and cysts 2', 'Hypophosphatasia, adult', 'Gracile syndrome', 'Factor XI deficiency', 'Hemolytic uremic syndrome, atypical, susceptibility to, 5', 'Epilepsy, progressive myoclonic, 4, with or without renal failure', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 4', 'Combined oxidative phosphorylation deficiency 53', 'Diabetes mellitus, permanent neonatal 1', 'Erythrocytosis 6', 'Chondroitin-6-Sulfaturia, defective cellular immunity, nephrotic syndrome', 'Elliptocytosis-3', 'Immunodeficiency 71 with inflammatory disease and congenital thrombocytopenia', 'Tangier disease', 'Isobutyryl-CoA dehydrogenase deficiency', 'Mitochondrial complex III deficiency, nuclear type 11', 'AMED syndrome, digenic', 'Osteosclerotic metaphyseal dysplasia', 'Amyloidosis, familial visceral', 'Congenital disorder of glycosylation, type IIh', 'Coenzyme Q10 deficiency, primary, 1', 'Lipoyltransferase 1 deficiency', 'Orthostatic hypotension 2', 'Hypophosphatasia, infantile', 'SPLENOMEGALY SYNDROME WITH SPLENIC GERMINAL CENTER HYPOPLASIA ANDREDUCED CIRCULATING T-HELPER CELLS', 'Chylomicronemia, familial, due to circulating inhibitor of lipoproteinlipase', 'Hypophosphatemic rickets, autosomal dominant', 'Kenny-caffey syndrome, type 2', 'Juvenile polyposis/hereditary hemorrhagic telangiectasia syndrome', 'Alagille syndrome 2', 'Glycogen storage disease VII', 'Dyskeratosis congenita, autosomal recessive 1', 'Argininemia', 'Mitochondrial DNA depletion syndrome 17', 'Mitochondrial complex IV deficiency, nuclear type 20', 'Premature aging syndrome, Okamoto type', 'Acrodermatitis enteropathica, Zinc-Deficiency type', '3-Methylglutaconic aciduria with deafness, encephalopathy, and leigh-like syndrome', 'Myopathy with exercise intolerance, Swedish type', 'Bone marrow failure syndrome 3', 'Chronic granulomatous disease 5, autosomal recessive', 'Ichthyosiform erythroderma, corneal involvement, and deafness', 'Hyperlipoproteinemia, type V', 'Peripheral neuropathy with variable spasticity, exercise intolerance, and developmental delay', 'Bare lymphocyte syndrome, type II', 'Mitochondrial myopathy, episodic, with optic atrophy and reversible leukoencephalopathy', 'Fanconi anemia, complementation group G', 'Immunodeficiency, common variable, 8, with autoimmunity', 'THIOPURINE S-METHYLTRANSFERASE DEFICIENCY', 'Macrocytosis, familial', 'Autoinflammation, immune dysregulation, and eosinophilia', '5-@oxoprolinase deficiency', 'Riboflavin deficiency', 'Diamond-Blackfan anemia-like', 'Mitochondrial DNA depletion syndrome 8A (encephalomyopathic type with renal tubulopathy)', 'Immune defect due to absence of thymus', 'Hemoglobin H disease', 'Immunodeficiency 92', 'Erythrocytosis, familial, 5', 'Erythrocytosis 7', 'Chronic atrial and intestinal dysrhythmia', 'Microcephaly, Amish type', 'Wt limb-blood syndrome', 'Glycogen storage disease Ic', 'Nephrotic syndrome, type 7', 'Forsythe-Wakeling syndrome', 'Diamond-Blackfan anemia 4', 'Blue diaper syndrome', 'Diamond-Blackfan anemia 17', 'Diamond-Blackfan anemia 6', 'Stomatin-deficient cryohydrocytosis with neurologic defects', 'Fanconi anemia, complementation group E', 'NEPHROSIALIDOSIS', 'Pyruvate carboxylase deficiency', 'Hypervalinemia or hyperleucine-isoleucinemia', 'Myelodysplasia and leukemia syndrome with monosomy 7', 'Mirage syndrome', 'Cardiofaciocutaneous syndrome 3', 'Gracile bone dysplasia', 'Adenosine triphosphate, elevated, of erythrocytes', 'Fanconi renotubular syndrome 3', 'Bleeding disorder, platelet-type, 15', 'Immunodeficiency 54', 'Combined oxidative phosphorylation deficiency 11', 'Mitochondrial complex IV deficiency, nuclear type 10', 'Peroxisome biogenesis disorder 5A (Zellweger)', 'Plasminogen activator inhibitor-1 deficiency', 'Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-negative, NK cell-negative, due to adenosine deaminase deficiency', 'Immunodeficiency, X-linked, with hyper-IgM', 'Neuraminidase deficiency', 'Mitochondrial complex I deficiency, nuclear type 29', 'Polycystic kidney disease 3', 'N-acetylglutamate synthase deficiency', '3-Methylglutaconic aciduria with cataracts, neurologic involvement, and neutropenia', 'Pituitary adenoma 4, ACTH-secreting, somatic', 'Glycogen storage disease, type IXa1', 'Immunodeficiency 105, severe combined', 'Sucrase-isomaltase deficiency, congenital', 'Fallot complex with severe mental and growth retardation', 'Chediak-Higashi syndrome', 'Athrombia, essential', 'DUBIN-JOHNSON syndrome', 'Vascular malformation, primary intraosseous', 'Combined oxidative phosphorylation deficiency 17', 'Mitochondrial complex IV deficiency, nuclear type 22', 'Lipodystrophy, familial partial, type 5', 'Myopathy, distal, Tateyama type', 'Myeloproliferative/lymphoproliferative neoplasms, familial (multiple types), susceptibility to', 'Meckel syndrome, type 7', 'Combined oxidative phosphorylation deficiency 2', 'Combined oxidative phosphorylation deficiency 31', 'Calvarial doughnut lesions with bone fragility', 'Anemia, congenital dyserythropoietic, type IIIb, autosomal recessive', 'Fanconi anemia', 'Preeclampsia/eclampsia 1', 'Renal tubular acidosis, proximal, with ocular abnormalities and mentalretardation', 'Diamond-Blackfan anemia 7', 'Autoinflammation, panniculitis, and dermatosis syndrome', 'Thrombocytopenia 2', 'Mitochondrial DNA depletion syndrome 5 (encephalomyopathic with or without methylmalonic aciduria)', 'Fanconi anemia, complementation group F', 'Nephrotic syndrome, type 1', 'Chanarin-Dorfman syndrome', 'Diabetes mellitus, neonatal, with congenital hypothyroidism', 'Porphyria cutanea tarda', '3-Methylcrotonyl-CoA carboxylase 1 deficiency', 'Immunodeficiency 31C', 'Combined oxidative phosphorylation deficiency 48', 'Hyperchlorhidrosis, isolated', 'Combined oxidative phosphorylation deficiency 46', 'Cystic fibrosis', 'Autoimmune polyendocrine syndrome, type II', 'COACH syndrome 3', 'Hawkinsinuria', 'Arteriosclerosis, severe juvenile', 'Elliptocytosis 2', 'Mitochondrial complex I deficiency, nuclear type 7', 'Fanconi anemia, complementation group D1', 'Congenital disorder of glycosylation, type Ix', 'STING-associated vasculopathy, infantile-onset', 'Autoimmune lymphoproliferative syndrome, type V', 'Fanconi anemia, complementation group C', 'Sengers syndrome', 'Mitochondrial complex III deficiency, nuclear type 7', 'Immunodeficiency 21', 'Mullerian derivatives, persistence of, with lymphangiectasia and postaxial polydactyly', 'Immunoosseous dysplasia, Schimke type', 'Microcephaly, congenital cataract, and psoriasiform dermatitis', 'Bleeding disorder, platelet-type, 25', 'Malignant hyperthermia, susceptibility to, 1', 'Hypophosphatemic bone disease', 'Fructose-1,6-bisphosphatase deficiency', 'Hutchinson-Gilford progeria syndrome', 'Erythrocytosis, familial, 1', 'Autoinflammatory syndrome, familial, with or without immunodeficiency', 'Severe combined immunodeficiency with sensitivity to ionizing radiation', 'PERSISTENT POLYCLONAL B-CELL LYMPHOCYTOSIS', 'Platelet disorder, familial, with associated myeloid malignancy', 'ACERULOPLASMINEMIA', 'Thrombocytopenia 4', 'Biliary atresia, extrahepatic', 'Agammaglobulinemia 9, autosomal recessive', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 2', 'Proteasome-associated autoinflammatory syndrome 4', 'Ectodermal dysplasia and immunodeficiency 2', 'Malonyl-CoA decarboxylase deficiency', 'Coenzyme Q10 deficiency, primary, 2', 'Kearns-Sayre syndrome', 'Hypercholanemia, familial 2', 'Mitochondrial DNA depletion syndrome 18', 'Lipodystrophy, familial partial, type 3', 'Congenital disorder of glycosylation, type Ia', 'Lymphoproliferative syndrome 3', 'Diamond-Blackfan anemia 9', 'Thrombophilia due to protein S deficiency, autosomal recessive', 'Von willebrand disease, type 2', 'Mitochondrial complex I deficiency, nuclear type 6', 'Mitochondrial complex IV deficiency, nuclear type 7', 'Mitochondrial complex IV deficiency, nuclear type 13', 'Von willebrand disease, X-linked form', 'Combined oxidative phosphorylation deficiency 55', 'Mitochondrial DNA depletion syndrome 19', 'Neurodevelopmental disorder with dysmorphic facies and ischiopubic hypoplasia', 'Familial apolipoprotein gene cluster deletion syndrome', 'Meckel syndrome 3', 'Hyaline fibromatosis syndrome', 'Pseudo-Von willebrand disease', 'Encephalopathy, ethylmalonic', 'Pseudohypoaldosteronism, type IIE', 'Autoinflammatory syndrome, familial, X-linked, Behcet-like 2', 'Corticosterone methyloxidase type I deficiency', 'Nephronophthisis 11', 'HDL deficiency, familial, 1', 'Renal tubular acidosis III', 'Pseudohypoaldosteronism, type IIC', 'Combined oxidative phosphorylation deficiency 5', 'Nephronophthisis 16', 'Pancreatic and cerebellar agenesis', 'Mucopolysaccharidosis-Plus syndrome', 'Tatsumi factor deficiency', 'Splenomegaly, cytopenia, and vision loss', 'Hypophosphatemic rickets, autosomal recessive', 'Factor V deficiency', 'Oslam syndrome', 'Immunodeficiency 41 with lymphoproliferation and autoimmunity', 'Mitochondrial complex I deficiency, nuclear type 1', '3-methylglutaconic aciduria, type VIII', 'Homozygous 11p15-p14 deletion syndrome', 'Epiphyseal chondrodysplasia, Miura type', 'D-bifunctional protein deficiency', 'Acetyl-CoA carboxylase deficiency', 'GM1-gangliosidosis, type II', 'Lipodystrophy, familial partial, type 2', 'Atelis syndrome 2', 'Congenital disorder of glycosylation, type Ic', 'Diabetes mellitus, ketosis-prone', 'Renal tubular acidosis, distal, with nephrocalcinosis, short stature, mental retardation, and distinctive facies', 'Pyropoikilocytosis, hereditary', 'Senior-Loken syndrome 9', 'Neutrophilic dermatosis, acute febrile', 'Peroxisome biogenesis disorder 6A (Zellweger)', 'Erythrocytosis, familial, 4', 'Hyperparathyroidism, neonatal self-limited primary, with hypercalciuria', 'Bleeding disorder, platelet-type, 8', 'Diabetes insipidus, nephrogenic, 2', 'Autoimmune lymphoproliferative syndrome, type IIB', 'Thiamine-Responsive megaloblastic anemia syndrome', 'Renal tubular acidosis, proximal', 'Mitochondrial complex I deficiency, nuclear type 5', 'Body mass index quantitative trait locus 20', 'Hypercholesterolemia, autosomal recessive', 'Spinocerebellar ataxia, autosomal recessive 21', 'Portal hypertension, noncirrhotic', 'Congenital disorder of glycosylation, type Il', 'Immunodeficiency 94 with autoinflammation and dysmorphic facies', 'Hemochromatosis, type 2A', 'Primordial dwarfism-immunodeficiency-lipodystrophy syndrome', 'Thrombocythemia 3', 'Bartter syndrome, type 1, antenatal', 'Glanzmann thrombasthenia 2', 'Giant platelet syndrome with thrombocytopenia', 'Diamond-Blackfan anemia 1', 'Homocystinuria due to cystathionine beta-synthase deficiency', 'Mitochondrial pyruvate carrier deficiency', 'Coumarin resistance', 'Hemopoietic proliferation', 'Leukocyte nuclear appendages, hereditary prevalence of', 'Giant neutrophil leukocytes', 'Antithrombin, familial hemorrhagic diathesis due to', 'Car factor deficiency', 'HYPERHEPARINEMIA', 'Pechet factor deficiency', 'Platelet factor 3 deficiency', 'Long-Chain 3-hydroxyacyl-coa dehydrogenase deficiency', 'Thrombocythemia 2', 'Mitochondrial phosphate carrier deficiency', 'Glanzmann thrombasthenia', 'Congenital disorder of glycosylation, type IIB', 'Cystinosis, nephropathic', 'Cryoglobulinemia, familial mixed', 'Intrinsic factor and R binder, combined congenital deficiency of', 'Immunodeficiency 60', 'Combined oxidative phosphorylation deficiency 38', 'Fish-Eye disease', 'Mitochondrial complex I deficiency, nuclear type 34', 'Diamond-Blackfan anemia 5', 'Carnitine palmitoyltransferase II deficiency, lethal neonatal', 'Short stature with microcephaly and distinctive facies', 'Mitochondrial complex IV deficiency, nuclear type 6', 'Cerebroretinal microangiopathy with calcifications and cysts 1', 'Gaucher disease, type IIIC', 'Diarrhea 9', 'Anemia, sideroblastic, X-linked', 'Mitochondrial complex IV deficiency, nuclear type 5, (French-Canadian)', 'Granulomatous disease, chronic, autosomal recessive, cytochrome b-positive, type II', 'Granulomatous disease, chronic, autosomal recessive, cytochrome b-positive, type I', 'Thrombocytopenia 3', 'Hemolytic uremic syndrome, atypical, 8, with rhizomelic short stature', 'Mitochondrial complex I deficiency, nuclear type 35', 'Hypothyroidism, congenital, nongoitrous, 6', 'Proteasome-associated autoinflammatory syndrome 1 and digenic forms', 'Fabry disease', 'Pancreatic beta cell agenesis with neonatal diabetes mellitus', 'Malignant hyperthermia, susceptibility to, 4', 'Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-positive, NK cell-positive', 'Pseudohypoaldosteronism, type IB3, autosomal recessive', 'Cardiac valvular defect, developmental', 'Immunodeficiency due to purine nucleoside phosphorylase deficiency', 'Erythrocytosis, familial, 2', 'Hypertriglyceridemia 2', 'Epileptic encephalopathy, early infantile, 82', 'Lymphedema, hereditary, III', 'Bartter syndrome, type 2', 'Polycystic kidney disease 2', 'Diamond-Blackfan anemia 8', 'Radioulnar synostosis with amegakaryocytic thrombocytopenia', 'Mitochondrial complex III deficiency, nuclear type 8', 'Lymphangiectasia, intestinal', 'Autoinflammatory syndrome, familial, Behcet-like', 'Factor VIII deficiency', 'Pancreatic agenesis and congenital heart defects', 'Scott syndrome', 'Diamond-Blackfan anemia 13', 'Hypophosphatemic rickets, autosomal recessive, 2', 'Krabbe disease', 'Fanconi anemia, complementation group R', 'Peroxisome biogenesis disorder 4B', 'Tubulointerstitial kidney disease, autosomal dominant, 4', 'Atherosclerosis susceptibility', 'Primary release disorder of platelets', 'Nephrolithiasis/osteoporosis, hypophosphatemic, 2', 'Immunodeficiency, common variable, 2', 'GRANULOMATOUS DISEASE, CHRONIC, AUTOSOMAL RECESSIVE, CYTOCHROME b-NEGATIVE', 'Microcephaly, epilepsy, and diabetes syndrome 2', 'Hypogonadotropic hypogonadism 18 with or without anosmia', 'Multiple acyl-CoA-dehydrogenase deficiency', 'Thrombocytopenia, Paris-Trousseau type', 'Trichohepatoenteric syndrome 2', 'Mitochondrial complex I deficiency, nuclear type 3', 'Hypokalemic alkalosis, familial, with specific renal tubulopathy', 'Hatipoglu immunodeficiency syndrome', 'Paget disease of bone 5, juvenile-onset', 'Diabetes mellitus, transient neonatal, 1', 'Noonan syndrome 1', 'Diamond-Blackfan anemia 21', 'Combined oxidative phosphorylation deficiency 28', 'Chromosome 5q deletion syndrome', 'Phenformin 4-hydroxylation', 'Cholestasis, benign recurrent intrahepatic 1', 'Glut1 deficiency syndrome 2', 'Afibrinogenemia, congenitalhypofibrinogenemia, congenital, included', 'Coenzyme Q10 deficiency, primary, 5', 'Combined oxidative phosphorylation deficiency 13', 'Maturity-Onset diabetes of the young, type 8, with exocrine dysfunction', 'ABETALIPOPROTEINEMIA', 'Edinburgh malformation syndrome', 'Tubulointerstitial kidney disease, autosomal dominant, 5', 'Pontocerebellar hypoplasia, hypotonia, and respiratory insufficiency syndrome, neonatal lethal', 'Thrombophilia due to histidine-rich glycoprotein deficiency', 'Platelet-Activating factor acetylhydrolase deficiency', 'Sulfhemoglobinemia, congenital', 'Vitamin d-dependent rickets, type 3', 'Glycerol kinase deficiency', 'Prune belly syndrome with pulmonic stenosis, mental retardation, anddeafness', 'Telangiectasia, hereditary hemorrhagic, type 2', 'Hyperostosis corticalis generalisata', 'Factor V and factor VIII, combined deficiency of', 'Factor V and factor VIII, combined deficiency of, with normal proteinc and protein C inhibitor', 'Wolfram syndrome 1', 'Systemic lupus erythematosus', 'Fanconi anemia, complementation group D2', 'Combined oxidative phosphorylation deficiency 3', 'Proteasome-Associated autoinflammatory syndrome 2', 'Immunodeficiency 73A with defective neutrophil chemotaxix and leukocytosis', 'Cardiomyopathy, familial hypertrophic, 4', 'Spastic paraplegia and Evans syndrome', 'Nephronophthisis 1', 'Inflammatory skin and bowel disease, neonatal, 2', 'Acth deficiency, isolated', 'Neurodevelopmental disorder with poor growth, spastic tetraplegia, and hearing loss', 'Gastrointestinal ulceration, recurrent, with dysfunctional platelets', 'Immunodeficiency 80 with or without cardiomyopathy', 'Combined oxidative phosphorylation deficiency 21', 'Methylmalonic aciduria and homocystinuria, Cbld type', 'Nephrolithiasis/osteoporosis, hypophosphatemic, 1', 'Juvenile arthritis', 'Camurati-engelmann disease, type 2', 'Pseudohypoaldosteronism, type II', 'Vitamin D hydroxylation-deficient rickets, type 1B', 'Biotinidase deficiencymultiple carboxylase deficiency, late-onset', 'Diarrhea 5, with tufting enteropathy, congenital', 'Monocarboxylate transporter 1 deficiency', 'Multiple mitochondrial dysfunctions syndrome 1', 'VEXAS syndrome, somatic', 'Glycogen storage disease 0, liver', 'Bleeding disorder, platelet-type, 11', 'Mitochondrial complex I deficiency, nuclear type 16', 'Mitochondrial complex I deficiency, nuclear type 15', 'Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-negative, NK cell-positive', 'Autoimmune disease, multisystem, infantile-onset, 1', 'Respiratory infections, recurrent, and failure to thrive with or without diarrhea', 'Peroxisome biogenesis disorder 11A (Zellweger)', 'Factor XIIIB deficiency', 'Agammaglobulinemia 3, autosomal recessive', 'Peroxisome biogenesis disorder 12A (Zellweger)', 'Immunodeficiency 19', 'Bile acid malabsorption, primary', 'Quebec platelet disorder', 'Hypercalcemia, infantile, 1', 'Liddle syndrome 3', 'Leigh syndrome', 'Whim syndrome', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 5', 'LIG4 syndrome', 'Ovalocytosis, hereditary hemolytic', 'Spherocytosis, autosomal recessive', 'Vitamin K-dependent clotting factors, combined deficiency of, 2', 'Gallbladder, agenesis of', 'Polyposis syndrome, hereditary mixed, 1', 'Dent disease 2', 'Thrombocytopenia, autosomal dominant, 7', 'Factor XIII, A subunit, deficiency of', 'Kenny-caffey syndrome, type 1', 'Immunodeficiency 109 with lymphoproliferation', 'Pseudohypoaldosteronism, type IB2, autosomal recessive', 'Neurodevelopmental disorder with poor growth, large ears, and dysmorphic facies', 'Aicardi-Goutieres syndrome 1', 'Combined oxidative phosphorylation deficiency 33', 'Supravalvular aortic stenosis', 'Griscelli syndrome, type 2', 'Malignant hyperthermia, susceptibility to, 2', 'Factor VII deficiency', 'Succinic acidemia', 'Carnitine-acylcarnitine translocase deficiency', 'Combined oxidative phosphorylation deficiency 27', 'Pigmented nodular adrenocortical disease, primary, 4', 'Osteogenesis imperfecta, type XXIII', 'Ovarian hyperstimulation syndrome', 'Felty syndrome', 'Formiminotransferase deficiency', 'Immunodeficiency 75', 'Mitochondrial complex I deficiency, nuclear type 8', 'Hypoalphalipoproteinemia, primary, 2, intermediate', 'Alpha-1-Antitrypsin deficiency', 'Bleeding disorder, platelet-type, 20', 'Hypogonadotropic hypogonadism 20 with or without anosmia', 'Aicardi-Goutieres syndrome 3', '3-hydroxyisobutryl-CoA hydrolase deficiency', 'Nephronophthisis 4', 'Peroxisome biogenesis disorder 7B', 'Pancreatic agenesis, congenital', 'Familial Mediterranean fever, AR', 'Combined oxidative phosphorylation deficiency 45', 'Congenital disorder of glycosylation, type Iw', 'Alagille syndrome 1', 'Retinitis pigmentosa 59', 'Histiocytosis-lymphadenopathy plus syndrome', 'Glyoxalase II deficiency', 'Pseudoxanthoma elasticum-like disorder with multiple coagulation factor deficiency', 'Rhizomelic chondrodysplasia punctata, type 3', 'Immunodeficiency with hyper-IgM, type 4', 'Hypophosphatemic rickets with hypercalciuria, hereditary', 'Sulfide:quinone oxidoreductase deficiency', 'Congenital disorder of glycosylation, type In', 'Glycogen storage disease II', 'Hypertriglyceridemia, familial', 'Maturity-onset diabetes of the young, type 13', 'Abdominal obesity-metabolic syndrome 3', 'Pancreatic insufficiency, combined exocrine', 'Osteochondrodysplasia, rhizomelic, with callosal agenesis, thrombocytopenia,hydrocephalus, and hypertension', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 2', 'Lipodystrophy, congenital generalized, type 2', 'Glycogen storage disease III', 'Multiple mitochondrial dysfunctions syndrome 5', 'Pontocerebellar hypoplasia, type 15', 'Myopathy, mitochondrial, lethal infantile', 'Hypermetabolism due to uncoupled mitochondrial oxidative phosphorylation 2', 'Diamond-Blackfan anemia 11', 'XFE progeroid syndrome', 'Polyposis, skin pigmentation, alopecia, and fingernail changes', 'Malignant hyperthermia, susceptibility to, 3', 'Mitochondrial complex I deficiency, nuclear type 30', 'Immunodeficiency 78 with autoimmunity and developmental delay', 'Lung disease, immunodeficiency, and chromosome breakage syndrome', 'Jejunal atresia', 'Diamond-blackfan anemia 10', 'Lymphangiectasia, pulmonary, congenital', 'VALINEMIA', 'Coproporphyria', 'Maple syrup urine disease', 'Aortic valve disease 2', 'Hepatorenocardiac degenerative fibrosis', 'Alpha-methylacetoacetic aciduria', 'Fanconi renotubular syndrome 2', 'Marbach-Rustad progeroid syndrome', 'Mitochondrial complex I deficiency, nuclear type 33', 'DEGCAGS syndrome', 'Mental retardation, enteropathy, deafness, peripheral neuropathy, ichthyosis, and keratoderma', 'Mitochondrial complex I deficiency, nuclear type 26', 'Pyruvate dehydrogenase E1-beta deficiency', 'Mitochondrial complex IV deficiency, nuclear type 2', 'Retinitis pigmentosa 89', 'Hyperornithinemia-hyperammonemia-homocitrullinemia syndrome', 'Deoxyribose-5-Phosphate aldolase deficiency', 'Mitochondrial complex I deficiency, nuclear type 37', 'Immunoerythromyeloid hypoplasia', 'Coronary artery disease, autosomal dominant, 1', 'Hermansky-Pudlak syndrome 2', 'Immunodeficiency 17', 'Chronic granulomatous disease, X-linked', 'Atelis syndrome 1', 'Pyruvate dehydrogenase phosphatase deficiency', 'Scid, autosomal recessive, T-Negative/b-Positive type', 'Short stature, Dauber-Argente type', 'Mitochondrial complex IV deficiency, nuclear type 11', 'Vitamin D hydroxylation-deficient rickets, type 1A', 'Mitochondrial DNA depletion syndrome 12 (cardiomyopathic type)', 'Mitochondrial complex IV deficiency, nuclear type 21', 'Paroxysmal nocturnal hemoglobinuria 2', 'Hydrops fetalis, nonimmune', 'Mitochondrial DNA depletion syndrome 13 (encephalomyopathic type)', 'Hyperglycinemia, lactic acidosis, and seizures', 'Immunodeficiency 15', 'Hyperlipidemia, familial combined, 3', 'Cartilage-hair hypoplasia', 'Spinocerebellar ataxia, autosomal recessive 30', 'Noonan syndrome 8', 'Neutropenia, severe congenital, 9, autosomal dominant', 'Holoprosencephaly 12 with or without pancreatic agenesis', 'Hypophosphatemic rickets, X-linked dominant', 'Immunodeficiency 73B with defective neutrophil chemotaxis and lymphopenia', '3-methylglutaconic aciduria, type VIIA, autosomal dominant', 'Glutathione peroxidase deficiency', 'Mitochondrial complex II deficiency, nuclear type 3', 'Scleroderma, familial progressive', 'Encephalopathy due to defective mitochondrial and peroxisomal fission 1', 'Hypogonadotropic hypogonadism 19 with or without anosmia', 'Fanconi anemia, complementation group Q', 'Donohue syndrome', 'Mitochondrial complex IV deficiency, nuclear type 16', 'Autoimmune disease, multisystem, with facial dysmorphism', 'Xanthinuria, type I', 'Hepatic lipase deficiency', 'Deafness, autosomal dominant 1', 'Sarcoidosis, susceptibility to, 1', 'Immunodeficiency 10', 'Congenital disorder of glycosylation with defective fucosylation 1', 'Bleeding disorder, platelet-type, 9', 'Al-Gazali syndrome', 'Multiple mitochondrial dysfunctions syndrome 6', 'Immunodeficiency 73C with defective neutrophil chemotaxis and hypogammaglobulinemia', 'Alcohol sensitivity, acute', 'Acatalasemia', 'Bone marrow failure syndrome 5', 'Amyotrophic lateral sclerosis 20', 'Lipodystrophy, familial partial, type 6', 'Stuve-Wiedemann syndrome 2', 'Sudden cardiac failure, infantile', 'Hypoalphalipoproteinemia, primary, 2', 'Arima syndrome', 'Wiskott-Aldrich syndrome 2', 'Peutz-Jeghers syndrome', 'Adams-Oliver syndrome 6', 'Hypercholesterolemia, familial, 1', 'Spondyloepiphyseal dysplasia, Kondo-Fu type', 'Liddle syndrome 2', 'Cardiac valvular dysplasia 2', 'Mitochondrial DNA depletion syndrome 1 (MNGIE type)', 'Anemia, nonspherocytic hemolytic, associated with abnormality of redcell membrane', 'Campomelia, Cumming type', 'Dyskeratosis congenita, autosomal dominant 6', 'Acyl-Coa dehydrogenase, short-chain, deficiency of', 'Nephronophthisis 18', 'Senior-Loken syndrome 4', 'Silver-Russell syndrome 4', 'Heinz body anemias', 'Adams-Oliver syndrome 5', 'Immunoglobulin A deficiency 1', 'Intestinal dysmotility syndrome', 'Immunodeficiency 102', 'Hyper-Igd syndrome', 'Wolfram syndrome 2', 'Von willebrand disease, type 1', 'Gitelman syndrome', 'Fanconi anemia, complementation group P', 'Dyskeratosis congenita, autosomal recessive 5', 'Mitochondrial complex V (atp synthase) deficiency, nuclear type 3', 'Lipodystrophy, familial partial, type 4', 'VITAMIN K-DEPENDENT CLOTTING FACTORS, COMBINED DEFICIENCY OF, 1', 'Vitamin D-dependent rickets type 2B with normal vitamin D receptor', 'Osteogenesis imperfecta, type XVI', 'Pseudohypoaldosteronism, type IID', 'Osteopetrosis, autosomal dominant 2', 'Paget disease of bone 3', 'Hermansky-Pudlak syndrome 6', 'Right atrial isomerism (Ivemark)', 'Mucopolysaccharidosis type IIIA', 'Hepatic venoocclusive disease with immunodeficiency', '6-@phosphogluconolactonase deficiency', 'Adenylate kinase deficiency, hemolytic anemia due to', 'Mitochondrial complex I deficiency, nuclear type 22', 'Dk phocomelia syndrome', 'Parana hard-skin syndrome', 'Hyperinsulinemic hypoglycemia, familial, 6', 'Hypertrophic osteoarthropathy, primary, autosomal recessive 2', 'GLYCINE N-METHYLTRANSFERASE DEFICIENCY', 'Neutropenia, severe congenital, 7, autosomal recessive', 'Hypoprebetalipoproteinemia, acanthocytosis, retinitis pigmentosa,and pallidal degeneration', 'Ossification of the posterior longitudinal ligament of spine', 'Pernicious anemia', 'Osteoporosis, juvenile', 'Very long-chain acyl-CoA dehydrogenase deficiency', 'Beemer lethal malformation syndrome', 'Immunodeficiency, common variable, 11', 'C1q deficiency 2', 'Mitochondrial complex I deficiency, nuclear type 9', 'Lipodystrophy, familial partial, type 1', 'Tubulointerstitial kidney disease, autosomal dominant, 2', 'Epilepsy, hearing loss, and mental retardation syndrome', 'Sandhoff disease', 'Neurodevelopmental disorder with or without autism or seizures', 'Ascites, chylous', 'Hyperoxaluria, primary, type I', 'Mitochondrial complex IV deficiency, nuclear type 15', 'Renal cysts and diabetes syndrome', 'Pulmonic stenosis', 'Encephalopathy, neonatal severe, with lactic acidosis and brain abnormalities', 'Neurodevelopmental disorder with epilepsy and hemochromatosis', 'Immunodeficiency, common variable, 1', 'Immunodeficiency 14B, autosomal recessive', 'Specific granule deficiency', 'Short-rib thoracic dysplasia 9 with or without polydactyly', 'Ichthyosis, hepatosplenomegaly, and cerebellar degeneration', 'Myelofibrosis with myeloid metaplasia, somatic', 'ABCD syndrome', 'ACTH-independent macronodular adrenal hyperplasia 2', 'Coach syndrome 2', 'Mitochondrial complex I deficiency, nuclear type 28', 'Immunodeficiency 84', 'Mucopolysaccharidosis type IIIB', 'Lipodystrophy, generalized, with mental retardation, deafness, short stature, and slender bones', 'Mitochondrial complex V (ATP synthase) deficiency nuclear type 5', 'Immunodeficiency 57', 'Familial cold autoinflammatory syndrome 2', 'Paget disease of bone 4', 'Nephrotic syndrome, type 2', 'Mitochondrial complex I deficiency, nuclear type 24', 'Sitosterolemia 2', 'Ovarian dysgenesis 8', 'Liddle syndrome 1', 'Telangiectasia, hereditary hemorrhagic, type 1', 'Imerslund-Grasbeck syndrome 2', 'Adenine phosphoribosyltransferase deficiency', 'Candidiasis, familial chronic mucocutaneous, autosomal recessive', 'Immunodeficiency 76', 'Oxoglutarate dehydrogenase deficiency', 'Pelger-Huet anomaly', 'Senior-Loken syndrome 1', 'Glycoprotein storage disease', 'Epileptic encephalopathy, early infantile, 51', 'Bone marrow failure and diabetes mellitus syndrome', 'Protoporphyria, erythropoietic, 2', 'Aural atresia, multiple congenital anomalies, and mental retardation', 'Graves disease', 'Moyamoya disease 6 with achalasia', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 3', 'von Hippel-Lindau syndrome', 'Neurodevelopmental disorder, mitochondrial, with abnormal movements and lactic acidosis, with or without seizures', 'Estrogen resistance', 'Osteogenesis imperfecta, type II', 'Hyperaldosteronism, familial, type III', 'GM1-gangliosidosis, type I', 'Obesity and hypopigmentation', 'Bone marrow failure syndrome 1', 'HYPERLEUCINE-ISOLEUCINEMIA', 'Tropical calcific pancreatitis', 'Hypogonadotropic hypogonadism 21 with or without anosmia', 'North american indian childhood cirrhosis', 'Nephronophthisis 2', 'Pulmonary hypertension, primary, 1', 'Rickets, vitamin D-resistant, type IIA', '2,4-dienoyl-CoA reductase deficiency', 'Leukotriene C4 synthase deficiency', 'Acrocephalopolydactylous dysplasia', 'Immunodeficiency 42', 'Peroxisome biogenesis disorder 11B', 'Beta-ureidopropionase deficiency', 'Combined saposin deficiency', 'Dyskeratosis congenita, X-linked', 'Immunodeficiency 12', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 6', 'Digeorge syndrome', 'Atrial septal defect 2', 'Immunodeficiency 59 and hypoglycemia', 'Heterotaxy, visceral, 4, autosomal', 'Hypoaldosteronism, congenital, due to CMO II deficiency', 'Hermansky-Pudlak syndrome 9', 'Short-Rib thoracic dysplasia 1 with or without polydactyly', 'Noonan syndrome 4', 'Erythrocytosis, familial, 3', 'Retinal arterial macroaneurysm with supravalvular pulmonic stenosis', 'Hypotonia-cystinuria syndrome', 'Hypokalemic tubulopathy and deafness', 'Lowe syndrome', 'Pulmonic stenosis, atrial septal defect, and unique electrocardiographicabnormalities', 'Hall-Riggs mental retardation syndrome', 'Mungan syndrome', 'Immunodeficiency, common variable, 6', 'Noonan syndrome 12', 'Alstrom syndrome', 'Glycogen storage disease XI', 'Immunodeficiency, common variable, 7', 'Immunodeficiency 85 and autoimmunity', 'Mitochondrial complex I deficiency, nuclear type 14', 'Polycystic kidney disease 4 with or without polycystic liver disease', 'Nephropathy, progressive tubulointerstitial, with cholestatic liverdisease', 'Peroxisome biogenesis disorder 3A (Zellweger)', 'Pontocerebellar hypoplasia, type 13', 'Perlman syndrome', 'Squalene synthase deficiency', 'OSTEOPOROSIS', 'Coenzyme Q10 deficiency, primary, 7', 'Polycystic liver disease 2', 'D-glyceric aciduria', 'Paget disease of bone 6', 'Immunodeficiency 72 with autoinflammation', 'Bangstad syndrome', 'Neurodevelopmental disorder with microcephaly, cataracts, and renal abnormalities', 'Hermansky-Pudlak syndrome 4', 'Epidermolysis bullosa dystrophica, autosomal recessive', 'Coach syndrome 1', 'Hypercholesterolemia, familial, 2', 'Cephalin lipidosis', 'Osteogenesis imperfecta, type XI', 'Dwarfism, Levi type', 'Adrenal hyperplasia, congenital, due to 17-alpha-hydroxylase deficiency', 'Lipodystrophy, congenital generalized, type 1', 'Congenital heart defects, multiple types, 7', 'Hyperlipoproteinemia, type II, and deafness', 'Hemolytic anemia due to glutathione reductase deficiency', 'Periodic fever, familial, autosomal dominant', 'Obesity, early-onset, with adrenal insufficiency and red hair', 'Gastritis, familial giant hypertrophic', 'Noonan syndrome-like disorder with or without juvenile myelomonocytic leukemia', 'Mitochondrial myopathy with lactic acidosis', 'Mucolipidosis III gamma', 'Renal tubular acidosis, distal, autosomal dominant', 'Diabetes mellitus, transient neonatal, 3', 'Myopathy, isolated mitochondrial, autosomal dominant', 'Molybdenum cofactor deficiency, complementation group C', 'Khan-Khan-Katsanis syndrome', 'Neutral lipid storage disease with myopathy', 'Ataxia-oculomotor apraxia 4', 'Iron overload, susceptibility to', 'Mucopolysaccharidosis type IVB (Morquio)', 'Larsen-like syndrome, Lethal type', 'Mandibuloacral dysplasia progeroid syndrome', 'Succinyl CoA:3-oxoacid CoA transferase deficiency', 'Gastrointestinal defects and immunodeficiency syndrome', 'Myeloproliferative disease, autosomal recessive', 'Fanconi anemia, complementation group S', 'OBESITY', 'Congenital disorder of glycosylation, type IIg', 'Hemolytic anemia due to elevated adenosine deaminase', 'Spinal muscular atrophy, type I, with congenital bone fractures', 'Rhizomelic chondrodysplasia punctata, type 2', 'Maturity-onset diabetes of the young, type 14', 'Nephrotic syndrome, type 6', 'Epileptic encephalopathy, early infantile, 53', 'Epileptic encephalopathy, early infantile, 36', 'Cranioectodermal dysplasia', 'Hyperparathyroidism, transient neonatal', 'Tumoral calcinosis, hyperphosphatemic, familial, 3', 'Mitochondrial myopathy, encephalopathy, lactic acidosis, and stroke-like episodes', 'Congenital disorder of glycosylation, type Ii', 'Cerebrotendinous xanthomatosis', 'Metabolic encephalomyopathic crises, recurrent, with rhabdomyolysis, cardiac arrhythmias, and neurodegeneration', 'Hypophosphatemic rickets and hyperparathyroidism', 'Mitochondrial complex I deficiency, nuclear type 4', 'Intellectual developmental disorder, autosomal recessive 1', 'Hyperbilirubinemia, conjugated, type III', 'Crigler-najjar syndrome, type II', 'Wiskott-Aldrich syndrome', 'Diabetes mellitus, permanent neonatal 3, with or without neurologic features', 'Autoinflammatory disease, systemic, X-linked', 'Angioedema, hereditary, 1', 'Hemoglobin-Variants for which the chain carrying the mutation isunknown or uncertain', 'Agammaglobulinemia 1, autosomal recessive', 'Hypopigmentation, organomegaly, and delayed myelination and development', 'Pulmonic stenosis and deafness', 'Combined oxidative phosphorylation deficiency 22', 'Hypobetalipoproteinemia, familial, 2', 'Perrault syndrome 5', 'Porphyria, acute intermittent', 'Cardiomyopathy, dilated, 2C', 'Mitochondrial DNA depletion syndrome 7 (hepatocerebral type)', 'Immunodeficiency 99 with hypogammaglobulinemia and autoimmune cytopenias', 'Congenital disorder of glycosylation, type IE', 'Klippel-Trenaunay-Weber syndrome', 'Anemia, autoimmune hemolytic', 'Budd-Chiari syndrome', 'Immunodeficiency 9', 'Pitt-Hopkins-Like syndrome 2', 'Congenital heart defects, multiple types, 6', 'Inflammatory skin and bowel disease, neonatal, 1', 'Inclusion body myopathy with early-onset Paget disease with or without frontotemporal dementia 2', 'Spondyloepimetaphyseal dysplasia, Shohat type', 'Immunodeficiency 43', 'Glomerulopathy with fibronectin deposits 1', 'Hyperinsulinemic hypoglycemia, familial, 8', 'Intrauterine growth retardation with increased mitomycin C sensitivity', 'Lactase persistence/nonpersistence', 'Visceral myopathy, familial, with external ophthalmoplegia', 'Tricarboxylic acid cycle, defect of', 'Glycogen storage disease of heart, lethal congenital', 'Hypogonadotropic hypogonadism 15 with or without anosmia', 'Congenital disorder of glycosylation, type IQ', '3-methylglutaconic aciduria, type I', 'Diamond-Blackfan anemia 15 with mandibulofacial dysostosis', 'Congenital disorder of glycosylation, type Iy', 'Myoclonic epilepsy associated with ragged-red fibers', 'Diarrhea 2, with microvillous atrophy', 'Pulmonary alveolar proteinosis with hypogammaglobulinemia', 'Deeah syndrome', 'Immunodeficiency, developmental delay, and hypohomocysteinemia', 'Gnathodiaphyseal dysplasia', 'Pituitary hormone deficiency, combined, 1', 'Progeroid short stature with pigmented nevi', 'Lymphedema, primary, with myelodysplasia', 'Hermansky-Pudlak syndrome 3', 'Peroxisome biogenesis disorder 8B', 'Hyperinsulinemic hypoglycemia, familial, 1', 'Hemophilia B', 'Combined oxidative phosphorylation deficiency 20', 'Immunodeficiency 53', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 4', 'Noonan syndrome-like with loose anagen hair 1', 'Tn polyagglutination syndrome', 'Geleophysic dysplasia 1', 'Hyperparathyroidism 4', 'Trichothiodystrophy 3, photosensitive', 'Hydroxykynureninuria', 'Hypereosinophilic syndrome, idiopathic', 'Hypercalcemia, infantile 2', 'Hyperbilirubinemia, familial transient neonatal', 'SULFOCYSTEINURIA', 'Peroxisome biogenesis disorder 4A (Zellweger)', 'Spinal muscular atrophy, segmental', 'Congenital disorder of glycosylation, type IIf', 'Galactosemia IV', 'Ichthyosis, congenital, autosomal recessive 4A', 'Osteochondrodysplasia, complex lethal, Symoens-Barnes-Gistelinck type', 'Angioedema, hereditary, 8', 'Combined oxidative phosphorylation deficiency 7', 'Mitochondrial complex IV deficiency, nuclear type 18', 'Hurler-Scheie syndrome', 'Kagami-Ogata syndrome', 'Nephrotic syndrome, type 15', 'Ventricular septal defect 1', 'Congenital disorder of glycosylation, type Im', 'Atrial standstill 2', 'Immunodeficiency 108 with autoinflammation', 'Aortic aneurysm, familial thoracic 4', 'Immunodeficiency-Centromeric instability-facial anomalies syndrome', 'Peroxisome biogenesis disorder 2A (Zellweger)', 'Neurodevelopmental disorder with dysmorphic facies, impaired speech and hypotonia', 'Bleeding disorder, platelet-type, 14', 'Coenzyme Q10 deficiency, primary, 4', 'Pancreatic lipase deficiency', 'Fucosidosis', 'Hypomagnesemia 7, renal, with or without dilated cardiomyopathy', 'Peroxisome biogenesis disorder 7A (zellweger)', 'Silver-Russell syndrome 5', 'Craniometadiaphyseal dysplasia', 'Osteogenesis imperfecta, type XXII', 'Fanconi anemia, complementation group L', 'Braddock-Carey syndrome 2', 'Neurologic, endocrine, and pancreatic disease, multisystem, infantile-onset', 'Mitochondrial complex I deficiency, nuclear type 18', 'Fatal familial insomnia', 'Bladder dysfunction, autonomic, with impaired pupillary reflex and secondary CAKUT', 'Lipodystrophy, partial, acquired, susceptibility to', 'Pigmented nodular adrenocortical disease, primary, 2', 'Singleton-Merten syndrome 2', 'Multiple mitochondrial dysfunctions syndrome 3', 'Hypercholesterolemia, familial, 3', 'Metabolic crises, recurrent, with variable encephalomyopathic features and neurologic regression', 'Amyotrophic lateral sclerosis 21', 'LMNA-related congenital muscular dystrophy', 'Teratoma, pineal', 'Hyperthermia, cutaneous, with headaches and nausea', 'Insulin-Like growth factor I deficiency', 'Combined oxidative phosphorylation deficiency 44', 'Lethal congenital contracture syndrome 1', 'Dyskeratosis congenita, autosomal recessive 6', 'Myoglobinuria, acute recurrent, autosomal recessive', 'Woronets trait', 'Thrombocytopenia 1', 'Central hypoventilation syndrome, congenital, 3', 'Focal segmental glomerulosclerosis 6', 'Peroxisomal acyl-CoA oxidase deficiency', 'Crigler-Najjar syndrome, type I', 'Pseudohypoaldosteronism, type IIB', 'Oculoskeletodental syndrome', 'Mitochondrial complex I deficiency, nuclear type 23', 'Trichohepatoneurodevelopmental syndrome', 'Mucopolysaccharidosis, type VI', 'Molybdenum cofactor deficiency, complementation group A', 'Hemolytic anemia with thermal sensitivity of red cells', 'Pancreatic agenesis 2', 'Mitochondrial short-chain enoyl-coa hydratase 1 deficiency', 'Cystinosis, late-onset juvenile or adolescent nephropathic', 'Arterial calcification, generalized, of infancy, 2', 'Poikiloderma with neutropenia', 'Short stature and microcephaly with genital anomalies', 'Pontocerebellar hypoplasia, type 6', 'Exudative vitreoretinopathy 4', 'Heterotaxy, visceral, 12, autosomal', 'Combined oxidative phosphorylation deficiency 24', 'Combined oxidative phosphorylation deficiency 29', 'Cranioacrofacial syndrome', 'Duodenal ulcer, hyperpepsinogenemic I', 'Nephrotic syndrome, type 3', 'Charcot-Marie-Tooth disease, type 4K', 'Thrombocytopenia-absent radius syndrome', 'Weill-Marchesani syndrome 3', 'Immunodeficiency 14', 'Dihydropyrimidine dehydrogenase deficiency', 'Familial expansile osteolysis', 'Hyperalphalipoproteinemia 1', 'Spondyloepimetaphyseal dysplasia, Krakow type', 'Mucolipidosis II alpha/beta', 'Fetal hemoglobin quantitative trait locus 1', 'Severe combined immunodeficiency, X-linked', 'Bone fragility with contractures, arterial rupture, and deafness', 'Nestor-Guillermo progeria syndrome', 'Revesz syndrome', 'Immunodeficiency, common variable, 12', 'Congenital disorder of deglycosylation 1', 'Thyrotoxic periodic paralysis, susceptibility to, 1', 'Glucocorticoid resistance', 'Cardiofacioneurodevelopmental syndrome', 'Bleeding disorder, platelet-type, 22', 'Peroxisome biogenesis disorder 1B', 'Disorganization, mouse, homolog of', 'Microcephaly, postnatal progressive, with seizures and brain atrophy', 'Combined osteogenesis imperfecta and Ehlers-Danlos syndrome 1', 'Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 1', 'Heterotaxy, visceral, 1, X-linked', 'Neurodegeneration, early-onset, with choreoathetoid movements and microcytic anemia', 'Epiphyseal dysplasia, multiple, with early-onset diabetes mellitus', 'Bruck syndrome 2', 'Deafness, nerve type, with mesenteric diverticula of small bowel andprogressive sensory neuropathy', 'Hyperinsulinemic hypoglycemia, familial, 2', 'Encephalopathy, acute, infection-induced, susceptibility to, 4', 'Multiple mitochondrial dysfunctions syndrome 2 with hyperglycinemia', 'RECON progeroid syndrome', 'Seckel syndrome 4', 'Hennekam lymphangiectasia-lymphedema syndrome 2', 'Antithrombin III deficiency', 'Rhizomelic syndrome', 'Fanconi anemia, complementation group W', 'Mitochondrial complex IV deficiency, nuclear type 23', 'Muscular dystrophy, congenital hearing loss, and ovarian insufficiency syndrome', 'Cerebrooculofacioskeletal syndrome 1', 'Spinal muscular atrophy, distal, autosomal recessive, 1', 'Hemolytic anemia, congenital, X-linked', 'Hyperlysinemia, type I', 'Plasma fibronectin deficiency', 'Galactokinase deficiency', 'Microcephaly 19, primary, autosomal recessive', 'Hermansky-Pudlak syndrome 5', 'Proprotein convertase 1/3 deficiency', 'Retinal dystrophy and microvillus inclusion disease', 'Hyperlysinuria with hyperammonemia', 'Thyrocerebroretinal syndrome', 'Mesoaxial hexadactyly and cardiac malformation', 'Immunodeficiency 36', 'Plasminogen deficiency, type I', 'Heparin cofactor II deficiency', 'Smith-Lemli-Opitz syndrome', 'Leber optic atrophy and dystonia', 'Congenital disorder of glycosylation, type IIt', 'Geleophysic dysplasia 2', 'Hypogonadotropic hypogonadism 4 with or without anosmia', 'Breath-Holding spells', 'Immunodeficiency 55', 'Ruijs-Aalfs syndrome', 'Ataxia-telangiectasia', 'Amyotrophic lateral sclerosis 4, juvenile', 'Mitochondrial DNA depletion syndrome 4B (mngie type)', 'Cutis laxa, autosomal recessive, type IC', 'Hemolytic anemia, CD59-mediated, with or without immune-mediated polyneuropathy', 'Amyotrophic lateral sclerosis 1', 'Flaujeac factor deficiency', 'Hemolytic anemia due to gamma-glutamylcysteine synthetase deficiency', 'Mitochondrial complex IV deficiency, nuclear type 19', 'Combined oxidative phosphorylation deficiency 32', 'Cleidocranial dysplasia 2', 'Osteopetrosis, autosomal dominant 1', 'Edema, familial idiopathic, prepubertal', 'Bardet-Biedl syndrome 12', 'Nephrotic syndrome, type 9', 'Pyruvate dehydrogenase e1-alpha deficiency', 'Bloom syndrome', 'Barth syndrome', 'Diabetes, permanent neonatal 2, with or without neurologic features', 'Pulmonary hemosiderosis', 'Mandibuloacral dysplasia', 'Neurodegeneration and seizures due to copper transport defect', 'Lactic acidosis, chronic adult form', 'Chromosome 14q32 duplication syndrome, 700-kb', 'Calcific aortic disease with immunologic abnormalities, familial', 'Chromosome 15q25 deletion syndrome', 'Dyskeratosis congenita, digenic', 'Mannose-Binding lectin deficiency', 'Ovarian dysgenesis 1', 'Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy, 2', 'Polycystic kidneys', 'Mitochondrial complex I deficiency, nuclear type 19', 'Polycystic kidney disease 5', 'Dyskeratosis congenita, autosomal recessive, 3', 'Amyotrophic lateral sclerosis 23', 'Hypocalciuric hypercalcemia, familial, type III', 'Osteogenesis imperfecta, type XVII', 'Glucocorticoid deficiency 4 with or without mineralocorticoid deficiency', 'DUODENAL ULCER DUE TO ANTRAL G-CELL HYPERFUNCTION', 'Osteogenesis imperfecta, type XIII', 'Desmosterolosis', 'Combined oxidative phosphorylation deficiency 54', 'Hypogonadotropic hypogonadism 17 with or without anosmia', 'Short-rib thoracic dysplasia 12', 'Vascular hyalinosis', 'L-ferritin deficiency, dominant and recessive', 'Hermansky-Pudlak syndrome 10', 'Stiff-Person syndrome', 'Methemoglobinemia, Beta type', 'Short rib-polydactyly syndrome, type VI', 'Psoriasis 14, pustular', 'Congenital prothrombin deficiency', 'Lymphopenic hypergammaglobulinemia, antibody deficiency, autoimmunehemolytic anemia, and glomerulonephritis', 'Metaphyseal chondrodysplasia, Jansen type', 'Grange syndrome', 'Flynn-Aird syndrome', 'Congenital disorder of glycosylation, type Ik', 'Aortic aneurysm, abdominal', 'Osteopenia and sparse hair', 'Fanconi anemia, complementation group J', 'Hemolytic disease of fetus and newborn, RH-induced', 'Cockayne syndrome, type B', 'Developmental delay with or without intellectual impairment or behavioral abnormalities', 'Leukodystrophy, hypomyelinating, 4', 'Hyperphosphatasia with mental retardation syndrome 6', 'Fg syndrome 2', 'Transcobalamin I deficiency', 'Bleeding disorder, platelet-type, 18', 'Peroxisome biogenesis disorder 6B', 'Telangiectasia, hereditary hemorrhagic, type 5', 'Microcephaly, growth restriction, and increased sister chromatid exchange 2', 'Nephrotic syndrome, type 8', 'Hypothyroidism, congenital, nongoitrous, 8', 'Mitochondrial complex I deficiency, nuclear type 31', 'Cerebral creatine deficiency syndrome 3', 'Harel-Yoon syndrome', 'Histiocytosis, familial lipochrome', 'Cardiomyopathy, dilated, 1I', 'Temple syndrome', 'Neutropenia, severe congenital, 8, autosomal dominant', 'Macrothrombocytopenia, autosomal dominant, tubb1-related', 'Cole-Carpenter syndrome 1', 'Malignant atrophic papulosis', 'Optic atrophy 11', 'Porphyria cutanea tarda, type I', 'Deafness, congenital, and adult-onset progressive leukoencephalopathy', 'Intrauterine growth retardation, metaphyseal dysplasia, adrenal hypoplasia congenita, genital anomalies, and immunodeficiency', 'Myopathy, congenital, with fiber-type disproportion', 'Arterial calcification, generalized, of infancy, 1', 'Peroxisome biogenesis disorder 5B', 'Mucopolysaccharidosis type IIIC', 'Myoclonic epilepsy of Lafora', 'Lipodystrophy, familial partial, type 7', 'Striatonigral degeneration, infantile', 'Coenzyme Q10 deficiency, primary, 8', 'Congenital myopathy 18 due to dihydropyridine receptor defect', 'Dyskeratosis congenita, autosomal recessive 8', 'Bent bone dysplasia syndrome 2', 'Emery-Dreifuss muscular dystrophy 3, autosomal recessive', 'Congenital disorder of glycosylation, type IF', 'Chromosome 1p36.33 duplication syndrome, ATAD3 gene cluster', 'Meier-Gorlin syndrome 4', 'Immunodeficiency 67', 'Immunodeficiency 23', 'PYKNOACHONDROGENESIS', 'Protoporphyria, erythropoietic, X-linked', 'Cutis laxa, autosomal recessive, type IIB', 'Amyotrophic lateral sclerosis-parkinsonism/dementia complex 1', 'Biliary cirrhosis, primary', 'Osteogenesis imperfecta, type I', 'Ophthalmoplegic neuromuscular disorder with abnormal mitochondria', 'Diarrhea 8, secretory sodium, congenital', 'Laterality defects, autosomal dominant', 'Tuftsin deficiency', 'Epidermolysis bullosa simplex with muscular dystrophy', 'Cleft lip/palate with abnormal thumbs and microcephaly', 'Congenital disorder of glycosylation, type Ig', 'Hypertrophic osteoarthropathy, primary, autosomal recessive 1', 'Methylmalonate semialdehyde dehydrogenase deficiency', 'Interstitial pneumonitis, desquamative, familial', 'Megaloblastic anemia 1', 'Myopathy, myofibrillar, 12, infantile-onset, with cardiomyopathy', 'Body mass index quantitative trait locus 19', 'Plasmin inhibitor deficiency', 'Growth hormone deficiency, isolated, type IA', 'Neurodegeneration with brain iron accumulation 8', 'Congenital disorder of glycosylation, type IIy', 'Chondrodysplasia, Blomstrand type', 'Calcification of joints and arteries', 'Pyruvate dehydrogenase e3-binding protein deficiency', 'Macrothrombocytopenia, isolated, 2, autosomal dominant', 'Moyamoya disease 2, susceptibility to', 'Williams-Beuren syndrome', 'Congenital heart defects, multiple types, 8, with or without heterotaxy', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 6', 'Methemoglobinemia, Alpha type', 'Combined oxidative phosphorylation deficiency 25', 'Spondyloepimetaphyseal dysplasia, DI Rocco type', 'Macrocephaly/autism syndrome', 'Antiphospholipid syndrome, familial', 'Sarcoidosis, susceptibility to, 2', 'Leukodystrophy, hypomyelinating, 21', 'Hypomagnesemia 3, renal', 'Coloboma, osteopetrosis, microphthalmia, macrocephaly, albinism, and deafness', 'Psychomotor retardation, epilepsy, and craniofacial dysmorphism', 'OSTEOMESOPYKNOSIS', 'Mitochondrial DNA depletion syndrome 12A (cardiomyopathic type), autosomal dominant', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 3', 'Hypouricemia, renal, 2', 'Joubert syndrome 33', 'Lymphatic malformation 13', 'Aspartylglucosaminuria', 'Ullrich congenital muscular dystrophy 1', 'Aromatic L-amino acid decarboxylase deficiency', 'Mitochondrial complex I deficiency, nuclear type 2', 'Immunodeficiency 81', 'Multiple endocrine neoplasia, type IIB', 'Neurodegeneration, childhood-onset, with progressive microcephaly', 'Factor X deficiency', 'Immunoglobulin kappa light chain deficiency', 'Microcephaly, epilepsy, and diabetes syndrome', 'Neuropathy, hereditary motor and sensory, Okinawa type', 'Poikiloderma, hereditary fibrosing, with tendon contractures, myopathy, and pulmonary fibrosis', 'Mitochondrial complex I deficiency, nuclear type 17', 'Glucocorticoid deficiency 1', 'Pseudodiastrophic dysplasia', 'Autoimmune polyendocrinopathy syndrome , type I, with or without reversible metaphyseal dysplasia', 'Primary lateral sclerosis, adult', 'Bent bone dysplasia syndrome', 'Cranioectodermal dysplasia 2', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 5', 'Epileptic encephalopathy, early infantile, 46', 'Galloway-Mowat syndrome 3', 'Glutathioninuria', 'Congenital heart defects, multiple types, 5', 'Mulibrey nanism', 'Aicardi-Goutieres syndrome 5', 'Factor XII deficiency', 'Hamamy syndrome', 'Epileptic encephalopathy, early infantile, 75', 'Mucolipidosis III alpha/beta', 'Paget disease of bone 2, early-onset', 'Metaphyseal modeling abnormality, skin lesions, and spastic paraplegia', 'Meckel syndrome, type 6', 'Friedreich ataxia 2', 'Mitochondrial complex II deficiency', 'Fanconi renotubular syndrome 5', 'Diarrhea 6', '3-methylglutaconic aciduria, type IX', 'Mitochondrial complex III deficiency, nuclear type 4', 'Thrombophilia, hereditary, due to protein S deficiency, autosomal', 'NONDISJUNCTION', 'Chronic granulomatous disease 3, autosomal recessive', 'Singleton-Merten syndrome 1', 'Congenital heart defects, multiple types, 9', 'Joubert syndrome 8', 'WHIM syndrome 2', 'Spondyloocular syndrome', 'Cutis laxa, autosomal dominant 3', 'Myopathy, myofibrillar, 1', 'Silver-Russell syndrome 3', 'Neurodevelopmental disorder with epilepsy and brain atrophy', 'Pigmented nodular adrenocortical disease, primary, 1', 'Lethal congenital contracture syndrome 5', 'Cervical ribs, sprengel anomaly, anal atresia, and urethral obstruction', 'Noonan syndrome 9', 'Caffey disease', 'Cardiomyopathy, dilated, with woolly hair and keratoderma', 'Charcot-Marie-Tooth disease, axonal, type 2EE', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 4', 'Mitochondrial complex I deficiency, nuclear type 36', 'Primary aldosteronism, seizures, and neurologic abnormalities', 'Multiple congenital anomalies-neurodevelopmental syndrome, X-linked', 'Basal ganglia calcification, idiopathic, childhood-onset', 'Diabetes insipidus, Neurohypophyseal type', 'Maturity-onset diabetes of the young, type 10', 'Cyclic neutropenia', 'Pseudoxanthoma elasticum, forme fruste', 'Arthrogryposis, perthes disease, and upward gaze palsy', 'Factor V and factor VIII, combined deficiency of', 'Cardiomyopathy, dilated, 1L', 'Multiple sulfatase deficiency', 'Angioedema, hereditary, 3', 'Combined oxidative phosphorylation deficiency 39', 'Atherosclerosis, premature, with deafness, nephropathy, diabetes mellitus,photomyoclonus, and degenerative neurologic disease', 'Bleeding disorder, platelet-type, 12', 'Growth hormone insensitivity with immune dysregulation 1, autosomal recessive', 'Vici syndrome', 'HISTIDINEMIA', 'Muscular dystrophy, Cardiac type', 'Lipase deficiency, combined', 'Myopathy, congenital, compton-north', 'Hurler syndrome', 'Mastocytosis, cutaneous', 'Greenberg skeletal dysplasia', 'Visceral myopathy 1', 'Short-Rib thoracic dysplasia 4 with or without polydactyly', 'Macrocephaly, neurodevelopmental delay, lymphoid hyperplasia, and persistent fetal hemoglobin', 'Mitochondrial complex II deficiency, nuclear type 4', 'Thrombophilia due to thrombomodulin defect', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 6', 'Combined D-2- and L-2-hydroxyglutaric aciduria', 'Short stature, microcephaly, and endocrine dysfunction', 'Fanconi-Like syndrome', 'Meconium ileus', 'Noonan syndrome 6', 'Short-Rib thoracic dysplasia 7 with or without polydactyly', 'Congenital heart defects, multiple types, 2', 'Achondrogenesis, type IB', 'Dibasic amino aciduria I', 'Malignant hyperthermia, susceptibility to, 5', 'Lipid storage myopathy due to flavin adenine dinucleotide synthetase deficiency', 'Arthropathy, progressive pseudorheumatoid, of childhood', 'Brachyolmia type 1, Hobaek type', 'Microcephaly, short stature, and impaired glucose metabolism 1', 'Alpha-methylacyl-CoA racemase deficiency', 'Osteogenesis imperfecta, type IV', 'Rhizomelic chondrodysplasia punctata, type 1', 'Diabetes mellitus, noninsulin-dependent', 'Pulmonary fibrosis, idiopathic', 'Cardiac lipidosis, familial', 'Systemic lupus erythematosus 17', 'Muscular dystrophy, limb-girdle, autosomal recessive 18', 'Trehalase deficiency', 'Esophagitis, eosinophilic, 1', 'Esophagitis, eosinophilic, 2', 'Alpha-mannosidosis', 'Muscular dystrophy, progressive pectorodorsal', 'Inflammatory bowel disease 11', 'Leukodystrophy, hypomyelinating, 13', 'Pyruvate dehydrogenase E2 deficiency', 'Hermansky-Pudlak syndrome 7', 'Noonan syndrome 10', 'Hirschsprung disease, susceptibility to, 1', 'Eiken syndrome', 'Cardiomyopathy, dilated, 2F', 'Reticular dysgenesia', 'Agammaglobulinemia 6, autosomal recessive', 'Pontocerebellar hypoplasia, type 1C', 'Thrombophilia due to deficiency of activated protein C cofactor', 'Hypoplastic left heart syndrome', 'Hypoadrenocorticism, familial', 'Cimdag syndrome', 'Lymphedema and cerebral arteriovenous anomaly', 'Bowen-Conradi syndrome', 'Heterotaxy, visceral, 2, autosomal', 'Mahvash disease', 'Bruck syndrome 1', 'Adrenal hyperplasia, congenital, due to 21-hydroxylase deficiency', 'Osteogenesis imperfecta, type VIII', 'Cardiomyopathy, dilated, 1II', 'Angiopathy, hereditary, with nephropathy, aneurysms, and muscle cramps', 'Netherton syndrome', 'Pulmonary edema of mountaineers', 'Welander distal myopathy', 'Neurodevelopmental disorder with microcephaly, hypotonia, nystagmus, and seizures', 'Osteosclerosis with ichthyosis and fractures', 'Cerebellar vermis aplasia with associated features suggesting smith-lemli-opitzsyndrome and meckel syndrome', 'Ataxia, early-onset, with oculomotor apraxia and hypoalbuminemia', 'Polycystic liver disease 3 with or without kidney cysts', 'Interstitial lung disease, nephrotic syndrome, and epidermolysis bullosa, congenital', 'Diamond-Blackfan anemia 14 with mandibulofacial dysostosis', 'Encephalopathy, acute, infection-induced, susceptibility to, 9', 'Encephalopathy, progressive, with or without lipodystrophy', 'Craniodiaphyseal dysplasia, autosomal dominant', 'Developmental and epileptic encephalopathy 44', 'Meier-Gorlin syndrome 2', 'Hypothyroidism, congenital, nongoitrous, 2', 'Pituitary hormone deficiency, combined, 6', 'Glycogen storage disease XIII', 'Familial cold inflammatory syndrome 1', 'Hypophosphatasia, childhood', 'Nijmegen breakage syndrome', 'Developmental and epileptic encephalopathy 62', 'Bartter syndrome, type 4A, neonatal, with sensorineural deafness', 'Immunodeficiency 89 and autoimmunity', 'Acetyl-Coa acetyltransferase-2 deficiency', 'Chromosome 1p36 deletion syndrome, proximal', 'Methionine adenosyltransferase I/III deficiency', 'Gastrointestinal stromal tumor', 'Arthrogryposis multiplex congenita 5', 'EOSINOPHILOPENIA', 'Pineal hyperplasia, insulin-resistant diabetes mellitus, and somatic abnormalities', 'Meckel syndrome 14', 'Thrombophiliavenous thromboembolism, included', 'Smith-Kingsmore syndrome', 'Hyperphenylalaninemia, BH4-deficient, A', 'Hypogonadotropic hypogonadism 26 with or without anosmia', 'Hyperinsulinemic hypoglycemia, familial, 4', 'Mental retardation, autosomal recessive 27', 'Faciocardiomelic syndrome', 'Myasthenic syndrome, congenital, 11, associated with acetylcholine receptor deficiency', 'Surfactant metabolism dysfunction, pulmonary, 4', 'Microcephaly, growth deficiency, seizures, and brain malformations', 'Schindler disease, type I', 'Meier-Gorlin syndrome 5', 'Distichiasis with congenital anomalies of the heart and peripheral', 'Peroxisome biogenesis disorder 10A (Zellweger)', 'Cortisone reductase deficiency 2', 'Hypotonia, infantile, with psychomotor retardation and characteristic facies 2', 'Anemia, sideroblastic, and spinocerebellar ataxia', 'Intestinal pseudoobstruction, neuronal, chronic idiopathic, X-linked', 'Neurodevelopmental disorder with progressive spasticity and brain white matter abnormalities', 'Hyperinsulinemic hypoglycemia, familial, 7', 'Epileptic encephalopathy, early infantile, 86', 'Neuropathy, hereditary sensory and autonomic, type III', 'Ciliary dyskinesia, primary, 16', 'Myopathy with extrapyramidal signs', 'Mucopolysaccharidosis, type II', 'Leiomyomatosis, diffuse, with alport syndrome', 'Phenylketonuria', 'Branchial arch syndrome, X-linked', 'Developmental and epileptic encephalopathy 96', 'Globulin anomaly involving beta (2a)-globulin', 'Cardiac-Urogenital syndrome', 'Amyotrophic lateral sclerosis 12 with or without frontotemporal dementia', 'Lambert syndrome', 'Chromosome 16p13.3 deletion syndrome', 'Porphyria variegata', 'Immunodeficiency 25', 'Maturity-onset diabetes of the young, type 11', 'C syndrome', 'Glycosylphosphatidylinositol biosynthesis defect 25', 'ACCES syndrome', 'Rod-cone dystrophy, sensorineural deafness, and Fanconi-type renal dysfunction', 'Amyotrophic lateral sclerosis 18', 'Celiac artery stenosis from compression by median arcuate ligamentof diaphragm', 'Neurodevelopmental disorder with epilepsy, cataracts, feeding difficulties, and delayed brain myelination', 'Cardiomyopathy, familial hypertrophic, 8', 'Short stature, onychodysplasia, facial dysmorphism, and hypotrichosis', 'Intrauterine growth retardation, metaphyseal dysplasia, adrenal hypoplasiacongenita, and genital anomalies', 'Diabetes insipidus, nephrogenic, X-linked', 'Macrocephaly, alopecia, cutis laxa, and scoliosis', 'Leukodystrophy, hypomyelinating, 18', 'Mucopolysaccharidosis IVA', 'Cerebral cavernous malformations 1', 'Xanthomatosis, susceptibility to', 'Immunodeficiency 62', 'Thyroid hormone metabolism, abnormal, 2', 'Microcephaly 23, primary, autosomal recessive', 'Cerebroretinal microangiopathy with calcifications and cysts 3', 'Cardiac valvular dysplasia, X-linked', 'Pseudoxanthoma elasticum', 'Pseudopseudohypoparathyroidism', 'Avascular necrosis of femoral head, primary, 1', 'Heterotaxy, visceral, 7, autosomal', 'Short stature, facial dysmorphism, and skeletal anomalies with or without cardiac anomalies', 'Sertoli cell-only syndrome', 'Lymphatic malformation 9', 'Platelet prostacyclin receptor defect', 'Thyroid hormone resistance, generalized, autosomal recessive', 'Diaphyseal medullary stenosis with malignant fibrous histiocytoma', 'Alpha-Fetoprotein deficiency', 'Alpha-Fetoprotein, hereditary persistence of', 'Congenital disorder of glycosylation, type Id', 'GM1-gangliosidosis, type III', 'Conotruncal heart malformations', 'Hepatic adenomas, familial', 'Combined oxidative phosphorylation deficiency 15', 'Microcephaly, cerebellar hypoplasia, and cardiac conduction defect syndrome', 'Thrombophilia, hereditary, due to protein C deficiency, autosomaldominant', 'Neuronopathy, distal hereditary motor, type VIIB', 'Ondontochondrodysplasia 2 with hearing loss and diabetes', 'Immunodeficiency 32A', 'Diarrhea 11, malabsorptive, congenital', 'Molybdenum cofactor deficiency, complementation group B', 'Myeloproliferative disorder, chronic, with eosinophilia', 'Micromelic bone dysplasia with cloverleaf skull', 'Inclusion body myopathy with early-onset Paget disease without frontotemporal dementia 3', 'Pseudohypoparathyroidism, type IB', 'Aortic valve disease 3', 'Secretory component deficiency', 'Aortic aneurysm, familial thoracic 6', 'Fibrodysplasia ossificans progressiva', 'Polycystic liver disease 4 with or without kidney cysts', 'Yellow nail syndrome', 'Seizures, sensorineural deafness, ataxia, mental retardation, and electrolyte imbalance', 'INTERLEUKIN 1, DEFECTIVE T-CELL RESPONSE TO', 'Deafness, autosomal dominant 34, with or without inflammation', 'Epiphyseal dysplasia, multiple, 3, with or without myopathy', 'Congenital disorder of glycosylation, type IAA', 'Vasculitis, lymphocytic, nodular', 'Rhyns syndrome', 'Epilepsy, early-onset, vitamin b6-dependent', 'Growth restriction, hypoplastic kidneys, alopecia, and distinctive facies', 'ENDOVE syndrome, limb-brain type', 'Osteogenesis imperfecta, type XIV', 'Watson syndrome', 'Congenital myopathy 15', 'Hyper-IgE recurrent infection syndrome 5, autosomal recessive', 'Diastasis recti and weakness of the linea alba', 'Osteopoikilosis and dacryocystitis', 'CHIME syndrome', 'Pseudohypoparathyroidism, type IA', 'PERCHING syndrome', 'Polyendocrine-polyneuropathy syndrome', 'Hyper-IgE syndrome 2, autosomal recessive, with recurrent infections', 'Pontocerebellar hypoplasia, type 14', 'Growth hormone deficiency, isolated partial', 'Galloway-Mowat syndrome 6', 'Osteogenesis imperfecta, type V', 'Martinez-Frias syndrome', 'Congenital disorder of glycosylation with defective fucosylation 2', 'Microcephaly 22, primary, autosomal recessive', 'Osteopetrosis, autosomal recessive 6', 'Developmental delay with hypotonia, myopathy, and brain abnormalities', 'Mental retardation, skeletal dysplasia, and abducens palsy', 'Fever, familial lifelong persistent', 'Spastic tetraplegia and axial hypotonia, progressive', 'Central core disease', 'Weill-Marchesani syndrome 1', 'Methionine malabsorption syndrome', 'Osteogenesis imperfecta, type XII', 'Vasculopathy, retinal, with cerebral leukodystrophy', 'Hypertrichotic osteochondrodysplasia', 'Tyshchenko syndrome', 'Bleeding disorder, platelet-type, 13, susceptibility to', 'Immunodeficiency, common variable, 13', 'Thiamine metabolism dysfunction syndrome 5 (episodic encephalopathy type)', 'Cramps, familial adolescent', 'Leukocyte adhesion deficiency, type I', 'Disabling pansclerotic morphea of childhood', 'Agammaglobulinemia, X-linked', 'Thalassemia, beta+, silent allele', 'Intellectual developmental disorder, autosomal dominant 70', 'Pseudohypoparathyroidism, type IC', 'Pontocerebellar hypoplasia, type 2E', 'Aortic valve disease 1', 'Cardiomyopathy, dilated, 1B', 'Myopathy, congenital, nonprogressive', 'Developmental and epileptic encephalopathy 73', 'Cardiomyopathy, dilated, 2G', 'Neurodegeneration, childhood-onset, with brain atrophy', 'Cardiomyopathy, dilated, 3B', 'Epidermolysis bullosa, junctional, Herlitz type', 'Myopathy, autophagic vacuolar, infantile-onset', 'Roifman syndrome', 'Intellectual developmental disorder, autosomal recessive 60', 'Hypogonadism, male, with mental retardation and skeletal anomalies', 'Spondyloepiphyseal dysplasia with congenital joint dislocations', 'Glycogen storage disease V', 'Fibromuscular dysplasia of arteries', 'Citrulline transport defect', 'Noonan syndrome 11', 'Sialuria', 'Congenital heart defects, multiple types, 4', 'Epileptic encephalopathy, early infantile, 80', 'Short-rib thoracic dysplasia 15 with polydactyly', 'IVIC syndrome', 'Amyloidosis VI', 'Arthrogryposis, cleft palate, craniosynostosis, and impaired intellectual development', 'Tenorio syndrome', 'Portal vein, cavernous transformation of', 'Hyperthyroidism, nonautoimmune', 'Pituitary dwarfism IV', 'Spondyloarthropathy, susceptibility to, 2', 'Fanconi anemia, complementation group I', 'Anhidrosis, isolated, with normal sweat glands', 'Pheochromocytoma-Islet cell tumor syndrome', 'Lymphoblastic leukemia, acute, with lymphomatous features', 'Cardiofaciocutaneous syndrome 1', 'Lipedema', 'Combined oxidative phosphorylation deficiency 51', 'Seizures, scoliosis, and macrocephaly/microcephaly syndrome', 'Premature centromere division', 'Hajdu-Cheney syndrome', 'Neurodevelopmental disorder with seizures, microcephaly, and brain abnormalities', 'Ovarian dysgenesis 4', 'Geroderma osteodysplasticum', 'Arterial tortuosity syndrome', 'Sudden infant death syndrome', 'Ehlers-Danlos syndrome, spondylodysplastic type, 2', 'Rauch-Steindl syndrome', 'Immunodeficiency 96', 'Achondroplasia, so-called, and severe combined immunodeficiency', 'Lymphoma, hodgkin', 'PYGMY', 'Hyper-IgE recurrent infection syndrome', 'Coffin-Siris syndrome 8', 'Microphthalmia, syndromic 9', 'Williams-Beuren region duplication syndrome', 'Cutaneous photosensitivity and colitis, lethal', 'Hyperekplexia 3', 'Spinocerebellar ataxia, autosomal recessive 23', 'Polycystic kidney disease 6 with or without polycystic liver disease', 'Yunis-Varon syndrome', 'Deafness, unilateral, with delayed endolymphatic hydrops', 'Tessadori-van Haaften neurodevelopmental syndrome 1', 'Salt and pepper developmental regression syndrome', 'T-SUBSTANCE ANOMALY', 'Alport syndrome, X-linked', 'Birk-Landau-Perez syndrome', 'Orthostatic hypotensive disorder, Streeten type', 'Monocyte chemotactic disorder', 'Osteoporosis-pseudoglioma syndrome', 'Nephrotic syndrome, type 11', 'Charcot-Marie-Tooth disease, demyelinating, type 1F', 'CHOREOACANTHOCYTOSIS', 'Mental retardation, autosomal dominant 47', 'Neurodevelopmental disorder with microcephaly, cerebral atrophy, and visual impairment', 'Factor V excess with spontaneous thrombosis', 'Intellectual developmental disorder, X-linked, syndromic, with pigmentary mosaicism and coarse facies', 'Malouf syndrome', 'Cat eye syndrome', 'Nephrotic syndrome, type 22', 'Mucolipidosis IV', 'Periventricular heterotopia with microcephaly, autosomal recessive', 'Goodpasture syndrome', 'Microcephaly 21, primary, autosomal recessive', 'Hyperostosis, endosteal', 'Sucrosuria, hiatus hernia and mental retardation', 'Chromosome 3q29 deletion syndrome', 'Intellectual developmental disorder, autosomal dominant 51', 'PHEOCHROMOCYTOMA', 'Ichthyosis, congenital, autosomal recessive 4B', 'Muscle cramps, familial', 'Spondylo-megaepiphyseal-metaphyseal dysplasia', 'Central hypoventilation syndrome, congenital, 2, and autonomic dysfunction', 'Immunodeficiency, X-linked, with magnesium defect, Epstein-Barr virus infection and neoplasia', 'Hypomagnesemia, seizures, and mental retardation', 'Lissencephaly 7 with cerebellar hypoplasia', 'Loeys-Dietz syndrome 2', 'Myopathy with storage of glycoproteins and glycosaminoglycans', 'Nephrotic syndrome, type 14', 'Fraser syndrome 3', 'Trichodentoosseous syndrome', 'Familial cold autoinflammatory syndrome 4', 'Hypogonadotropic hypogonadism 9 with or without anosmia', 'Cardiomyopathy, dilated, 1E', 'Intellectual developmental disorder, autosomal dominant 33', 'Warburg micro syndrome 1', 'Ataxia, combined cerebellar and peripheral, with hearing loss and diabetes mellitus', 'Leukodystrophy, childhood-onset, remitting', 'Osteogenesis imperfecta 21', 'Cornea plana 1', 'Acanthosis nigricans with muscle cramps and acral enlargement', 'Lymphedema, hereditary, II', 'Radial heads, posterior dislocation of', 'Ehlers-Danlos syndrome, autosomal recessive, cardiac valvular form', 'Polyglucosan body neuropathy, adult form', 'Chronic recurrent multifocal osteomyelitis', 'Hypophosphatemic rickets, X-linked recessive', 'Fibrochondrogenesis 2', 'Immunodeficiency, common variable, 14', 'Sick sinus syndrome 4', 'Intellectual developmental disorder, autosomal dominant 43', 'Dimethylglycine dehydrogenase deficiency', 'Osteoporosis, childhood- or juvenile-onset, with developmental delay', 'Gastroschisisabdominal wall defects, included', 'Mitochondrial DNA depletion syndrome 2 (myopathic type)', 'Adiposis dolorosa', 'Bartter syndrome, type 3', 'Amyotrophic lateral sclerosis 5, juvenile', 'Cardiac, facial, and digital anomalies with developmental delay', 'Proximal myopathy with focal depletion of mitochondria', '3-M syndrome 3', 'Epileptic encephalopathy, early infantile, 68', 'Hypoinsulinemic hypoglycemia with hemihypertrophy', 'Intellectual developmental disorder, autosomal recessive 41', 'Cardiomyopathy, dilated, 1S', 'Hereditary leiomyomatosis and renal cell cancer', 'Heterotaxy, visceral, 5', 'Fanconi anemia, complementation group N', 'Histiocytosis, progressive mucinous', 'Congenital heart defects, hamartomas of tongue, and polysyndactyly', 'Infantile cerebellar-retinal degeneration', 'Neutropenia, severe congenital, 2, autosomal dominant', 'Neurodevelopmental disorder with hypotonia and variable intellectual and behavioral abnormalities', 'Ehlers-Danlos syndrome, kyphoscoliotic type, 2', 'Intellectual developmental disorder, autosomal dominant 45', 'Progressive familial heart block, type IB', 'Immunodeficiency with hyper-igm, type 3', 'Ehlers-Danlos syndrome, Vascular type', 'Hyperproinsulinemia', 'Alpha-2-deficient collagen disease', 'Silver-Russell syndrome 1', 'Heterotaxy, visceral, 9, autosomal, with male infertility', 'Hutterite cerebroosteonephrodysplasia syndrome', 'Central hypoventilation syndrome, congenital, 1, with or without Hirschsprung disease', 'Neurodevelopmental disorder with craniofacial dysmorphism and skeletal defects', 'Muckle-Wells syndrome', 'Myopathy, areflexia, respiratory distress, and dysphagia, early-onset', 'Myasthenic syndrome, congenital, 7B, presynaptic, autosomal recessive', 'DYSOSTEOSCLEROSIS', 'Perrault syndrome 4', 'Neuropathy, congenital hypomyelinating, 1, autosomal recessive', 'Long QT syndrome 13', 'Lymphoid interstitial pneumonia', 'Loeys-Dietz syndrome 3', 'Inflammatory bowel disease (Crohn disease) 30', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 3', 'Ehlers-Danlos syndrome, classic-like, 2', 'Immunodeficiency 68', 'Periodic fever, menstrual cycle-dependent', 'Arrhythmogenic right ventricular dysplasia, familial, 11', 'Inflammatory bowel disease 1, Crohn disease', 'Congenital disorder of glycosylation, type Ij', 'Leber congenital amaurosis, type I', 'Leukodystrophy, hypomyelinating, 11', 'Pyle disease', 'Cardiomyopathy, dilated, 1D', 'Megalocornea-Mental retardation syndrome', 'Familial Mediterranean fever, AD', 'Mental retardation, autosomal recessive 53', 'Volvulus of midgut', 'Congenital myopathy 2B, severe infantile, autosomal recessive', 'Spondyloenchondrodysplasia with immune dysregulation', 'White sponge nevus 2', 'Angioma, hereditary neurocutaneousspinal arterial venous malformations with cutaneous hemangiomas, included', 'Muscular dystrophy, congenital, merosin deficient or partially deficient', 'Congenital disorder of glycosylation, type Ip', 'Brugada syndrome 3', 'Amyotrophic lateral sclerosis, juvenile, with dementia', 'Multisystemic smooth muscle dysfunction syndrome', 'Epileptic encephalopathy, early infantile, 40', 'Parkinson disease 4', 'Takenouchi-Kosaki syndrome', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 5', 'Developmental and epileptic encephalopathy 109', 'Short QT syndrome 1', 'Eosinophil peroxidase deficiency', 'Weill-Marchesani syndrome 2, dominant', 'Short-Rib thoracic dysplasia 5 with or without polydactyly', 'Neurodevelopmental disorder with hypotonia and dysmorphic facies', 'Osteogenesis imperfecta, type XVIII', 'Epistaxis, hereditary', 'Neurodegeneration with brain iron accumulation 4', 'Thyrotoxic periodic paralysis, susceptibility to, 2', 'Neuropathy, hereditary sensory and autonomic, type I, with cough and gastroesophageal reflux', 'Venous malformations, multiple cutaneous and mucosal', 'Developmental and epileptic encephalopathy 102', 'Bethlem myopathy 1', 'Ehlers-Danlos syndrome, kyphoscoliotic type, 1', 'Inosine phosphorylase deficiency, immune defect due to', 'Renal glucosuria', 'Achondrogenesis, type II', 'Gastric adenocarcinoma and proximal polyposis of the stomach', 'Cardiomyopathy, familial hypertrophic, 6', 'Friedreich ataxia 1', 'Marinesco-Sjogren syndrome', 'Nemaline myopathy 3', 'Endocardial fibroelastosis and coarctation of abdominal aorta', 'Mucopolysaccharidosis VII', 'Neurodegeneration with ataxia and late-onset optic atrophy', 'Short QT syndrome 2', 'Rabin-Pappas syndrome', 'Nephronophthisis 3', 'Cardiac conduction disease with or without dilated cardiomyopathy', 'Nephronophthisis 13', 'Yao syndrome', 'Aneurysm, intracranial berry, 12', 'Lessel-Kreienkamp syndrome', 'Ehlers-Danlos syndrome, arthrochalasia type, 1', 'Spondyloepiphyseal dysplasia with punctate corneal dystrophy', 'Pontocerebellar hypoplasia, type 9', 'Alveolar capillary dysplasia with misalignment of pulmonary veins', 'Metaphyseal chondrodysplasia, Pena type', 'Cutis laxa, autosomal recessive, type IB', 'Aortic aneurysm, familial thoracic 10', 'Neurodevelopmental disorder with or without seizures and gait abnormalities', 'Polycystic ovary syndrome 1', 'Rheumatoid arthritis', 'Popliteal cyst', 'Ciliary discoordination due to random ciliary orientation', 'Arrhythmogenic right ventricular dysplasia, familial, 9', 'Microcephaly, developmental delay, and brittle hair syndrome', 'Neural tube defects, folate-sensitive', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 1', 'Maturity-onset diabetes of the young, type III', 'Ritscher-Schinzel syndrome 1', 'Magnesium, elevated red cell', 'AMOBARBITAL, DEFICIENT N-HYDROXYLATION OF', 'Zinc, elevated plasma', 'Neuronal intestinal dysplasia, type B', 'Paraoxonase 1', 'Sodium-Potassium-Atpase activity of red cell', 'Acetylation, slow', 'HYPOASCORBEMIA', 'Drug metabolism, altered, CES1-related', 'Charcot-Marie-Tooth disease, axonal, type 2K', 'Polysaccharide, storage of unusual', 'Short stature, rhizomelic, with microcephaly, micrognathia, and developmental delay', 'Aortic aneurysm, familial thoracic 8', 'Surfactant metabolism dysfunction, pulmonary, 1', 'Neutrophil actin dysfunction', 'Arrhythmogenic right ventricular dysplasia, familial, 10', 'Immunodeficiency 93 and hypertrophic cardiomyopathy', 'Myopathy with myalgia, increased serum creatine kinase, and with or without episodic rhabdomyolysis', 'Pulmonary hypertension, primary, 4', 'Atrial fibrillation, familial, 3', 'Noonan syndrome 7', 'Osteogenesis imperfecta, type VII', 'Cerebral amyloid angiopathy, APP-related', 'Cardiomyopathy, familial hypertrophic 27', 'Spinal muscular atrophy with progressive myoclonic epilepsy', 'Cardiomyopathy, dilated, 1P', 'Nephronophthisis 12', 'Oocyte maturation defect 2', 'Telangiectasia, hereditary hemorrhagic, type 4', 'Spinal arachnoiditis', 'Purpura simplex', 'Plasma clot retraction factor, deficiency of', 'Brugada syndrome 1', 'Neurocardiofaciodigital syndrome', 'Arthrogryposis multiplex congenita with whistling face', 'Filaminopathy, autosomal dominant', 'Spondylocostal dysostosis, autosomal recessive 1', 'Hyperprolactinemia', 'Acute promyelocytic leukemia', 'Mosaic variegated aneuploidy syndrome 1', 'Spinal muscular atrophy, distal, autosomal recessive, 4', 'Thrombophilia due to protein C deficiency, autosomal recessive', 'Boudin-Mortier syndrome', 'Aneurysm, intracranial berry, 1', 'Noonan syndrome 2', 'Visceral myopathy 2', 'MEDULLOBLASTOMA', 'Amyotrophic lateral sclerosis with polyglucosan bodies', 'Meckel syndrome, type 10', 'Ethanolaminosis', 'Immunodeficiency with hyper-igm, type 2', 'Corneal hypesthesia with retinal abnormalities, sensorineural deafness,unusual facies, persistent ductus arteriosus, and mental retardation', 'Hypocalcemia, autosomal dominant 2', 'Agammaglobulinemia 4, autosomal recessive', 'Intellectual developmental disorder with or without peripheral neuropathy', 'Senior-Loken syndrome 8', 'Roifman-Chitayat syndrome', 'Long QT syndrome 3', 'Neurodegeneration, childhood-onset, with cerebellar atrophy', 'Atrial fibrillation, familial, 13', 'Factor VII and factor VIII, combined deficiency of', 'Infundibulopelvic dysgenesis', 'Diaphragmatic hernia 4, with cardiovascular defects', 'Glutamate monosodium sensitivity', 'Prader-Willi syndrome', 'Salla disease', 'Cerebral sclerosis similar to pelizaeus-merzbacher disease', 'Neutropenia, nonimmune chronic idiopathic, of adults', 'Amyotrophic lateral sclerosis 9', 'Congenital arthrogryposis with anterior horn cell disease', 'Neuropathy, hereditary sensory and autonomic, type V', 'Shashi-Pena syndrome', 'Fingerprint body myopathy', 'Striatonigral degeneration, infantile, mitochondrial', 'Thyroid hormonogenesis, genetic defect in, 1', 'Erythrocyte lactate transporter defect', 'Pseudouridinuria and mental defect', 'Thyrotropin-Releasing hormone deficiency', 'Lymphoblastic transformation, inhibition of', 'Lymphokine deficiency', 'Lymphoblastic transformation, intrinsic defect in', 'Galloway-Mowat syndrome 8', 'Agammaglobulinemia 10, autosomal dominant', 'Polycystic lipomembranous osteodysplasia with sclerosing leukoencephalopathy 2', 'Hyper-IgE recurrent infection syndrome 3, autosomal recessive', 'Combined oxidative phosphorylation deficiency 57', 'Contractures, congenital, torticollis, and malignant hyperthermia', 'Long QT syndrome 6', 'Ichthyosis, congenital, autosomal recessive 5', 'Ogden syndrome', 'Bryant-Li-Bhoj neurodevelopmental syndrome 2', 'Myoglobinuria, autosomal dominant', 'Undritz anomaly', 'Left ventricular noncompaction 8', 'Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies', 'Lymphatic malformation 8', 'Meckel syndrome, type 4', 'Cystinuria', 'Spastic paralysis, infantile-onset ascending', 'Choanal atresia and lymphedema', 'Immunodeficiency 77', 'Bardet-Biedl syndrome 19', 'Winchester syndrome', 'Coronary artery dissection, spontaneous', 'Cockayne syndrome A', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 2', 'Cleft-Limb-Heart malformation syndrome', 'Mental retardation, autosomal dominant 7', 'Thyroid hormonogenesis, genetic defect in, 5', 'Hooft disease', 'Cardiomyopathy, dilated, 2H', 'Hemorrhagic destruction of the brain, subependymal calcification,and cataracts', 'Kaposi sarcoma, susceptibility to', 'Hypoparathyroidism, familial isolated', 'Corneal dystrophy, fuchs endothelial, 2', 'Temple-Baraitser syndrome', 'Developmental delay, hypotonia, and impaired language', 'Bardet-Biedl syndrome 1', 'Dysostosis multiplex, Ain-Naz type', 'Abdominal obesity-metabolic syndrome quantitative trait locus 2', 'Abdominal obesity-metabolic syndrome 1', 'Intellectual developmental disorder with muscle tone abnormalities and distal skeletal defects', 'Ventricular tachycardia, catecholaminergic polymorphic, 5, with or without muscle weakness', 'Joubert syndrome 6', 'Immunodeficiency-110 with lymphoproliferation', 'Amyotrophic lateral sclerosis and/or frontotemporal dementia 1', 'Xeroderma pigmentosum, complementation group G', 'Angioedema, hereditary, 5', 'Neurodevelopmental disorder with spastic quadriplegia, optic atrophy, seizures, and structural brain anomalies', 'Angioedema, hereditary, 6', 'Brugada syndrome 2', 'Paganini-Miozzo syndrome', 'Mannosidosis, beta', 'Lymphatic malformation 11', 'Immunodeficiency 18', 'Myopathy, myofibrillar, 7', 'Immunodeficiency 11B with atopic dermatitis', 'Emery-Dreifuss muscular dystrophy 4, autosomal dominant', 'Atrial septal defect 1', 'Renal tubular acidosis, distal, with progressive nerve deafness', 'Faundes-Banka syndrome', 'Dwarfism, low-birth-weight type, with unresponsiveness to growth hormone', 'Spondylocostal dysostosis 5', 'Combined oxidative phosphorylation deficiency 35', 'Contractural arachnodactyly, congenital', 'Heterotaxy, visceral, 8, autosomal', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 6', 'Cardiac arrhythmia, ankyrin-B-related', 'Glycosylphosphatidylinositol biosynthesis defect 11', 'Vissers-Bodmer syndrome', 'Congenital disorder of glycosylation, type IIa', 'Dentin dysplasia with sclerotic bones', 'Hypocalciuric hypercalcemia, familial, type II', 'Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy, 1', 'Arrhythmogenic right ventricular dysplasia, familial, 5', 'Neuropathy, hereditary sensory and autonomic, type VI', 'Epileptic encephalopathy, early infantile, 29', 'Vertebral anomalies and variable endocrine and T-cell dysfunction', 'Sensory ataxic neuropathy, dysarthria, and ophthalmoparesis', 'Chromosome 19q13.11 deletion syndrome, proximal', 'Aortic aneurysm, familial thoracic 12', 'Glycosylphosphatidylinositol biosynthesis defect 18', 'Meier-Gorlin syndrome 6', 'Fructose and galactose intolerance', 'Brugada syndrome 4', 'ACTH-independent macronodular adrenal hyperplasia', 'Immunodeficiency, ovarian dysgenesis, and pulmonary fibrosis', 'Hennekam lymphangiectasia-lymphedema syndrome 3', 'Lymphatic malformation 4', 'Sick sinus syndrome 2', 'Wolf-Hirschhorn syndrome', 'Meckel syndrome, type 5', 'Neurodevelopmental disorder with hypotonia and cerebellar atrophy, with or without seizures', 'Meckel syndrome 1', 'Metachromatic leukodystrophy', 'Nephronophthisis 14', 'Aortic aneurysm, familial thoracic 7', 'UV-sensitive syndrome 2', 'Leukodystrophy, hypomyelinating, 3', 'Hypohidrosis with abnormal palmar dermal ridges', 'Myopathy, sarcoplasmic body', 'Esophageal ring, lower', 'Joubert syndrome 9', 'Carnitine deficiency, myopathic', 'Leukodystrophy, hypomyelinating, 15', 'Muscular dystrophy, limb-girdle, type 2A', 'Hyperferritinemia with or without cataract', 'Pancreas, annular', 'Drug metabolism, poor, cyp2d6-relateddrug metabolism, ultrarapid, cyp2d6-related, included', 'Glomuvenous malformations', 'Tinea imbricata, susceptibility to', 'Collagenosis, familial reactive perforating', 'White sponge nevus 1', 'Progesterone resistance', 'GONADOBLASTOMA', 'Amyloidosis, cutaneous bullous', 'Neurodevelopmental disorder with seizures, hypotonia, and brain imaging abnormalities', 'Kabuki syndrome 1', 'Holoprosencephaly 11', 'Hyper-IgE recurrent infection syndrome 4, autosomal recessive', 'Meckel syndrome, type 2', 'Neurodevelopmental disorder with dystonia and seizures', 'Fundus albipunctatus', 'Deafness, sensorineural, Autosomal-Mitochondrial type', 'Vertebral fusion, posterior lumbosacral, with blepharoptosis', 'Neurodevelopmental disorder with dysmorphic features, spasticity, and brain abnormalities', 'Autoimmune disease, multisystem, infantile-onset, 2', 'Long QT syndrome 1', 'Amyotrophic lateral sclerosis 22 with or without frontotemporal dementia', 'Cardiac conduction defectsudden cardiac death, included', 'Neurodevelopmental disorder with progressive microcephaly, spasticity, and brain anomalies', 'Maturity-onset diabetes of the young, type VII', 'Maturity-onset diabetes of the young, type 4', 'Coarctation of aorta', 'Myotonic dystrophy 1', 'Atrophoderma vermiculata', 'Heterotaxy, visceral, 6, autosomal', 'Retinitis pigmentosa 44', 'Neutropenia, lethal congenital, with eosinophilia', 'Immunodeficiency 86, mycobacteriosis', 'King-Denborough syndrome', 'Visceral neuropathy, familial, 2, autosomal recessive', 'Neuropathy, hereditary sensory and autonomic, type VII', 'Pierson syndrome', 'Heterotopia, periventricular, X-linked dominant', 'Migraine with or without aura, susceptibility to, 12', 'Cataracts, hearing impairment, nephrotic syndrome, and enterocolitis 1', 'Superior transverse scapular ligament, calcification of, familial', 'Charcot-Marie-Tooth disease, axonal, type 2P', 'Amyotrophic lateral sclerosis 6, with or without frontotemporal dementia', 'Amyotrophic lateral sclerosis, susceptibility to, 25', 'Long QT syndrome 5', 'Sjogren syndrome', 'Congenital disorder of glycosylation, type IIN', 'Alopecia areata 2', 'Lymphatic malformation 2', 'Pulmonary fibrosis and/or bone marrow failure syndrome, telomere-related, 9', 'Emery-Dreifuss muscular dystrophy 5, autosomal dominant', 'Yuan-Harel-Lupski syndrome', 'Hemangiomas, cavernous, of face and supraumbilical midline raphe', 'Short-Rib thoracic dysplasia 6 with or without polydactyly', 'Cardiomyopathy, familial hypertrophic, 29, with polyglucosan bodies', 'Lymphatic malformation 10', 'Seckel syndrome 2', 'Leukemia, acute, ?x-linked', 'Wrinkly skin syndrome', 'Multiple endocrine neoplasia 1', 'Arterial dissection with lentiginosis', 'Hypogonadotropic hypogonadism 2 with or without anosmia', 'D-2-hydroxyglutaric aciduria 2', 'Structural heart defects and renal anomalies syndrome', 'Amyotrophic lateral sclerosis, susceptibility to, 24', 'Cold-Induced sweating syndrome 2', 'Beckwith-Wiedemann syndrome', 'Myasthenic syndrome, congenital, 22', 'Brachydactyly, type A1, C', 'Long QT syndrome 12', 'Costello syndrome', 'Migraine without aura, susceptibility to, 4', 'Carey-Fineman-Ziter syndrome', 'Platelet responsiveness to adrenaline, depressed', 'Muscular dystrophy, limb-girdle, type 2W', 'Luo-Schoch-Yamamoto syndrome', 'Developmental and epileptic encephalopathy 101', 'Peroxisome biogenesis disorder 1A (Zellweger)', 'Carnitine palmitoyltransferase II deficiency, myopathic, stress-induced', 'Aortic aneurysm, familial thoracic 9', 'Fanconi anemia, complementation group B', 'Pa polymorphism of alpha-2-globulin', 'Spondylometaphyseal dysplasia, axial', 'Intellectual developmental disorder, autosomal dominant 68', 'Neutropenia, chronic familial', 'Uruguay faciocardiomusculoskeletal syndrome', 'N-acetylaspartate deficiency', 'Complement factor H deficiency', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 4', 'Hypogonadotropic hypogonadism 8 with or without anosmia', 'Potocki-Lupski syndrome', 'Osteogenesis imperfecta, type III', 'Migraine with or without aura, susceptibility to, 10', 'Migraine with or without aura, susceptibility to, 11', 'Migraine with or without aura, susceptibility to, 1', 'Migraine with or without aura, susceptibility to, 3', 'Migraine with or without aura, susceptibility to, 5', 'Migraine, familial typical, susceptibility to, 2', 'Pituitary hormone deficiency, combined, 4', 'Atrial fibrillation, familial, 9', 'Heyn-Sproul-Jackson syndrome', 'Maturity-onset diabetes of the young, type IX', 'Maturity-onset diabetes of the young 6', 'Developmental delay, language impairment, and ocular abnormalities', 'Hypoparathyroidism, familial isolated 2', 'Krabbe disease, atypical, due to saposin A deficiency', 'Cutis laxa, autosomal recessive, type IIIB', 'Immunodeficiency 8', 'Multicentric carpotarsal osteolysis syndrome', 'Cardiomyopathy, dilated, 1O', 'AMME complex', 'Intellectual developmental disorder with hypotonia, impaired speech, and dysmorphic facies', 'Methemoglobinemia and ambiguous genitalia', 'Dystonia, juvenile-onset', 'Marfanoid habitus with situs inversus', 'Okur-Chung neurodevelopmental syndrome', 'Cardiomyopathy, familial restrictive, 3', 'Hypouricemia, hypercalcinuria, and decreased bone density', 'Bronchiectasis with or without elevated sweat chloride 1', 'Bronchiectasis with or without elevated sweat chloride 2', 'Developmental and epileptic encephalopathy 31B, autosomal recessive', 'Neurodevelopmental disorder with hyperkinetic movements and dyskinesia', 'Premature aging syndrome, Penttinen type', 'Sinoatrial node dysfunction and deafness', 'Noonan syndrome-like disorder with loose anagen hair 2', 'Septooptic dysplasia', 'Cardiomyopathy, familial hypertrophic, 28', 'Menkes disease', 'Pili torti, early-onset', 'Long QT syndrome 9', 'Cardiomyopathy, dilated, 1G', \"O'donnell-Luria-Rodan syndrome\", 'Immunodeficiency, X-linked, with deficiency of 115,000 dalton surfaceglycoprotein', 'Buschke-Ollendorff syndrome', 'Phosphoserine aminotransferase deficiency', 'Erythermalgia, primary', 'Atrial fibrillation, familial, 10', 'Immunodeficiency 95', 'Mucopolysaccharidosis, type IIID', 'Faciocardiomelic dysplasia, lethal', 'Gastroesophageal reflux', 'Spondyloepimetaphyseal dysplasia, sponastrime type', 'Myopathy, vacuolar, with CASQ1 aggregates', 'Takayasu arteritis', 'Short QT syndrome 7', 'Cardiomyopathy, dilated, 1K', 'Charcot-Marie-Tooth disease, dominant intermediate B', 'Adams-Oliver syndrome 1', 'Macular edema, cystoid', 'Hyperphosphatasia with mental retardation syndrome 2', 'Pancreatic cancer', 'Microcephaly 26, primary, autosomal dominant', 'Agammaglobulinemia 7, autosomal recessive', 'Heterotaxy, visceral, 11, autosomal, with male infertility', 'MUSCULAR DYSTROPHY-DYSTROGLYCANOPATHY (CONGENITAL WITHOUT MENTAL RETARDATION), TYPE B, 4', 'Summitt syndrome', 'Arthrogryposis, distal, type 1C', 'Congenital myopathy 22B, severe fetal', 'Diabetes mellitus, transient neonatal 2', 'Primary lateral sclerosis, juvenile', 'Myopathy, granulovacuolar lobular, with electrical myotonia', 'Cutis laxa, autosomal recessive, type IIIA', 'Cardiomyopathy, dilated, 1X', 'Myopathy, distal, infantile-onset', 'Emery-Dreifuss muscular dystrophy 2, autosomal dominant', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 2', 'Braddock-Carey syndrome 1', 'Carbimazole sensitivity', 'Immunodeficiency due to defect in mapbp-interacting protein', 'Cutaneous mastocytosis, conductive hearing loss, and microtia', 'Myasthenic syndrome, congenital, 17', 'Arthrogryposis, distal, type 7', 'Long QT syndrome 2', 'Granulomatous disease with defect in neutrophil chemotaxis', 'Congenital disorder of glycosylation, type IIq', 'Intellectual developmental disorder, autosomal recessive 73', 'Ehlers-Danlos syndrome, spondylodysplastic type, 1', 'Arthrogryposis multiplex congenita 3, myogenic type', 'Heart block, congenital', 'Dystrophia myotonica 2', 'Papilloma of choroid plexus', 'Leukodystrophy, hypomyelinating, 14', 'Cardiomyopathy, dilated, 1DD', 'Glucocorticoid deficiency 3', 'Sudden infant death with dysgenesis of the testes syndrome', 'Hypertrophic osteoarthropathy, primary, autosomal dominant', 'Verheij syndrome', 'Thymic-Renal-Anal-Lung dysplasia', 'Vacuolar neuromyopathy', 'Cardiomyopathy, dilated, 1M', 'Moyamoya disease 5', 'Brugada syndrome 9', 'Left ventricular noncompaction 10', 'Bardet-Biedl syndrome 20', 'Dent disease 1', 'Cole-Carpenter syndrome 2', 'Meier-Gorlin syndrome 8', 'Cataract 22, multiple types', 'Epidermolysis bullosa pruriginosa', 'Familial dysalbuminemic hyperthyroxinemia', 'Long QT syndrome 8', 'Ventricular tachycardia, catecholaminergic polymorphic, 1, with or without atrial dysfunction and/or dilated cardiomyopathy', 'Angioedema, hereditary, 4', 'Turnpenny-Fry syndrome', 'Jervell and Lange-Nielsen syndrome 2', 'Cardiomyopathy, familial hypertrophic 1', 'Ribbing disease', 'Anus, imperforate', 'Wolff-Parkinson-White syndrome', 'Neurodevelopmental disorder with poor growth and behavioral abnormalities', 'Fructosuria, essential', 'Congenital myopathy 21 with early respiratory failure', 'Growth retardation, developmental delay, coarse facies, and earlydeath', 'Epidermodysplasia verruciformis, susceptibility to, 1', 'Congenital myopathy 5 with cardiomyopathy', 'Camptodactyly with muscular hypoplasia, skeletal dysplasia, and abnormalpalmar creases', 'Fatty liver disease, nonalcoholic, susceptibility to, 2', 'Fatty liver disease, nonalcoholic, susceptibility to, 1', 'Cenani-Lenz syndactyly syndrome', 'Hyperalphalipoproteinemia 2', 'C5 deficiency', 'Immunodeficiency 58', 'IgA NEPHROPATHY, SUSCEPTIBILITY TO, 1', 'Nevoid hypermelanosis, linear and whorled', 'Leber congenital amaurosis 13', 'Osteoglophonic dysplasia', 'Cardiomyopathy, dilated, 1U', 'Camptodactyly, tall stature, and hearing loss syndrome', 'Cardiomyopathy, dilated, 1nn', 'Tetra-Amelia with ectodermal dysplasia and lacrimal duct abnormalities', 'Inflammatory bowel disease 28, early onset, autosomal recessive', 'Blau syndrome', 'Ataxia with isolated vitamin E deficiency', 'CHOPS syndrome', 'Intellectual developmental disorder, autosomal recessive 5', 'Carboxypeptidase N deficiency', 'Hadziselimovic syndrome', 'Mental retardation, autosomal dominant 50', 'Mitochondrial myopathy with A defect in mitochondrial-protein transport', 'Thoracolaryngopelvic dysplasia', 'Rothmund-thomson syndrome, type 1', 'Bardet-Biedl syndrome 2', 'Hypocalciuric hypercalcemia, familial, type I', 'Agammaglobulinemia 2, autosomal recessive', 'THREONINEMIA', 'Immunodeficiency 24', 'Ventricular tachycardia, catecholaminergic polymorphic, 3', 'Holoprosencephaly 1', 'Keutel syndrome', 'Myopathy, distal, with anterior tibial onset', 'Myasthenic syndrome, congenital, 2C, associated with acetylcholine receptor deficiency', 'Moyamoya disease 1', 'N syndrome', 'Progressive familial heart block, type II', 'Congenital heart defects, multiple types, 3', 'Triglyceride storage disease, type II', 'Ventricular tachycardia, catecholaminergic polymorphic, 4', 'Atrial fibrillation, familial, 1', 'Hermansky-Pudlak syndrome 1', 'Myosclerosis, autosomal recessive', 'Leukodystrophy, hypomyelinating, 12', 'Long QT syndrome 11', 'Lissencephaly 4', 'KINSSHIP syndrome', 'B-CELL MALIGNANCY, LOW-GRADE', 'Myelocytic leukemia-like syndrome, familial, chronic', 'Immunoskeletal dysplasia with neurodevelopmental abnormalities', 'Lymphatic malformation 1', 'Cardiomyopathy, dilated, 1EE', 'Cutis laxa, autosomal recessive, type IA', 'Timothy syndrome', 'Tremor of intention, ataxia, and lipofuscinosis', 'Neurodevelopmental disorder with spastic diplegia and visual defects', 'Temporal arteritis', 'Cardiomyopathy, dilated, 2B', 'PENTOSURIA', 'Muscular atrophy, ataxia, retinitis pigmentosa, and diabetes mellitus', 'Osteochondrodysplasia', 'Neuropathy, hereditary sensory and autonomic, type II', 'Card11 immunodeficiency', 'Miller-Dieker lissencephaly syndrome', 'Mosaic variegated aneuploidy syndrome 4', 'Jervell and Lange-Nielsen syndrome 1', 'Neurodevelopmental disorder with central and peripheral motor dysfunction', 'Cardiospondylocarpofacial syndrome', 'Mental retardation with language impairment and with or without autistic features', 'RETINOBLASTOMA', 'Syncope, familial vasovagal', 'Osteogenesis imperfecta, type X', 'Ulna metaphyseal dysplasia syndrome', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 4', 'Collagenoma, familial cutaneous', 'Mannose 6-phosphate receptor recognition defect, Lebanese type', 'Amyotrophic lateral sclerosis 19', 'Peho syndrome', 'Hypertrophic neuropathy of dejerine-sottas', 'Cardiomyopathy, dilated, 1J', 'Dystonia, childhood-onset, with optic atrophy and basal ganglia abnormalities', 'Polysyndactyly with cardiac malformation', 'Myasthenic syndrome, congenital, 3C, associated with acetylcholine receptor deficiency', 'Achondrogenesis, type IA', 'Cardiomyopathy, dilated, 1GG', 'Arrhythmogenic right ventricular dysplasia, familial, 8', 'Muscular dystrophy, limb-girdle, type 2F', 'Spinal muscular atrophy, type II', 'Pycnodysostosis', 'Craniosynostosis 1', 'Striatonigral degeneration, childhood-onset', 'Amyotrophic lateral sclerosis 11', 'Bardet-Biedl syndrome 6', 'Cranial nerves, recurrent paresis of', 'Hypotonia, hypoventilation, impaired intellectual development, dysautonomia, epilepsy, and eye abnormalities', 'Geleophysic dysplasia 3', 'TARP syndrome', 'Asthma, short stature, and elevated iga', 'Alpha-Thalassemia myelodysplasia syndrome', 'Left ventricular noncompaction 1', 'Carotenemia, familial', 'Congenital heart defects and skeletal malformations syndrome', 'Oculopharyngeal muscular dystrophy', 'Ventricular tachycardia, catecholaminergic polymorphic, 2', 'Cardiomyopathy, dilated, 1A', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 2', 'Maturity-onset diabetes of the young, type 1', 'Diabetes mellitus, insulin-dependent, 2', 'Maturity-onset diabetes of the young, type II', 'Koolen-De Vries syndrome', 'Orofaciodigital syndrome XVII', 'Narcolepsy 7', 'Arthrogryposis, distal, type 4', 'Trichorhinophalangeal syndrome, type III', 'Perrault syndrome 1', 'Mitochondrial DNA depletion syndrome 11', 'Schaaf-Yang syndrome', 'Phosphoglycerate mutase, muscle, deficiency of', 'Hyperaldosteronism, familial, type II', 'Peters-plus syndrome', 'Long QT syndrome 16', 'Immunodeficiency with hyper IgM, type 5', 'Cysteine peptiduria', 'Right pulmonary artery, anomalous origin of, familial', 'Raine syndrome', 'Brain malformations with or without urinary tract defects', 'Jacobsen syndrome', 'Long QT syndrome 15', 'Combined cellular and humoral immune defects with granulomas', 'Cutis laxa, autosomal dominant 2', 'Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type B, 14', 'Retinitis pigmentosa', 'Spondylometaphyseal dysplasia, Pagnamenta type', 'Spondyloepimetaphyseal dysplasia with joint laxity, type 1, with or without fractures', 'Cardiomyopathy, dilated, 1C, with or without left ventricular noncompaction', 'Neurodevelopmental disorder with brain abnormalities, poor growth, and dysmorphic facies', 'Spondylometaphyseal dysplasia, Megarbane-Dagher-Melki type', 'Amyotrophic lateral sclerosis 2, juvenile', 'Cranioectodermal dysplasia 3', 'Short QT syndrome 3', 'Epileptic encephalopathy, early infantile, 35', 'Brachydactyly, type A2, with microcephaly', 'EPILEPSY-TELANGIECTASIA', 'Neurodevelopmental disorder with absent speech and movement and behavioral abnormalities', 'Coffin-Siris syndrome 4', 'Muscular dystrophy, limb-girdle, type 2E', 'Neurodegeneration, childhood-onset, with ataxia, tremor, optic atrophy, and cognitive decline', 'Mulchandani-Bhoj-Conlin syndrome', 'Factor IX and factor XI, combined deficiency of', 'Loeys-Dietz syndrome 6', 'Immunodeficiency, partial combined, with absence of hla determinantsand beta-2-microglobulin from lymphocytes', 'Cerebrooculofacioskeletal syndrome 4', 'Congenital disorder of glycosylation, type I/IIx', 'Growth hormone insensitivity with immune dysregulation 2, autosomal dominant', 'Sclerosteosis 2', 'Noonan syndrome 3', 'Fetal akinesia deformation sequence 3', 'Muscular dystrophy, limb-girdle, autosomal recessive 25', 'Brugada syndrome 6', 'Angioedema, hereditary, 7', 'Schinzel-Giedion midface-retraction syndrome', 'Glycogen storage disease 0, muscle', 'Retinal telangiectasia and hypogammaglobulinemia', 'Muscular dystrophy, limb-girdle, type 2D', 'Pierre Robin syndrome', 'Nail disorder, nonsyndromic congenital, 3', 'Pigmented paravenous chorioretinal atrophy', 'Breasts and/or nipples, aplasia or hypoplasia of, 1', 'Migraine with or without aura, susceptibility to, 6', 'Hypertension and brachydactyly syndrome', 'Cataract 33, multiple types', 'Immunodeficiency 37', 'Mitral valve prolapse 1', 'Meier-Gorlin syndrome 3', 'Centronuclear myopathy 5', 'Cardiomyopathy, dilated, 1V', 'Smith-Mccort dysplasia 2', 'Mass syndrome', 'Loeys-Dietz syndrome 5', 'Intellectual developmental disorder, autosomal recessive 76', 'Epidermolytic hyperkeratosis', 'Amyotrophic lateral sclerosis 10 with or without frontotemporal dementia', 'Erythrokeratodermia variabilis et progressiva 1', 'Raynaud disease', 'Arrhythmogenic right ventricular dysplasia 12', 'Ramon syndrome', 'Internal carotid arteries, hypoplasia of', 'Cardiomyopathy, familial hypertrophic, 17', 'Leukemia, acute myeloid', 'Pancreatic cancer, susceptibility to, 1', 'Cutis laxa, autosomal recessive, type IIA', 'Epidermodysplasia verruciformis, susceptibility to, 5', 'Complement component 2 deficiency', 'Cardiomyopathy, familial hypertrophic, 11', 'Progressive familial heart block, type IA', 'Aortic aneurysm, familial thoracic 11, susceptibility to', 'Ulnar agenesis and endocardial fibroelastosis', 'Inclusion body myositis', 'Myopathy, reducing body, X-linked, childhood-onset', 'Nonaka myopathy', 'Acrofacial dysostosis, Cincinnati type', 'Cutis laxa, autosomal recessive, type IID', 'Complement component 4A deficiency', 'Mental retardation, X-linked 19', 'Myasthenia, congenital, refractory to acetylcholinesterase inhibitors', 'Epileptic encephalopathy, early infantile, 66', 'Riddle syndrome', 'HSD10 mitochondrial disease', 'Erythroderma, ichthyosiform, congenital reticular', 'Cardiomyopathy, dilated, 2A', 'Immunodeficiency, common variable, 5', 'Hernia, hiatus', 'Mitral valve prolapse, myxomatous 3', 'Mitral valve prolapse, myxomatous 2', 'Cardiomyopathy, familial hypertrophic, 26', 'Charcot-Marie-Tooth disease, type 4A', 'Dicarboxylicamino aciduria', 'Microcephaly, cataracts, impaired intellectual development, and dystonia with abnormal striatum', 'Hyperphenylalaninemia, BH4-deficient, B', 'Juvenile myelomonocytic leukemia', 'Onychodystrophy, osteodystrophy, impaired intellectual development, and seizures syndrome', 'Cardiomyopathy, dilated, 1BB', 'Dystonia 4, torsion, autosomal dominant', 'Bartter syndrome, type 4B, neonatal, with sensorineural deafness', 'Mckusick-Kaufman syndrome', 'Hyperlysinemia due to defect in lysine transport into mitochondria', 'Schneckenbecken dysplasia', 'Leptin receptor deficiency', 'Myopathy, proximal, and ophthalmoplegia', 'Optic atrophy--spastic paraplegia syndrome', 'Cerebral cavernous malformations 2', 'Episodic ataxia, type 3', 'Legius syndrome', 'Congenital myopathy 20', 'Currarino syndrome', 'Refsum disease', 'Dystonia, dopa-responsive, due to sepiapterin reductase deficiency', 'Hyperinsulinemic hypoglycemia, familial, 3', 'Bardet-Biedl syndrome 13', 'Skeletal dysplasia with delayed epiphyseal and carpal bone ossification', 'Aneurysm of interventricular septum', 'Amyloidosis of gingiva and conjunctiva, with mental retardation', 'GABA-transaminase deficiency', 'Microcephaly 13, primary, autosomal recessive', 'Lymphedema, cardiac septal defects, and characteristic facies', 'Ventricular arrhythmias due to cardiac ryanodine receptor calcium release deficiency syndrome', 'Mucopolysaccharidosis, type X', 'Cardiomyopathy, dilated, 1OO', 'Galloway-mowat syndrome 1', 'TYROSINOSIS', 'Ehlers-Danlos syndrome, spondylodysplastic type, 3', 'Spastic paraplegia 9A, autosomal dominant', 'Inclusion body myopathy with early-onset paget disease with or without frontotemporal dementia 1', 'Congenital disorder of glycosylation, type Iu', 'Thrombophilia due to decreased release of tissue plasminogen', 'Scheie syndrome', 'Hyperphenylalaninemia, bh4-deficient, C', 'Leukodystrophy, hypomyelinating, 16', 'Cystic angiomatosis of bone, diffuse', 'Multiple joint dislocations, short stature, craniofacial dysmorphism, with or without congenital heart defects', 'Leukemia, acute myelocytic, with polyposis coli and colon cancer', 'Lymphatic malformation 12', 'Oocyte maturation defect 7', 'Rigid spine muscular dystrophy 1', 'Epileptic encephalopathy, early infantile, 21', 'Muscular dystrophy, limb-girdle, type 2Q', 'Carpenter syndrome 1', 'Lipomatosis, multiple symmetric, with or without peripheral neuropathy', 'Neurodegeneration, childhood-onset, with multisystem involvement due to mitochondrial dysfunction', 'Tumoral calcinosis, hyperphosphatemic, familial, 1', 'Atrial septal defect 4', 'Charcot-Marie-Tooth disease, recessive intermediate C', 'Hyperphosphatasia with mental retardation', 'Fibrinolytic defect', 'Maple syrup urine disease, mild variant', 'Glioma susceptibility 3', 'Cluster headache, familial', 'Kaufman oculocerebrofacial syndrome', 'Pacman dysplasia', 'Pontocerebellar hypoplasia, type 1D', 'Agammaglobulinemia 8, autosomal dominant', 'Stuve-Wiedemann syndrome', 'Transient bullous dermolysis of the newborn', 'Hyperekplexia 1', 'Epidermolysis bullosa dystrophica, pretibial', 'Myopathy, congenital, with fast-twitch (type II) fiber atrophy', 'HYPERLEXIA', 'Multicentric osteolysis, nodulosis, and arthropathy', 'Aneurysm, intracranial berry, 3', 'Orthostatic hypotension 1, due to DBH deficiency', 'Microcephalic osteodysplastic primordial dwarfism, type I', 'Rhabdomyolysis, susceptibility to, 1', 'Spondyloepimetaphyseal dysplasia, Strudwick type', 'Cardiac septal defects with coarctation of the aorta', 'Paragangliomas 6', 'Patent ductus arteriosus 1', 'Patent ductus arteriosus 3', 'Thyroid hormone metabolism, abnormal, 3', 'SARCOSINEMIA', 'Chondrodysplasia punctata 2, X-linked dominant', 'Amyloidosis, primary localized cutaneous, 2', 'FANCONI ANEMIA, COMPLEMENTATION GROUP U', 'Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type B, 15', 'Arrhythmogenic right ventricular dysplasia, familial, 14', 'Lymphedema-Distichiasis syndrome', 'Radiculoneuropathy, fatal neonatal', 'Intellectual developmental disorder, autosomal recessive 64', 'Microcephaly 10, primary, autosomal recessive', 'Cataract 46, juvenile-onset', 'Fg syndrome 4', 'Joint contracture, osteochondromas, and B-cell lymphoma', 'Diencephalic-mesencephalic junction dysplasia syndrome 2', 'Cardiomyopathy, familial hypertrophic, 16', 'Atrial fibrillation, familial, 18', 'Capillary malformation-arteriovenous malformation 1', 'Cardiomyopathy, familial hypertrophic, 10', 'Circumvallate placenta syndrome', 'Cyclic vomiting syndrome', 'Neurodevelopmental disorder with microcephaly, epilepsy, and hypomyelination', 'Say syndrome', 'Mental retardation, autosomal recessive 18', 'Microcephaly-Capillary malformation syndrome', 'Cohen syndrome', 'Brugada syndrome 5', 'Retinitis pigmentosa 7', 'Microcephaly, short stature, and polymicrogyria with or without seizures', 'Amyotrophic lateral sclerosis 16, juvenile', 'Spinocerebellar ataxia, autosomal recessive 1', 'Autoimmune interstitial lung, joint, and kidney disease', 'Spastic paraplegia 30, autosomal recessive', 'Hermansky-Pudlak syndrome 11', 'Restrictive dermopathy 2', 'Gamma-A-Globulin, defect in assembly of', 'Cataract 16, multiple types', 'Mismatch repair cancer syndrome 2', 'Neu-Laxova syndrome 2', 'Ventricular fibrillation, paroxysmal familial, 2', 'Arthrogryposis, distal, with impaired proprioception and touch', 'Primrose syndrome', 'Hyperparathyroidism 1', 'Deafness, sensorineural, with peripheral neuropathy and arterial disease', 'Muscular dystrophy-dystroglycanopathy (congenital with mental retardation), type B, 3', 'Complement component 3 deficiency, autosomal recessive', 'Chromosome 17q11.2 duplication syndrome, 1.4-Mb', 'Marsili syndrome', 'Methylmalonic aciduria, transient, due to transcobalamin receptor defect', 'Ehlers-Danlos syndrome, dermatosparaxis type', 'Polymicrogyria with or without vascular-type EDS', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 1', 'Schizophrenia 4', 'Atrial standstill 1', 'Retinitis pigmentosa 6', 'Osteodysplasty, precocious, of danks, mayne, and kozlowski', 'Amelia and terminal transverse hemimelia', 'Diaphanospondylodysostosis', 'Nemaline myopathy 1', 'Feingold syndrome 1', 'Lowry-Wood syndrome', 'Epilepsy, familial temporal lobe, 5', 'Zimmermann-Laband syndrome 1', 'Paramyotonia congenita', 'Lymphedema-Hypoparathyroidism syndrome', 'Rigidity and multifocal seizure syndrome, lethal neonatal', 'Glucocorticoid deficiency 2', 'Steinfeld syndrome', 'Myopathy, myofibrillar, 4', 'Fetal iodine deficiency disorder', 'Intellectual developmental disorder with cardiac arrhythmia', 'Cardiomyopathy, familial hypertrophic, 14', 'Neutropenia, severe congenital 3, autosomal recessive', 'Melkersson-Rosenthal syndrome', 'Pituitary hormone deficiency, combined or isolated, 7', 'Lethal congenital contracture syndrome 8', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 3', 'Pelvic organ prolapse', 'Premature chromatid separation trait', 'Nathalie syndrome', 'INTUSSUSCEPTION', 'Epileptic encephalopathy, early infantile, 77', 'VISS syndrome', 'Lethal congenital contracture syndrome 2', 'Shprintzen-Goldberg craniosynostosis syndrome', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 12', 'Immunodeficiency 88', 'Myopathy, centronuclear, 4', 'Neurodevelopmental disorder with epilepsy, spasticity, and brain atrophy', 'Cardiomyopathy, dilated, 2E', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 14', 'Cardiofaciocutaneous syndrome 4', 'Polycystic lipomembranous osteodysplasia with sclerosing leukoencephalopathy', 'Mental retardation, autosomal dominant 57', 'Meester-Loeys syndrome', 'Chondrodysplasia calcificans metaphysealis', 'Insulinomatosis and diabetes mellitus', 'Brachyolmia type 1, Toledo type', 'Ebstein anomaly', 'Pancreatic cancer, susceptibility to, 5', 'Amyotrophic lateral sclerosis 8', 'Occipital horn syndrome', 'Shprintzen omphalocele syndrome', 'Renal failure, progressive, with hypertension', 'Pendred syndrome', 'Microcephaly 17, primary, autosomal recessive', 'Myopathy, epilepsy, and progressive cerebral atrophy', 'Ciliary dyskinesia, primary, 25', 'Myasthenic syndrome, congenital, 4A, slow-channel', 'Multiple congenital anomalies-hypotonia-seizures syndrome 3', 'Multiple pterygium syndrome, Lethal type', 'Inflammatory bowel disease 29', 'Lenz-Majewski hyperostotic dwarfism', 'Thyroid hormone resistance, generalized, autosomal dominant', 'Zttk syndrome', 'HYDROXYPROLINEMIA', 'Aminoacylase 1 deficiency', 'Atrial fibrillation, familial, 14', 'Myofibrillar myopathy 11', 'Legg-Calve-Perthes disease', 'Patent ductus arteriosus and bicuspid aortic valve with hand anomalies', 'Muscular dystrophy, limb-girdle, autosomal recessive 26', 'Slowed nerve conduction velocity, autosomal dominant', 'Intellectual developmental disorder with poor growth and with or without seizures or ataxia', 'Neurodevelopmental, jaw, eye, and digital syndrome', 'Enhanced S-cone syndrome', 'Lissencephaly 2', 'Cardiomyopathy, dilated, 1HH', 'Hemosiderosis, pulmonary, with deficiency of gamma-A globulin', 'Tyrosine transaminase deficiency', 'Oliver-Mcfarlane syndrome', 'Combined oxidative phosphorylation deficiency 50', 'Factor VIII and factor IX, combined deficiency of', 'Arrhythmogenic right ventricular dysplasia, familial, 3', 'Baraitser-Winter syndrome 1', 'Neurodevelopmental disorder with movement abnormalities, abnormal gait, and autistic features', 'Brain small vessel disease 1 with or without ocular anomalies', 'Vacterl association with hydrocephalus', 'Muscular dystrophy, limb-girdle, type 1E', 'Cutis laxa, autosomal dominant 1', 'Myopathy, congenital with structured cores and Z-line abnormalities', 'Ichthyosis vulgaris', 'LACTIC ACIDURIA DUE TO D-LACTIC ACID', 'Internal carotid artery, spontaneous dissection of', 'Prolactin deficiency with obesity and enlarged testes', 'Cardiomyopathy, dilated, 1Z', 'Neuropathy, hereditary sensory, X-linked', 'Immunodeficiency 61', 'Snijders Blok-Campeau syndrome', 'Epileptic encephalopathy, early infantile, 30', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 1', 'Succinic semialdehyde dehydrogenase deficiency', 'Lesch-Nyhan phenotype with normal hgprt', 'Cardiomyopathy, familial hypertrophic, 2', 'Hyperphosphatasia with impaired intellectual development syndrome 4', 'Spondylocostal dysostosis 4, autosomal recessive', 'Long QT syndrome 14', 'Cardiomyopathy, dilated, 1KK', 'Muscular dystrophy, limb-girdle, autosomal recessive 10', 'Immunodeficiency-Centromeric instability-facial anomalies syndrome2', 'Telangiectasia, hereditary benign', 'Pontocerebellar hypoplasia, type 4', 'Immunodeficiency, common variable, 4', 'Angiokeratoma corporis diffusum with arteriovenous fistulas', 'Hypokalemic periodic paralysis, type 2', 'Cerebral dysgenesis, neuropathy, ichthyosis, and palmoplantar keratoderma syndrome', 'Insulin-Like growth factor I, resistance to', 'Cerebrooculofacioskeletal syndrome 3', 'Cardiomyopathy, dilated, 2D', 'Myopathy due to myoadenylate deaminase deficiency', 'Glycosylphosphatidylinositol biosynthesis defect 17', 'Lymphatic malformation 3', 'Bardet-Biedl syndrome 3', 'GLUCOGLYCINURIA', 'Multiple pterygium syndrome, X-linked', '2-Methylbutyryl-Coa dehydrogenase deficiency', 'Muscular dystrophy, congenital, 1B', 'Developmental delay, impaired speech, and behavioral abnormalities', 'Cornelia de Lange syndrome 1', 'Noonan syndrome 5', 'Neurodevelopmental disorder with microcephaly and spastic paraplegia', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 8', 'Parkinson disease 22, autosomal dominant', 'Immunodeficiency 83, susceptibility to viral infections', 'Sneddon syndrome', 'T-cell lymphopenia, infantile, with or without nail dystrophy, autosomal dominant', 'Heart, malformation of', 'Urofacial syndrome', 'Martsolf syndrome 2', 'Dermatitis, atopic', 'Ventricular extrasystoles with syncope, perodactyly, and Robin sequence', 'Zinc deficiency, transient neonatal', 'Immune deficiency, familial variable', 'Camptodactyly 1', '3-M syndrome 1', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 5', 'Peho-Like syndrome', 'Naegeli-Franceschetti-Jadassohn syndrome', 'Neurodevelopmental disorder with spasticity, seizures, and brain abnormalities', 'Immunodeficiency 38 with basal ganglia calcification', 'Phosphoserine phosphatase deficiency', 'Neuropathy, hereditary sensory, with spastic paraplegia, autosomal recessive', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 12', 'Microcephaly, primary autosomal recessive, 1', 'Myopathy, distal, with rimmed vacuoles', 'Pulmonary hypertension, primary, autosomal recessive', 'Spondylocostal dysostosis 3, autosomal recessive', 'Lysine malabsorption syndrome', 'Arthrogryposis, distal, type 2A', 'Cardiomyopathy, familial hypertrophic, 13', 'Immunodeficiency 51', 'Muscular dystrophy, congenital, due to integrin alpha-7 deficiency', 'Li-Fraumeni syndrome', 'Hypomagnesemia 4, renal', 'Bardet-Biedl syndrome 9', 'Cole disease', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 15', 'Cone-rod dystrophy 12', 'Waardenburg syndrome, type 4B', 'Oculorenocerebellar syndrome', 'Microtia, hearing impairment, and cleft palate', 'Carpal tunnel syndrome', 'Hennekam lymphangiectasia-lymphedema syndrome', 'Myopathy, tubular aggregate, 2', 'Atrial septal defect 6', 'Van Maldergem syndrome 1', 'Bethlem myopathy 2', 'Atrial septal defect with atrioventricular conduction defects', 'Ichthyosis, mental retardation, dwarfism, and renal impairment', 'Hernia, double inguinal', 'Myopathy, distal, 6, adult onset', 'Fountain syndrome', 'Sedoheptulokinase deficiency', 'Atrial fibrillation, familial, 4', 'Enchondromatosis, multiple', 'Stiff skin syndrome', 'Aortic arch anomaly with peculiar facies and mental retardation', 'Glomerulosclerosis, focal segmental, 5', 'Sinus node disease and myopia', 'Congenital lipomatous overgrowth, vascular malformations, and epidermal nevi', 'Neurodegeneration, infantile-onset, biotin-responsive', 'D-2-Hydroxyglutaric aciduria 1', 'Cataract 11, multiple types', 'Emanuel syndrome', 'Patent ductus arteriosus 2', 'Muscular dystrophy, limb-girdle, type 2Y', 'Charcot-Marie-Tooth disease, dominant intermediate A', 'Achalasia, familial esophageal', 'Frank-ter Haar syndrome', 'Nemaline myopathy 11, autosomal recessive', 'Facioscapulohumeral muscular dystrophy 1', 'Microphthalmia, syndromic 12', 'Heterotaxy, visceral, 10, autosomal, with male infertility', 'Exostoses, multiple, type I', 'Miyoshi muscular dystrophy 1', 'Diastrophic dysplasia', 'Chromosome 15q26-qter deletion syndrome', 'Diarrhea 3, secretory sodium, congenital, with or without other congenital anomalies', 'Combined osteogenesis imperfecta and Ehlers-Danlos syndrome 2', 'Hypomagnesemia 1, intestinal', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 9', 'Metaphyseal dysplasia with maxillary hypoplasia and brachydactyly', 'Blood group, cromer system', 'Behcet syndrome', 'Osseous heteroplasia, progressive', 'Xia-Gibbs syndrome', 'Multiple congenital anomalies-hypotonia-seizures syndrome 2', 'Neuronal intranuclear inclusion disease', 'Cardiomyopathy, familial hypertrophic, 15', 'Xeroderma pigmentosum, complementation group F', 'Obesity-Hypoventilation syndrome', 'Recombinant chromosome 8 syndrome', 'Al-Gazali-Bakalinova syndrome', 'Hyperuricemic nephropathy, familial juvenile, 3', 'Glomerulocystic kidney disease with hyperuricemia and isosthenuria', 'Homocystinuria due to deficiency of n(5,10)-methylenetetrahydrofolatereductase activity', 'Pseudohermaphroditism, male, with gynecomastia', 'Hydrops fetalis, nonimmune, with gracile bones and dysmorphic features', 'Leiomyoma of vulva and esophagus', 'Ververi-Brady syndrome', 'Gillespie syndrome', 'Arrhythmogenic right ventricular dysplasia, familial, 1', 'Radial aplasia, X-linked', 'Anorectal anomalies', 'Necrotizing encephalomyelopathy, subacute, of leigh, adult', 'Meier-Gorlin syndrome 1', 'Microcephaly with cervical spine fusion anomalies', 'Sacral defect with anterior meningocele', 'Hypoglossia with situs inversus', 'UV-sensitive syndrome 3', 'Creatine phosphokinase, elevated serum', 'Hypomagnesemia 2, renal', 'Polyposis of gastric fundus without polyposis coli', 'Congenital myopathy 2C, severe infantile, autosomal dominant', 'Paragangliomas 4', 'Satoyoshi syndrome', 'Immunodeficiency 101 (varicella zoster virus-specific)', 'Oculopharyngodistal myopathy 4', 'Mitochondrial complex IV deficiency, nuclear type 14', 'Gastrointestinal stromal tumor/GIST-plus syndrome, somatic or familial', 'Schimmelpenning-Feuerstein-Mims syndrome', 'Hydrocephalus, tall stature, joint laxity, and kyphoscoliosis', 'Muscular dystrophy, congenital, with or without seizures', 'Retinal arteries, tortuosity of', 'Pseudohyperkalemia, familial, 2, due to red cell leak', 'Immunodeficiency 13', 'Aortic arch interruption, facial palsy, and retinal coloboma', 'Spondyloepiphyseal dysplasia tarda, autosomal recessive', 'Miyoshi muscular dystrophy 3', 'Frontoocular syndrome', 'Deafness, neural, with atypical atopic dermatitis', 'Feingold syndrome 2', 'Spinal muscular atrophy with congenital bone fractures 2', 'Fibromuscular dysplasia, multifocal', 'Mismatch repair cancer syndrome 3', 'Blepharochalasis, superior', 'Brachyolmia type 2', 'Atrial fibrillation, familial, 7', 'Neurodevelopmental disorder with microcephaly, ataxia, and seizures', 'Saccharopinuria', 'Microcephaly 11, primary, autosomal recessive', 'Mismatch repair cancer syndrome 4', 'Congenital disorder of glycosylation, type IIc', 'Bundle branch block, familial isolated complete right', 'Cardiomyopathy, dilated, 1FF', 'Short syndrome', 'Dyskinesia, limb and orofacial, infantile-onset', 'Osteogenesis imperfecta, type IX', 'Atrial tachyarrhythmia with short pr interval', 'Pulmonary atresia with ventricular septal defect', 'Beta-aminoisobutyric acid, urinary excretion of', 'CYSTATHIONINURIA', 'Bardet-Biedl syndrome 14', 'Cerebral cavernous malformations 3', 'Choroid plexus calcification and mental retardation', 'Intellectual developmental disorder, autosomal recessive 68', 'Muscular dystrophy, limb-girdle, type 1H', 'Myopathy, myosin storage, autosomal recessive', 'Bardet-Biedl syndrome 11', 'Epidermodysplasia verruciformis, susceptibility to, 4', 'Coracoclavicular joint, anomalous', 'Ige responsiveness, atopic', 'Arrhythmogenic right ventricular dysplasia, familial, 4', 'Ventricular septal defect 3', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 5', 'Aicardi-Goutieres syndrome 2', 'Rhizomelic skeletal dysplasia with or without Pelger-Huet anomaly', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 7', 'Brain small vessel disease 2', 'Spondylocostal dysostosis with anal atresia and urogenital anomalies', 'Muscular dystrophy, limb-girdle, type 2Z', 'Charcot-Marie-Tooth disease, axonal, type 2II', 'Leukodystrophy, hypomyelinating, 26, with chondrodysplasia', 'Diaphragmatic defects, limb deficiencies, and ossification defects of skull', 'Prune belly syndrome', 'Phosphohydroxylysinuria', 'Ullrich congenital muscular dystrophy 2', 'Yoon-Bellen neurodevelopmental syndrome', 'Charcot-Marie-Tooth disease, dominant intermediate E', 'Immunodeficiency 70', 'Oculopharyngodistal myopathy 2', 'Kanzaki disease', 'Ataxia-Oculomotor apraxia 3', 'Bulbar palsy, progressive, of childhood', 'Amyotrophic lateral sclerosis 26 with or without frontotemporal dementia', 'Proteus syndrome, somatic', 'Pierpont syndrome', 'Atrial septal defect 8', 'Microcephaly, short stature, and impaired glucose metabolism 2', 'Spondyloepimetaphyseal dysplasia, Faden-Alkuraya type', 'Vesicoureteral reflux 1', 'Peripheral demyelinating neuropathy, central dysmyelination, Waardenburg syndrome, and Hirschsprung disease', 'Joubert syndrome 21', 'Spinal muscular atrophy with congenital bone fractures 1', 'Pulmonary atresia with intact ventricular septum', 'Morquio syndrome C', 'Dystonia 32', 'Dandy-Walker malformation with postaxial polydactyly', 'Cerebellar ataxia, benign, with thermoanalgesia', 'Nuchal bleb, familial', 'Nijmegen breakage syndrome-like disorder', 'Language delay and attention deficit-hyperactivity disorder/cognitive impairment with or without cardiac arrhythmia', 'Nivelon-Nivelon-Mabille syndrome', 'Neurofibromatosis-Noonan syndrome', 'Encephalopathy, progressive, early-onset, with episodic rhabdomyolysis', 'Parkinsonism-Dystonia, infantile, 1', 'Spastic paraplegia 70, autosomal recessive', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 2', 'Kilquist syndrome', 'Mandibuloacral dysplasia with type B lipodystrophy', 'Nabais Sa-de vries syndrome, type 2', 'Atrial fibrillation, familial, 11', 'Pulmonary venoocclusive disease 1', 'Total anomalous pulmonary venous return 1', 'Leukodystrophy, adult-onset, autosomal dominant', 'Chromosome 13q33-q34 deletion syndrome', 'Seckel syndrome 9', 'Leber congenital amaurosis 4', 'Hyperphenylalaninemia, BH4-deficient, D', 'Webb-Dattani syndrome', 'Combined oxidative phosphorylation deficiency 49', 'Pituitary dwarfism with large sella turcica', 'Chromosome 20q11-q12 deletion syndrome', 'Myopathy, distal, 4', 'Neurodevelopmental disorder, X-linked, with craniofacial abnormalities', 'Charge syndrome', 'Joubert syndrome 37', 'Mosaic variegated aneuploidy syndrome 2', 'Cervical vertebral bridge', 'Finger locking, recurrent, with intrauterine growth retardation andproportionate short stature', 'Metatropic dysplasia', 'Alzheimer disease', 'Macular dystrophy, corneal, 1', 'Ataxia, intention tremor, and hypotonia syndrome, childhood-onset', 'Charcot-Marie-Tooth disease, type 2J', 'Hyperkalemic periodic paralysis', 'Arteries, anomalies of', 'Hemangiopericytoma, malignant', 'Neurodegeneration with brain iron accumulation 7', 'Craniometaphyseal dysplasia, autosomal dominant', 'Meacham syndrome', 'Galloway-Mowat syndrome 7', 'Hypothyroidism, congenital, nongoitrous, 4', 'Thumb deformity', 'Exostoses, multiple, type II', 'Transposition of the great arteries, dextro-looped 1', 'Smith-Magenis syndrome', 'Intracranial hypertension, idiopathic', 'Chromosome 19q13.11 deletion syndrome, distal', 'Facial palsy, congenital, with ptosis and velopharyngeal dysfunction', 'Hypotonia, ataxia, developmental delay, and tooth enamel defect syndrome', 'Hypertrophic neuropathy and cataract', 'Cataract 17, multiple types', 'Epidermolytic hyperkeratosis 2', 'Immunodeficiency 27B', 'Kabuki syndrome 2', 'Epidermolysis bullosa simplex, Ogna type', 'Spondylometaphyseal dysplasia, type A4', 'Bardet-Biedl syndrome 22', 'Spondylosis, cervical', 'Sorbitol dehydrogenase deficiency with peripheral neuropathy', 'GLUT1 deficiency syndrome 1, infantile onset, severe', 'Hyperprolinemia, type II', 'Charcot-Marie-Tooth disease, axonal, type 2B1', 'Craniolenticulosutural dysplasia', 'Leukodystrophy, hypomyelinating, 20', 'Immunodeficiency, common variable, 3', 'Cardiomyopathy, familial hypertrophic, 3', 'Immunodeficiency 20', 'Mental retardation, autosomal recessive 30', 'Nemaline myopathy 6', 'Inflammatory bowel disease 21', 'Inflammatory bowel disease 3', 'Gombo syndrome', 'Carcinoid tumors, intestinal', 'Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type B, 1', 'Trichothiodystrophy 1, photosensitive', 'FG syndrome 3', 'Cayler cardiofacial syndrome', 'Hyperuricemia, infantile, with abnormal behavior and normal hypoxanthineguanine phosphoribosyltransferase', 'Atrioventricular septal defect, susceptibility to, 2', 'Intellectual developmental disorder with short stature and variable skeletal anomalies', 'Myoglobinuria, recurrent', 'Meckel diverticulum', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 3', 'Nephronophthisis-Like nephropathy 1', 'Cleidocranial dysplasia, recessive form', 'Spondyloepiphyseal dysplasia, Nishimura type', 'Heart-hand syndrome, Spanish type', 'Trichothiodystrophy 6, nonphotosensitive', 'Lethal congenital contracture syndrome 10', 'Diabetes mellitus, insulin-dependent-1', 'Pontine tegmental cap dysplasia', 'Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency 3', 'Porencephaly, cerebellar hypoplasia, and internal malformations', 'Chromosome 16q22 deletion syndrome', 'Mitchell syndrome', 'Mental retardation, autosomal dominant 35', 'Buerger disease', 'Neuromyotonia and axonal neuropathy, autosomal recessive', 'Noonan syndrome 14', 'Aminopterin syndrome sine aminopterin', 'Myoclonus, intractable, neonatal', 'Nemaline myopathy 5B, autosomal recessive, childhood-onset', 'Ichthyosis, congenital, autosomal recessive 3', 'Dyslexia, susceptibility to, 8', 'Neurodevelopmental disorder with hypotonia, impaired speech, and behavioral abnormalities', 'Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 3', '3-M syndrome 2', 'Joubert syndrome 18', 'Cardiomyopathy, familial restrictive, 1', 'Neurodegeneration, childhood-onset, hypotonia, respiratory insufficiency and brain imaging abnormalities', 'SPONDYLOLISTHESIS', 'Omphalocele due to duplication of 1p31.3', 'OMPHALOCELE', 'Aland island eye disease', 'Parathyroid carcinoma', 'Muscular dystrophy, limb-girdle, autosomal dominant 2', 'Microcephaly 27, primary, autosomal dominant', 'Blount disease, adolescent', 'Epileptic encephalopathy, early infantile, 55', 'Charcot-Marie-Tooth disease, dominant intermediate D', 'Glycogen storage disease XV', 'Tetralogy of Fallot and glaucoma', 'Neurodevelopmental disorder with alopecia and brain abnormalities', 'Lacrimal duct defect', 'Sprengel deformity', 'Lung agenesis, congenital heart defects, and thumb anomalies syndrome', 'Cataract, juvenile, with microcornea and glucosuria', 'Hunter-Macdonald syndrome', 'Polyposis, intestinal, with multiple exostoses', 'Rippling muscle disease', 'Hypoglycemia of infancy, leucine-sensitive', 'Rothmund-Thomson syndrome', 'Spinal intradural arachnoid cysts', 'Phosphoglycerate kinase 1 deficiency', 'Myopathy, distal 3', 'Boucher-Neuhauser syndrome', 'Short-Rib thoracic dysplasia 11 with or without polydactyly', 'Desbuquois dysplasia 1', 'Neurodevelopmental disorder with dysmorphic facies and thin corpus callosum', 'Hypercalciuria, absorptive, susceptibility to', 'Developmental and epileptic encephalopathy 58', 'Schwartz-jampel syndrome, type 1', 'Atrioventricular dissociation', 'Cerebrooculofacioskeletal syndrome 2', 'Myopathy, myofibrillar, 6', 'Myopathy, distal, 5', 'Congenital disorder of glycosylation, type IIz', 'Proteinuria, chronic benign', 'Focal segmental glomerulosclerosis 2', 'Gillessen-Kaesbach-Nishimura syndrome', 'Spondyloepimetaphyseal dysplasia with joint laxity, type 3', 'Brain abnormalities, neurodegeneration, and dysosteosclerosis', 'Intellectual developmental disorder with hypotonia and behavioral abnormalities', 'Glycosylphosphatidylinositol biosynthesis defect 15', 'Retinal cone dystrophy 3A', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 14', 'Kleeblattschaedel syndrome', 'Retinal dystrophy, iris coloboma, and comedogenic acne syndrome', 'Indolylacroyl glycinuria with mental retardation', 'Short stature with nonspecific skeletal abnormalities', 'Oculopharyngodistal myopathy 1', 'Annular erythema', 'Urticaria, aquagenic', 'Benign chronic pemphigus', 'Urticaria, familial localized heat', 'Erythema palmare hereditarium', 'Myasthenic syndrome, congenital, 1A, slow-channel', 'Arrhythmogenic right ventricular dysplasia, familial, 13', 'Epileptic encephalopathy, early infantile, 78', 'IgA NEPHROPATHY, SUSCEPTIBILITY TO, 2', 'Sick sinus syndrome 1', 'Familial cold autoinflammatory syndrome 3', 'Immunodeficiency 35', 'Hypertension, early-onset, autosomal dominant, with severe exacerbationin pregnancy', 'METACHONDROMATOSIS', 'Facial dysmorphism, immunodeficiency, livedo, and short stature', 'Thoracomelic dysplasia', 'Chromosome Xq13 duplication syndrome', 'Cardiomyopathy, dilated, 1Y', 'Ciliary dyskinesia, primary, 43', 'Complement factor B deficiency', 'Cataracts, growth hormone deficiency, sensory neuropathy, sensorineural hearing loss, and skeletal dysplasia', 'Paragangliomas 5', 'Spondyloepimetaphyseal dysplasia, Isidor-Toutain type', 'Congenital cataracts, hearing loss, and neurodegeneration', 'Myasthenic syndrome, congenital, 4B, fast-channel', 'Episodic ataxia, type 4', 'Spinal dysplasia, Anhalt type', 'Hydrocephalus, normal pressure, 1', 'Ichthyosis, split hairs, and amino aciduria', 'Intellectual developmental disorder with language impairment and early-onset DOPA-responsive dystonia-parkinsonism', 'Scoliosis, idiopathic, susceptibility to, 1', 'Isotretinoin embryopathy-like syndrome', 'Treacher-Collins syndrome 4', 'Tumor predisposition syndrome 2', 'Dystonia 2, torsion, autosomal recessive', 'Huntington disease-like 2', 'Intellectual developmental disorder, autosomal recessive 24', 'Short stature, idiopathic familial', 'Brugada syndrome 7', 'Gurrieri syndrome', 'Spinocerebellar ataxia, autosomal recessive 20', 'Amelia, autosomal recessive', 'Asparagine synthetase deficiency', 'Radial-Renal syndrome', 'Mononeuropathy of the median nerve, mild', 'Intellectual developmental disorder with macrocephaly, seizures, and speech delay', 'URIDINE-CYTIDINEURIA', 'Onychotrichodysplasia and neutropenia', 'Ehlers-Danlos syndrome, periodontal type, 2', 'Cardiomyopathy, familial hypertrophic, 12', 'Immunodeficiency 65, susceptibility to viral infections', 'Bardet-Biedl syndrome 8', 'Anus, imperforate', 'Auriculocondylar syndrome 2', 'Cerebral amyloid angiopathy, itm2b-related, 1', 'Kaya-Barakat-Masson syndrome', 'RAPADILINO syndrome', 'Myasthenic syndrome, congenital, 25, presynaptic', 'Polyhydramnios, megalencephaly, and symptomatic epilepsy', 'Neuroblastoma, susceptibility to, 2', 'Intellectual developmental disorder with gastrointestinal difficulties and high pain threshold', 'Carney complex variant', 'Hyperoxaluria, primary, type III', 'Pyloric atresia', 'Developmental and epileptic encephalopathy 107', 'Anauxetic dysplasia 3', 'Muscular dystrophy, limb-girdle, type 2C', 'Carey-Fineman-Ziter syndrome 2', 'Spinocerebellar ataxia 48', 'Dworschak-Punetha neurodevelopmental syndrome', 'Congenital myopathy 13', 'Ceroid lipofuscinosis, neuronal, 9', 'Respiratory distress syndrome in premature infants', 'Dwarfism with tall vertebrae', 'Osteogenesis imperfecta congenita, microcephaly, and cataracts', 'Spondylocostal dysostosis 6, autosomal recessive', 'Triphalangeal thumbs and dislocation of patella', 'Epileptic encephalopathy, early infantile, 39', 'Opsismodysplasia', 'Carney complex, type 1', 'Vesicoureteral reflux 3', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 5', 'Cardiomyopathy, dilated, 1R', 'Tumoral calcinosis, hyperphosphatemic, familial, 2', 'Nephronophthisis 15', 'Congenital myopathy 10B, mild variant', 'Charcot-Marie-Tooth disease, axonal, type 2T', 'Au-Kline syndrome', 'Fetal encasement syndrome', 'Chondrodysplasia punctata, autosomal dominantchondrodysplasia punctata due to vitamin K deficiency, included', 'Holoprosencephaly with fetal akinesia/hypokinesia sequence', 'Hemangiomas of small intestine', 'Epileptic encephalopathy, early infantile, 76', 'Cystinosis, adult nonnephropathic', 'Epileptic encephalopathy, infantile or early childhood, 2', 'CARNOSINEMIA', 'Microcephaly 16, primary, autosomal recessive', 'Visceral neuropathy, familial, autosomal recessive', 'Hirschsprung disease with ulnar polydactyly, polysyndactyly of bigtoes, and ventricular septal defect', 'Deafness, congenital, with vitiligo and achalasia', 'Vater associationvacterl association, included', 'Myofibrillar myopathy 10', 'Mental and growth retardation with amblyopia', 'Cowchock syndrome', 'Candidiasis, familial chronic mucocutaneous, autosomal dominant', 'Roussy-Levy hereditary areflexic dystasia', 'Myopathy, myofibrillar, fatal infantile hypertonic, alpha-B crystallin-related', 'Duodenal atresia', 'Loeys-Dietz syndrome 1', 'Iga nephropathy, susceptibility to, 3', 'Spondylometaphyseal dysplasia, corner Fracture type', 'Atrial fibrillation, familial, 2', 'Surfactant metabolism dysfunction, pulmonary, 2', 'Tubulointerstitial kidney disease, autosomal dominant, 1', 'Colorectal cancer, hereditary nonpolyposis, type 5', 'Chondrocalcinosis 1', 'Heart-hand syndrome, Slovenian type', 'Encephalopathy, acute, infection-induced, susceptibility to, 3', 'Stevenson-Carey syndrome', 'Ehlers-Danlos syndrome with platelet dysfunction from fibronectin abnormality', 'Myasthenic syndrome, congenital, 1B, fast-channel', 'Mowat-Wilson syndrome', 'Leopard syndrome 1', 'Camptodactyly-Arthropathy-Coxa vara-pericarditis syndrome', 'Muscular dystrophy-dystroglycanopathy (congenital with or without impaired intellectual development), type B, 5', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions,autosomal dominant, 6', 'Atrial fibrillation, familial, 6', 'Hyperphosphatasia with mental retardation syndrome 3', 'Prepapillary vascular loops', 'Venular insufficiency, systemic', 'Spondyloepiphyseal dysplasia, Maroteaux type', 'Chromosome 18q deletion syndrome', 'Cohen-Gibson syndrome', 'Vertebral, cardiac, renal, and limb defects syndrome 1', 'Osteomas of mandible', 'Bardet-Biedl syndrome 18', 'T-CELL IMMUNODEFICIENCY, CONGENITAL ALOPECIA, AND NAIL DYSTROPHY', 'Thoracic dysostosis, isolated', 'Cerebral cavernous malformations 4', 'Immunodeficiency 66', 'Hirschsprung disease, susceptibility to, 5', 'Aganglionosis, total intestinal', 'Spinocerebellar degeneration and corneal dystrophy', 'Diabetes and deafness, maternally inherited', 'Palmaris longus muscle, absence of', 'Toe, misshapen', 'Toes, relative length of first and second', 'Monophalangy of great toe', 'Double nail for fifth toe', 'Carpal displacement', 'Pubic bone dysplasia', 'Pachydermodactyly, familial', 'Toe, fifth, number of phalanges in', 'Myopathy, myofibrillar, 3', 'AURICULOOSTEODYSPLASIA', 'Thumb agenesis, short stature, and immunodeficiency', 'Acromegaloid changes, cutis verticis gyrata, and corneal leukoma', 'MICROCEPHALY-CARDIOMYOPATHY', 'Glaucoma 3, primary congenital, E', 'Exostoses of heel', 'Corneal dystrophy, fuchs endothelial, 3', 'Vertebral, cardiac, renal, and limb defects syndrome 3', 'Corneal dystrophy, fuchs endothelial, 1', 'Mitochondrial DNA depletion syndrome 14 (encephalocardiomyopathic type)', 'Immunodeficiency 49', 'Split-Hand/foot malformation 3', 'Long QT syndrome 10', 'Epilepsy, idiopathic generalized, susceptibility to, 18', 'Atrial fibrillation, familial, 15', 'Lumbar stenosis, familial', 'Scheuermann disease', 'Nephronophthisis-like nephropathy 2', 'MEGALENCEPHALY', 'Cardiomyopathy, familial hypertrophic, 7', 'Brachydactyly, type e, with atrial septal defect, type II', 'DERMATOLEUKODYSTROPHY', 'Helix syndrome', 'Agammaglobulinemia 5, autosomal dominant', 'Epilepsy, focal, with speech disorder and with or without mental retardation', 'Knobloch syndrome 2', 'Smith-Mccort dysplasia 1', 'Panhypopituitarism, X-linked', 'Camptomelic syndrome, Long-Limb type', 'Aromatase excess syndrome', 'Hermansky-Pudlak syndrome 8', 'Right ventricular hypoplasia, isolated', 'Pontocerebellar hypoplasia, type 17', 'Frontotemporal dementia and/or amytrophic lateral sclerosis 8', 'Erythema nodosum, familial', 'Tibial torsion, bilateral medial', 'Platyspondylic lethal skeletal dysplasia, Torrance type', 'Diaphragmatic hernia 2', 'Hypersulfaturia', 'Myasthenic syndrome, congenital, 5', 'Intellectual developmental disorder, X-linked, syndromic, Pilorge type', 'Costocoracoid ligament, congenitally short', 'Immunodeficiency 15A', 'Mitochondrial complex I deficiency, nuclear type 10', 'Intellectual developmental disorder, autosomal dominant 21', 'Charcot-Marie-Tooth disease, axonal, type 2A1', 'Triphalangeal thumb, nonopposable', '3-@methylglutaconic aciduria, type IV', 'Intellectual developmental disorder with abnormal behavior, microcephaly, and short stature', 'Spastic paraplegia 79A, autosomal dominant', 'Short stature, amelogenesis imperfecta, and skeletal dysplasia with scoliosis', 'Tendons, extensor, of fingers, anomalous insertion of', 'Vertical talus, congenital', 'Neurodevelopmental disorder with hypotonia, seizures, and absent language', 'Intellectual developmental disorder with autistic features and language delay, with or without seizures', 'Polyposis, intestinal, scattered and discrete', 'Sessile serrated polyposis cancer syndrome', 'Glycinuria with or without oxalate urolithiasis', 'Neurodevelopmental disorder with seizures and speech and walking impairment', 'Melanoma-Pancreatic cancer syndrome', 'Spondyloepiphyseal dysplasia tarda with mental retardation', 'Spondyloepiphyseal dysplasia, Kimberley type', 'Delpire-Mcneill syndrome', 'Alzheimer disease 4', 'Spastic paraplegia 29, autosomal dominant', 'Spondylometaphyseal dysplasia, Sedaghatian type', 'Cataracts, spastic paraparesis, and speech delay', 'Brachmann-De lange-like facial changes with microcephaly, metatarsusadductus, and developmental delay', 'Charcot-Marie-Tooth disease, axonal, type 2I', 'Syndesmodysplasic dwarfism', 'Immunodeficiency, common variable, 10', 'Spondylocostal dysostosis 2, autosomal recessive', 'Muscular dystrophy, congenital, megaconial type', 'Leukodystrophy, hypomyelinating, 17', 'Chondrocalcinosis 2', 'Hydroxylysinuria', 'Paroxysmal nonkinesigenic dyskinesia 1', 'Second metatarsal-metacarpal syndrome', 'Pontocerebellar hypoplasia type 1A', 'Anauxetic dysplasia 1', 'Ventricular tachycardia, familial', 'Myasthenic syndrome, congenital, 3B, fast-channel', 'Epiphyseal dysplasia, multiple, 7', 'Osteoarthritis of distal interphalangeal joints', 'UV-sensitive syndrome 1', 'Megalencephaly-Polymicrogyria-Polydactyly-Hydrocephalus syndrome', 'Pulmonary hypertension, primary, 2', 'Dwarfism, proportionate, with hip dislocation', 'Aphalangia, partial, with syndactyly and duplication of metatarsaliv', 'Ceroid lipofuscinosis, neuronal, 1', 'Sacral agenesis with vertebral anomalies', 'Retinitis pigmentosa 4', 'Pilonidal sinus', 'Thoracopelvic dysostosis', 'Developmental and epileptic encephalopathy 16', 'Lesch-Nyhan syndrome', 'Muscular dystrophy, limb-girdle, type 2B', 'Hyperinsulinemic hypoglycemia, familial, 5', 'Developmental dysplasia of the hip 2', 'Trigger thumb', 'Lynch syndrome I', 'Colorectal cancer, hereditary nonpolyposis, type 2', 'Vertebral hypoplasia with lumbar kyphosis', 'Atrial septal defect 5', 'Atrial septal defect 3', 'Beck-Fahrner syndrome', 'Peripheral neuropathy, ataxia, focal necrotizing encephalopathy, and', 'Myotonia, potassium-aggravated', 'Atrial fibrillation, familial, 12', 'Loeys-Dietz syndrome 4', 'Epiphyseal dysplasia, multiple, 5', 'Neurodevelopmental disorder with eye movement abnormalities and ataxia', 'Craniosynostosis 5, susceptibility to', 'Dubowitz syndrome', 'Orofaciodigital syndrome VI', 'Cone-rod synaptic disorder syndrome, congenital nonprogressive', 'Osteogenesis imperfecta, type XV', 'Toes, space between first and second', 'Achard syndrome', 'Acrodysostosis 1, with or without hormone resistance', 'Auralcephalosyndactyly', 'Bohring-Opitz syndrome', 'Panencephalitis, subacute sclerosing', 'Intellectual developmental disorder, X-linked 111', 'Cardiomyopathy, familial hypertrophic, 25', 'Mismatch repair cancer syndrome 1', 'Left ventricular noncompaction 2', 'Bardet-Biedl syndrome 5', 'Laryngeal abductor paralysis', 'Epilepsy, progressive myoclonic, 6', 'Myasthenic syndrome, congenital, 24, presynaptic', 'Muscular dystrophy, limb-girdle, type 2L', 'Patella, chondromalacia of', 'Microcephaly with chemotactic defect and transient hypogammaglobulinemia', 'Neurodevelopmental disorder with hypotonia, neuropathy, and deafness', 'Muscular dystrophy, limb-girdle, autosomal dominant 4', 'Sotos syndrome', 'Neuronopathy, distal hereditary motor, type X', 'Polydactyly, preaxial III', 'Tetraamelia, autosomal recessive', 'Autoinflammation, antibody deficiency, and immune dysregulation, plcg2-associated', 'Achalasia-Microcephaly syndrome', 'Palmoplantar hyperkeratosis with squamous cell carcinoma of skin and 46,xx sex reversal', 'Cardiomyopathy associated with myopathy and sudden death', 'Muscular dystrophy, congenital, with cataracts and intellectual disability', 'Odontoid hypoplasia', 'Osteogenesis imperfecta, type VI', 'Metatarsus varus, type I', 'Cardiomyopathy, dilated, 1W', 'Migraine, familial hemiplegic, 2', 'Blepharospasm, benign essential, susceptibility to', 'Neurodevelopmental disorder with structural brain anomalies and dysmorphic facies', 'Vertebral, cardiac, renal, and limb defects syndrome 2', 'DIAMINOPENTANURIA', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 4', 'Sella turcica, bridged', 'Hypoplastic femurs and pelvis', 'Muscular dystrophy, limb-girdle, autosomal recessive 23', 'Cerebellar ataxia, brain abnormalities, and cardiac conduction defects', 'Liberfarb syndrome', 'Colorectal cancer, hereditary nonpolyposis, type 7', 'Colorectal cancer, hereditary nonpolyposis, type 6', 'Roberts-SC phocomelia syndrome', 'Cleidorhizomelic syndrome', 'Charcot-Marie-Tooth disease, axonal, type 2HH', 'Lipoid congenital adrenal hyperplasia', 'Dystonia, DOPA-responsive, with or without hyperphenylalaninemia', 'Cryofibrinogenemia, familial primary', 'Hematuria, benign familial', 'Orthostatic intolerance', 'Blepharochalasis and double lip', 'Exostoses, multiple, type III', 'Asthma, susceptibility to', 'Growth hormone deficiency, isolated, type IB', 'Tibial hemimelia', 'Intellectual developmental disorder, autosomal recessive 9/26', 'Hypogonadotropic hypogonadism 27 without anosmia', 'Mesomelic dwarfism of hypoplastic tibia and Radius type', 'Alazami syndrome', 'Oculopharyngeal myopathy with leukoencephalopathy 1', 'Periventricular nodular heterotopia 7', 'Myxoma, intracardiac', 'Intellectual developmental disorder, autosomal dominant 46', 'Dystonia with cerebellar atrophy', 'Thiemann disease', 'Growth hormone insensitivity, partial', 'Santos syndrome', 'Encephalopathy, neonatal severe, due to mecp2 mutations', 'Brachyolmia type 3', 'Muscular dystrophy, limb-girdle, type 2G', 'Parastremmatic dwarfism', 'Cerebral creatine deficiency syndrome 1', 'Medullary cystic kidney disease 2', 'Intellectual developmental disorder with behavioral abnormalities and craniofacial dysmorphism with or without seizures', 'Thoracoabdominal syndrome', 'Echo virus 11 sensitivity', 'Leprosy, susceptibility to', 'Immune suppression', 'Immunoglobulin D level in plasma, low', 'Radiation sensitivity of natural killer activity', 'Allergic bronchopulmonary aspergillosis', 'Galloway-Mowat syndrome 4', 'Pontocerebellar hypoplasia, type 2A', 'Masp2 deficiency', 'Brody myopathy', 'Hypomagnesemia 6, renal', 'Bardet-Biedl syndrome 10', 'Muscular dystrophy, congenital, Davignon-Chauveau type', 'Bardet-Biedl syndrome 7', 'Tryptophanuria with dwarfism', 'Metachromatic leukodystrophy due to saposin B deficiency', 'Macrocephaly, benign familial', 'Spastic ataxia 5, autosomal recessive', 'Intellectual developmental disorder with persistence of fetal hemoglobin', 'Mental retardation, keratoconus, febrile seizures, and sinoatrialblock', 'Global developmental delay, progressive ataxia, and elevated glutamine', 'Waardenburg-Shah syndrome', 'Joubert syndrome 39', 'Salivary gland adenoma, pleomorphic', 'Palmoplantar keratoderma, epidermolytic', 'Acropectoral syndrome', 'Nephrotic syndrome, type 16', 'Stocco dos santos X-linked mental retardation syndrome', 'Coxa vara', 'Myopathy, mitochondrial, and ataxia', 'Neurodevelopmental disorder with feeding difficulties, thin corpus callosum, and foot deformity', 'Anal canal carcinomacloacogenic carcinoma, included', 'Frontometaphyseal dysplasia 2', 'Schwannomatosis 2', 'Spondyloepiphyseal dysplasia tarda, autosomal recessive, leroy-sprangertype', 'Dermodistortive urticaria', 'Thyroid hormonogenesis, genetic defect in, 4', 'Leukomelanoderma, infantilism, mental retardation, hypodontia, hypotrichosis', 'Bone pain, periodic', 'Xanthinuria, type II', 'Meier-Gorlin syndrome 7', 'Abnormal hair, joint laxity, and developmental delay', 'Atrial septal defect 9', 'Multiple endocrine neoplasia, type IIA', 'Short-rib thoracic dysplasia 21 without polydactyly', 'Neurodevelopmental disorder with spasticity and poor growth', 'Hemangioma, capillary infantile', 'Limb-girdle muscular dystrophy, type 1G', 'Episodic ataxia, type 9', 'Cataract, congenital, with mental impairment and dentate gyrus atrophy', 'Short-Rib thoracic dysplasia 18 with polydactyly', 'Peeling skin syndrome 1', 'Spinocerebellar atrophy with pupillary paralysis', 'Leg, absence deformity of, with congenital cataract', 'Pigmentary disorder, reticulate, with systemic manifestations, X-linked', 'Myhre syndrome', 'Slipped femoral capital epiphyses', 'Hypotaurinemic retinal degeneration and cardiomyopathy', 'Cornelia de Lange syndrome 3', 'Amyotrophic dystonic paraplegia', 'Fibular aplasia, tibial campomelia, and oligosyndactyly syndrome', 'Neuropathy, inflammatory demyelinating', 'Dementia, familial danish', 'Spinal muscular atrophy with mental retardation', 'Angiomatosis, diffuse corticomeningeal, of divry and van bogaert', 'Spondyloepiphyseal dysplasia tarda, autosomal dominant', 'Digital clubbing, isolated congenital', 'Alzheimer disease 5', 'Thymoma, familial', 'Alkaptonuria', 'Mirror movements 3', 'TRICHOTILLOMANIA', 'GALACTORRHEA', 'Cranioectodermal dysplasia 4', 'Intellectual developmental disorder, autosomal dominant 54', 'Amyloidosis, primary localized cutaneous, 1', 'Alzheimer disease, familial early-onset, with coexisting amyloid and prion pathology', 'Urofacial syndrome 2', 'Nipples, supernumerary', 'Left ventricular noncompaction 7', 'Complement component 4, partial deficiency of', 'ACROOSTEOLYSIS', 'Myasthenic syndrome, congenital, 20, presynaptic', 'Pronation-Supination of the forearm, impairment of', 'Ciliary dyskinesia, primary, 1', 'Cervical rib', 'Charcot-Marie-Tooth disease, axonal, type 2CC', 'IMINOGLYCINURIA', 'Developmental and epileptic encephalopathy 27', 'Giant axonal neuropathy, autosomal dominant', 'Oculopharyngodistal myopathy 3', 'Cerebral arteriopathy, autosomal dominant, with subcortical infarcts and leukoencephalopathy, type 2', 'Cardiomyopathy, familial hypertrophic, 20', 'Interstitial nephritis, karyomegalic', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 10', 'Aprosencephaly syndrome', 'Charcot-Marie-Tooth disease, axonal, with vocal cord paresis, autosomalrecessive', 'Osteofibrous dysplasia, susceptibility to', 'Epiphyseal dysplasia, multiple, with miniepiphyses', 'Cardiomyopathy, familial hypertrophic, 9', 'Cardiomyopathy, dilated, 1Q', 'Cardiomyopathy, dilated, 1H', 'Ataxia-telangiectasia-like disorder 2', 'Seckel syndrome 6', 'Cardiomyopathy, familial hypertrophic, 18', 'Retinitis pigmentosa 1', 'Cutis marmorata telangiectatica congenita', 'Kallmann syndrome with spastic paraplegia', 'Hirschsprung disease, susceptibility to, 2', 'Hirschsprung disease, susceptibility to, 4', 'Mental retardation, x-linked, syndromic, Turner type', 'Spastic paraplegia 25, autosomal recessive', 'Corpus callosum, agenesis of', 'Short stature, brachydactyly, intellectual developmental disability, and seizures', 'Knuckle pads', 'Rahman syndrome', 'Hypomandibular faciocranial dysostosis', 'Capillary malformation-arteriovenous malformation 2', 'Spondyloepimetaphyseal dysplasia, X-linked', 'Chondrodysplasia punctata, Tibia-Metacarpal type', 'Immunodeficiency 45', 'Canavan disease', 'Hirschsprung disease with hypoplastic nails and dysmorphic facialfeatures', 'Acrodysostosis 2 with or without hormone resistance', 'Melorheostosis, isolated', 'Cd8 deficiency, familial', 'Pterygium of conjunctiva and cornea', 'Congenital disorder of glycosylation, type Icc', 'Neurodegeneration with brain iron accumulation 3', 'Hyperthyroidism, familial gestational', 'Myotonia with skeletal abnormalities and mental retardation', 'Cutis laxa, neonatal, with marfanoid phenotype', 'Polydactyly, postaxial, type A8', 'Varicella, severe recurrent', 'Coronavirus 229E susceptibility', 'GENOCHONDROMATOSIS', 'Spondylospinal thoracic dysostosis', 'Hypothyroidism, congenital, nongoitrous, 7', 'Ceroid lipofuscinosis, neuronal, 6', 'Metaphyseal dysplasia without hypotrichosis', 'Familial adenomatous polyposis, 2', 'Short stature, auditory canal atresia, mandibular hypoplasia, andskeletal abnormalities', 'Neurodevelopmental disorder with hypotonia, microcephaly, and seizures', 'Vitamin A metabolic defect', 'Isolated growth hormone deficiency, type II', 'Peripheral dysostosis', 'Myasthenic syndrome, congenital, 19', 'Hallux varus and preaxial polysyndactyly', 'Mucocutaneous ulceration, chronic', 'Charcot-Marie-Tooth disease, type 4C', 'Neurodevelopmental disorder with or without autistic features and/or structural brain abnormalities', 'ECTRODACTYLY-POLYDACTYLY', 'Paragangliomas 7', 'Chromosome 3pter-p25 deletion syndrome', 'Cervical vertebral dysplasia', 'Digitotalar dysmorphism', 'Tetralogy of Fallot', 'Intellectual developmental disorder, autosomal dominant 26', 'RHINY', 'Osteoma of middle ear', 'Nemaline myopathy 8', 'Parietal foramina 3', 'Neurodevelopmental disorder with microcephaly, movement abnormalities, and seizures', 'Encephalomalacia, multilocular', 'Split-Hand/foot malformation 2', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 7', 'Charcot-Marie-Tooth disease, axonal, type 2Y', 'Thauvin-Robinet-Faivre syndrome', 'Myasthenic syndrome, congenital, 21, presynaptic', 'Lissencephaly 1', 'Pituitary hormone deficiency, combined, 2', 'Weismann-Netter syndrome', 'Chilblain lupus 1', 'Keppen-Lubinsky syndrome', 'Episodic ataxia, type 1', 'Epiphyseal dysplasia, multiple, 1', 'Eosinophilic fasciitis', 'Hypokalemic periodic paralysis, type 1', 'Pontocerebellar hypoplasia, type 1B', 'Spinocerebellar ataxia 25', 'Ehlers-danlos syndrome, Hypermobility type', 'Cataract 9, multiple types', 'Neurodevelopmental disorder with brain anomalies, seizures, and scoliosis', 'Prenatal bowing', 'Maleylacetoacetate isomerase deficiency', 'Bardet-Biedl syndrome 15', 'Intellectual developmental disorder, autosomal recessive 72', 'Polydactyly, postaxial, type A5', 'Naxos disease', 'Megalencephalic leukoencephalopathy with subcortical cysts 4, remitting', 'Ankylosing vertebral hyperostosis with tylosisdiffuse idiopathic skeletal hyperostosis, included', 'Tremor, nystagmus, and duodenal ulcer', 'Autoimmune disease', 'Craniosynostosis 7', 'Epileptic encephalopathy, early infantile, 5', 'Multiple exostoses with spastic tetraparesis', 'Patella, familial recurrent dislocation of', 'Mitochondrial complex II deficiency, nuclear type 2', 'Brachyolmia 4 with mild epiphyseal and metaphyseal changes', 'Congenital myopathy 22A, classic', 'MYOSITIS', 'Peripheral neuropathy, myopathy, hoarseness, and hearing loss', 'Meckel syndrome, type 8', 'Spinal muscular atrophy, Jokela type', 'Genitopalatocardiac syndrome', 'Van maldergem syndrome 2', 'Megalencephaly-Polymicrogyria-Polydactyly-Hydrocephalus syndrome 2', 'Ventricular septal defect 2', 'Greig cephalopolysyndactyly syndrome', 'Immunodeficiency 28', 'Charcot-Marie-Tooth disease, type 4J', 'Fascial dystrophy, congenital', 'Peroneal nerve, accessory deep', 'DIASTEMATOMYELIA', 'Cerebral angiopathy, dysphoric', 'Jumping frenchman of maine', 'Modifier, X-linked, for neurofunctional defects', 'Meralgia paraesthetica, familial', 'Discrimination, two-point, reduction in', 'Hypothyroidism, congenital, nongoitrous, 5', 'Immunodeficiency-centromeric instability-facial anomalies syndrome 4', 'Symphalangism of toes', 'Syndactyly, type III', 'Split-Hand/foot malformation 4', 'Charcot-Marie-Tooth disease, type 1B', 'Syndactyly, type IV', 'Ventriculomegaly with defects of the radius and kidney', 'Polydactyly, postaxial, type A2', 'Cleft palate, cardiac defects, and mental retardation', 'Microcephaly 18, primary, autosomal dominant', 'Cardiomyopathy, dilated, 1cc', 'Epilepsy, nocturnal frontal lobe, 3', 'Thumb, distal hyperextensibility of', 'Complement component 8 deficiency, type I', 'Ceroid lipofuscinosis, neuronal, 5', 'Split-Hand/foot malformation 1 with sensorineural hearing loss', 'Holoprosencephaly, semilobar, with craniosynostosis', 'Amelogenesis imperfecta, type IB', 'Amelogenesis imperfecta, hypoplastic/hypomaturation, X-linked 2', 'Tarsal fusion', 'Spinal muscular atrophy, lower extremity-predominant, 2B, autosomal dominant', 'Tremor, hereditary essential, and idiopathic normal pressure hydrocephalus', 'Short-Rib thoracic dysplasia 20 with polydactyly', 'Skraban-Deardorff syndrome', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 1', 'Angioma, tufted', 'Tessadori-van Haaften neurodevelopmental syndrome 4', 'Chromosome 2q35 duplication syndrome', 'Mitochondrial myopathy with diabetes', 'Encephalopathy, progressive, early-onset, with brain atrophy and spasticity', 'Encephalopathy, progressive, early-onset, with brain atrophy and thin corpus callosum', 'Episodic muscle weakness, X-linked', 'Keratolytic winter erythema', 'Peeling skin syndrome, Acral type', 'Erythema of acral regions', 'Cardiomyopathy, dilated, 1AA, with or without LVNC', 'Microcephalic osteodysplastic primordial dwarfism, type II', 'Omphalocele-Cleft palate syndrome, lethal', 'Fontaine progeroid syndrome', 'Spinal muscular atrophy with microcephaly and mental subnormality', 'Intellectual developmental disorder, autosomal recessive 79', 'Joubert syndrome 32', 'Treacher collins syndrome 2', 'Adducted thumbs syndrome', 'Developmental and epileptic encephalopathy 47', 'Arthrogryposis multiplex congenita, Neurogenic type', 'Craniosynostosis, sagittal, with dandy-walker malformation and hydrocephalus', 'Thiamine metabolism dysfunction syndrome 4 (bilateral striatal degenerationand progressive polyneuropathy type)', 'Joubert syndrome 13', 'Amyloidosis, hereditary, transthyretin-related', 'Atrioventricular septal defect 5', 'Hyperparathyroidism 2', 'Velocardiofacial syndrome', 'Nemaline myopathy 5C, autosomal dominant', 'White-Sutton syndrome', 'Global developmental delay, absent or hypoplastic corpus callosum, and dysmorphic facies', 'Mental retardation, autosomal recessive 12', 'Mental retardation, autosomal recessive 56', 'Mental retardation, X-linked 20', 'Mental retardation, autosomal recessive 31', 'Triphalangeal thumb with double phalanges', 'Dandy-Walker malformation with occipital cephalocele, autosomal dominant', 'Cutis laxa, autosomal recessive, type IIC', 'Craniosynostosis with radiohumeral fusions and other skeletal and craniofacial anomalies', 'Intellectual developmental disorder with impaired language and dysmorphic facies', 'Midface hypoplasia, hearing impairment, elliptocytosis, and nephrocalcinosis', 'Hypoparathyroidism-retardation-dysmorphism syndrome', 'Poikiloderma, hereditary sclerosing', 'Spinocerebellar ataxia, autosomal recessive 11', 'Neuronopathy, distal hereditary motor, type VIII', 'Candidiasis, familial, 6, autosomal dominant', 'Radioulnar synostosis', 'Brachydactyly, type A1, B', 'Brachydactyly, type E2', 'Synovial chondromatosis, familial, with dwarfism', 'Schimke X-linked mental retardation syndrome', 'Epiphyseal dysplasia, multiple, 4', 'Microcephaly 2, primary, autosomal recessive, with or without cortical malformations', 'Microphthalmia with limb anomalies', 'Atrioventricular septal defect 4', 'Myopathy, myofibrillar, 2, mfm2', 'Complement factor D deficiency', 'Mental retardation, X-linked 50', 'Mental retardation, autosomal recessive 11', 'Split-Hand and split-foot with hypodontia', 'Ectodermal dysplasia/short stature syndrome', 'Inflammatory bowel disease 25, early onset, autosomal recessive', 'Exostoses with anetodermia and brachydactyly, type E', 'Myopathy, congenital', 'Myasthenic syndrome, congenital, 4C, associated with acetylcholine receptor deficiency', 'Talo-Patello-Scaphoid osteolysis, synovitis, and short fourth metacarpals', 'Avascular necrosis of femoral head, primary, 2', 'Thumbs, stiff, with brachydactyly type A1 and developmental delay', 'Amyotonia congenita', 'Symphalangism, c. s. Lewis type', 'Suleiman-El-Hattab syndrome', 'Pseudovaginal perineoscrotal hypospadias', 'Spastic paraplegia 54, autosomal recessive', 'Hairy elbows', 'Spinocerebellar ataxia 8', 'Crisponi/cold-induced sweating syndrome 1', 'HOMOCARNOSINOSIS', 'Hashimoto thyroiditis', 'Mesomelic dysplasia, Savarirayan type', 'Macular degeneration, early-onset', 'Myopathy, distal, 1', 'Cardioauditory syndrome of sanchez cascos', 'Oliver syndrome', 'Immunodeficiency due to ficolin 3 deficiency', 'Cleft palate, cardiac defect, genital anomalies, and ectrodactyly', 'Mercaptolactate-Cysteine disulfiduria', 'Chorea, benign familial', 'Humeroradial synostosis', 'Myopathy, mitochondrial progressive, with congenital cataract, hearing loss, and developmental delay', 'Mental retardation, autosomal recessive 33', 'Limb defects, distal transverse, with mental retardation and spasticity', 'Tetramelic monodactyly', 'Dyslexia, susceptibility to, 2', 'Immunodeficiency 26 with or without neurologic abnormalities', 'Biemond syndrome II', 'Electroencephalographic peculiarity: 14 and 6 per sec. positive spikephenomenon', 'Electroencephalographic peculiarity: fronto-precentral beta wave groups', 'Ribose 5-phosphate isomerase deficiency', 'Ciliary dyskinesia, primary, 20', 'Sudden cardiac failure, alcohol-induced', 'Retinitis pigmentosa 18', 'Gonadal dysgenesis, dysmorphic facies, retinal dystrophy, and myopathy', 'Intellectual developmental disorder, autosomal recessive 4', 'Lithium transport', 'Dyskeratosis, hereditary benign intraepithelial', 'Complement component 8 deficiency, type II', 'Orofacial cleft 6, susceptibility to', 'Fetal akinesia, respiratory insufficiency, microcephaly, polymicrogyria, and dysmorphic facies', 'Agenesis of cerebral white matter', 'Lopes-Maciel-Rodan syndrome', 'Presenile dementia, Kraepelin type', 'Cleidocranial dysplasia', 'Deafness, sensorineural, with pituitary dwarfism', 'Femoral-facial syndrome', 'DYSTELEPHALANGY', 'Mirror movements 4', 'Charcot-Marie-Tooth disease, axonal, type 2H', 'Triphalangeal thumbs with brachyectrodactyly', 'Dental anomalies and short stature', 'Cardiomyopathy, familial hypertrophic, 21', 'Upington disease', 'Endometriosis, susceptibility to, 1', 'Spondyloepimetaphyseal dysplasia with joint laxity, type 2', 'FG syndrome 5', 'Angioma serpiginosum, autosomal dominant', 'Breast-Ovarian cancer, familial, susceptibility to, 1', 'Immunodeficiency 79', 'Marfan lipodystrophy syndrome', 'Mycobacterial and viral infections, susceptibility to, autosomal recessive', 'Isovaleric acid, inability to smell', 'Anosmia, congenital', 'SKUNK N-BUTYLMERCAPTAN, INABILITY TO SMELL', 'ANOSMIA', 'Hydrocephalus, congenital communicating, 1', 'Mental retardation, autosomal recessive 35', 'Czech dysplasia, Metatarsal type', 'Marshall-Smith syndrome', 'Grant syndrome', 'Alport syndrome 3, autosomal dominant', 'Parkinson disease, late-onset', 'Mesomelic dysplasia, Kantaputra type', 'Exstrophy of bladder', 'Neurodevelopmental disorder with seizures and brain abnormalities', 'Spondyloepimetaphyseal dysplasia, Borochowitz-Cormier-Daire type', 'Galloway-Mowat syndrome 5', 'Delayed sleep phase disorder, susceptibility to', 'Advance sleep phase syndrome, familial, 4', 'Short sleep, familial natural, 2', 'Glaucoma 1, open angle, A', 'ACROPECTOROVERTEBRAL DYSPLASIA, F-FORM OF', 'Rhabdoid tumor predisposition syndrome 1', 'Simpson-Golabi-Behmel syndrome, type 1', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies, type A, 11)', 'Brachydactyly, type D', 'Isolated growth hormone deficiency, type III, with agammaglobulinemia', 'Panic disorder 1', 'Intellectual developmental disorder and hypogonadotropic hypogonadism', 'Acne inversa, familial', 'Immunodeficiency 30', 'Skeletal dysplasia, mild, with joint laxity and advanced bone age', 'Arrhythmogenic right ventricular dysplasia, familial, 6', 'Mitochondrial DNA depletion syndrome 20 (MNGIE type)', 'Fanconi anemia, complementation group O', 'Deafness, congenital heart defects, and posterior embryotoxon', 'Anosmia for isobutyric acid', 'Ectodermal dysplasia 10A, hypohidrotic/hair/nail type, autosomal dominant', 'Chromosome 14q11-q22 deletion syndrome', 'Trichorhinophalangeal syndrome, type I', 'Polydactyly, postaxial, type A9', 'Laurence-Moon syndrome', 'Neurodevelopmental disorder with language delay and seizure', 'Fingerprints, absence of', 'Posterior column ataxia', 'Retinitis pigmentosa 29', 'Facial palsy, familial recurrent peripheral', 'Myoclonic epilepsy, Hartung type', 'Epileptic encephalopathy, early infantile, 38', 'Tibia vara', 'Brachydactyly, type A3', 'Sugarman brachydactyly', 'Spastic paraplegia with neuropathy and poikiloderma', 'KELOIDS', 'Polyglucosan body myopathy 2', 'Athabaskan brainstem dysgenesis syndrome', 'Congenital disorder of glycosylation, type IIi', 'Myopathy, myofibrillar, 8', 'Hunter-Mcalpine craniosynostosis syndrome', 'Hypocalcemia, autosomal dominant 1', 'Parasomnia, Sleepwalking type', 'Neurodevelopmental disorder and structural brain anomalies with or without seizures and spasticity', 'Joubert syndrome 35', 'Sandestig-Stefanova syndrome', 'Pterygium, antecubital', 'Obesity, hyperphagia, and developmental delay', 'Coffin-Siris syndrome 10', 'Mental retardation associated with psoriasis', 'Ciliary dyskinesia, primary, 35', 'Short-Rib thoracic dysplasia 17 with or without polydactyly', 'Epilepsy, idiopathic generalized, susceptibility to, 16', 'Asphyxiating thoracic dystrophy 2', 'Spastic paraplegia 83, autosomal recessive', 'Broad terminal phalanges, familial', 'Lipomatosis, multiple', 'Molar I reinclusion', 'MACROGLOSSIA', 'Osteoarthritis with mild chondrodysplasia', 'Porokeratosis plantaris, palmaris, et disseminata', 'Tumoral calcinosis, normophosphatemic, familial', 'Leukodystrophy, hypomyelinating, 10', 'Candidiasis, familial, 4', 'Birk-Barel mental retardation dysmorphism syndrome', 'Diets-Jongmans syndrome', 'Neurodegeneration due to cerebral folate transport deficiency', 'Trigeminal neuralgia', 'Prosopagnosia, hereditary', 'Hypotonia, infantile, with psychomotor retardation and characteristic facies 1', 'Short stature and advanced bone age, with or without early-onset osteoarthritis and/or osteochondritis dissecans', 'Xp11.22 microduplication syndrome', 'Paroxysmal extreme pain disorder', 'Muscle hypertrophy', 'Intellectual developmental disorder, autosomal recessive 34, with variant lissencephaly', 'Neurodevelopmental disorder with speech impairment and with or without seizures', 'Gigantiform cementoma, familial', 'Hyperoxaluria, primary, type II', 'Cone-Rod dystrophy 6', 'Charcot-Marie-Tooth disease, axonal, type 2L', 'C6 deficiency', 'Hypertrophia musculorum vera', 'Tyrosinemia, type III', 'Spastic paraplegia 72, autosomal recessive', 'Fraser syndrome 2', 'Nemaline myopathy 2, autosomal recessive', 'MICROTIA-ANOTIA', 'Neurodevelopmental disorder with neuromuscular and skeletal abnormalities', 'Epilepsy, early-onset, with or without developmental delay', 'Coxoauricular syndrome', 'Cardiomyopathy, dilated, 1JJ', 'Rhabdomyosarcoma 1', 'Spondyloepiphyseal dysplasia, Stanescu type', 'Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type B, 2', 'Mental retardation, autosomal recessive 28', 'Amelogenesis imperfecta, type IK', 'Wahab syndrome', 'Nemaline myopathy 10', 'Complement component c1r deficiency', 'Hypertrichosis, congenital anterior cervical, with peripheral sensory', 'Hand osteoarthritis', 'Normokalemic periodic paralysis', 'Central centrifugal cicatricial alopecia', 'Fibrochondrogenesis 1', 'Intellectual developmental disorder with dysmorphic facies, speech delay, and T-cell abnormalities', 'Persistent mullerian duct syndrome, types I and II', 'Emery-Dreifuss muscular dystrophy 7, autosomal dominant', 'Pituitary adenoma 2, GH-secreting', 'Angelman syndrome', 'Peroneus tertius muscle, absence of', 'Schizophrenia 3', 'Rhizomelic dysplasia, Patterson-Lowry type', 'Epilepsy, benign occipital', 'Gastrocutaneous syndrome', 'Rhizomelic dysplasia, Ain-Naz type', 'Leishmaniasis, tegumentary', 'Multiple system atrophy 1, susceptibility to', 'Acrorenal syndrome', 'Marfan syndrome', 'Polydactyly, preaxial I', 'Seckel syndrome 8', 'Methylmalonic acidemia and homocysteinemia, Cblx type', 'Charcot-Marie-Tooth disease, type 4B1', 'Cervical vertebrae, agenesis of', 'Neurodevelopmental disorder with hypotonia, facial dysmorphism, and brain abnormalities', 'Pontocerebellar hypoplasia, type 11', 'Spinocerebellar ataxia, X-linked 2', '3MC syndrome 3', 'Paragangliomas 3', 'Renal tubular dysgenesis', 'Cortical dysplasia, complex, with other brain malformations 12', 'Neurodevelopmental disorder with or without variable brain abnormalities', 'HYPERREFLEXIA', 'Hemifacial spasm, familial', 'Spinocerebellar ataxia 37', 'Lowry-Maclean syndrome', 'Acromesomelic dysplasia 4', 'Rubinstein-Taybi syndrome 1', 'Developmental delay, behavioral abnormalities, and neuropsychiatric disorders', 'Epileptic encephalopathy, early infantile, 88', 'Myoclonic epilepsy, juvenile, 2', 'Mental retardation, autosomal recessive 23', 'Psoriasis 15, pustular, susceptibility to', 'Charcot-Marie-Tooth disease, demyelinating, type 1A', 'Epiphyseal dysplasia, Baumann type', 'Pontocerebellar hypoplasia, type 5', 'Keratosis palmaris et plantaris with clinodactyly', 'Spastic paraplegia with associated extrapyramidal signs', 'Neurodegeneration with brain iron accumulation 1', 'Scapuloperoneal syndrome, neurogenic, Kaeser type', 'Holt-Oram syndrome', 'Encephalitis, acute, infection (viral)-induced, susceptibility to, 11', 'Arthrogryposis-Like hand anomaly and sensorineural deafness', 'Myopathy, congenital, with respiratory insufficiency and bone fractures', 'Spondylometaphyseal dysplasia, Algerian type', 'Dyslexia, susceptibility to, 1', 'Hyperaldosteronism, familial, type IV', 'Synpolydactyly 2', 'Achondroplasia', 'Hypogonadism with low-grade mental deficiency and microcephaly', 'Cerebral creatine deficiency syndrome 2', 'Metaphyseal anadysplasia 2', 'Intellectual developmental disorder, autosomal recessive 71', 'Ataxia with fasciculations', 'Optic atrophy 8', 'Spondyloepimetaphyseal dysplasia, Missouri type', 'Laron syndrome', 'Epilepsy, pyridoxine-dependent', 'Ossified ear cartilages', 'Unique green phenomenon', 'Ocular cicatricial pemphigoid', 'Adamantinoma of long bones', 'Cancer, familial, with in vitro radioresistance', 'Labia minora, incomplete adhesion of', 'Ear malformation', 'Ear folding', 'Myelinated optic nerve fibers', 'Exchondrosis of pinna, posterior', 'Ear antitragus, tag at base of', 'Branchial cleft anomaliesbranchial cysts, included', 'Parotidomegaly, hereditary bilateral', 'Fibromatosis, gingival, 5', 'Dermatosis papulosa nigra', 'Acromial dimples', 'Papillomatosis, florid, of nipple', 'Insect stings, hypersensitivity to', 'Lichen planus, familial', 'Comedones, familial dyskeratotic', 'Dermal ridges, patternless', 'Callosities, hereditary painful', 'Pseudoatrophoderma colli', 'Syringomas, multiple', 'Trichilemmal cyst 1', 'Lacrimoauriculodentodigital syndrome-3', 'Nasal groove, familial transverse', 'Orofacial cleft 3', 'Nasal alar collapse, bilateral', 'Glutamine deficiency, congenital', 'Lip, median nodule of upper', 'Hirschsprung disease, susceptibility to, 3', 'Epilepsy, benign neonatal, 2', 'Ringed hair', 'Toe, rotated fifth', 'Trichodiscomas, familial multiple', 'Tongue, pigmented fungiform papillae of', 'BRADYOPSIA', 'Myopia, infantile severe', 'Myopia 15', 'Ptosis, hereditary congenital 1', 'Deafness, autosomal recessive 96', 'Deafness, autosomal recessive 55', 'Deafness, autosomal recessive 47', 'Deafness, autosomal recessive 6', 'Deafness, autosomal dominant 24', 'Deafness, autosomal dominant 15', 'Deafness, autosomal dominant 54', 'Deafness, autosomal recessive 33', 'Tune deafness', 'Deafness, autosomal recessive 107', 'Deafness, autosomal dominant 52', 'Deafness, autosomal recessive 106', 'Dermatitis herpetiformis, familial', 'Polyhydramnios, chronic idiopathic', 'Candidiasis, familial, 3', 'Melanoma, cutaneous malignant, susceptibility to, 9', 'Focal facial dermal dysplasia 4', 'Spinal muscular atrophy, Facioscapulohumeral type', 'Butyrylcholinesterase deficiency', 'Milia, multiple eruptive', 'Elastosis perforans serpiginosa', 'Paramolar tubercle of bolk', 'Teeth, odd shapes oflobodontia, included', 'Phlebectasia of lips', 'Teeth, fused', 'Incisors, fused mandibular', 'Cataract, autosomal recessive congenital 4', 'Ectopia lentis', 'Cataract 35', 'Cataract, crystalline coralliform', 'Dermal ridges, nelson syndrome', 'Deafness, autosomal dominant 18', 'Deafness, autosomal recessive 91', 'Deafness, autosomal dominant 2B', 'Deafness, unilateral', 'Deafness, aminoglycoside-induced', 'Deafness, autosomal dominant nonsyndromic sensorineural 7', 'Ear without helix', 'Hyperpigmentation of fuldauer and kuijpers', 'Raindrop hypopigmentation', 'Hyperpigmentation, familial progressive, 1', 'Nasal hyperpigmentation, familial transverse', 'Acroleukopathy, symmetric', 'Hydatidiform mole, recurrent, 2', 'Myopia 6', 'Myopia 19, autosomal dominant', 'Myopia 26, X-linked, female-limited', 'Nanophthalmos 2', 'Hyperopia, high', 'Hyperhidrosis, gustatory', 'Deafness, autosomal recessive 22', 'Deafness, autosomal dominant 53', 'Deafness, autosomal recessive 97', 'Deafness, autosomal dominant 25', 'Deafness, neural, congenital moderate', 'Deafness, autosomal recessive 16', 'Deafness, autosomal dominant 40', 'Deafness, autosomal recessive 61', 'Deafness, autosomal dominant 48', 'Deafness, autosomal dominant 30', 'Deafness, autosomal dominant 76', 'Deafness, autosomal recessive 31', 'Deafness, autosomal dominant 47', 'Deafness, autosomal recessive 26', 'Deafness, autosomal dominant nonsyndromic sensorineural 10', 'Deafness, autosomal recessive 116', 'Deafness, autosomal recessive 53', 'Deafness, autosomal dominant 37', 'Deafness, autosomal recessive 113', 'Deafness, neurosensory, autosomal recessive 5', 'DEAFNESS, Y-LINKED 2', 'Deafness, autosomal dominant nonsyndromic sensorineural 12', 'Deafness, autosomal recessive 21', 'Deafness, autosomal dominant 75', 'Deafness, autosomal recessive 27', 'Deafness, autosomal recessive 14', 'Deafness, autosomal dominant 68', 'Deafness, autosomal dominant 44', 'Deafness, autosomal recessive 51', 'Deafness, autosomal recessive 17', 'Deafness, autosomal recessive 99', 'Deafness, autosomal recessive 114', 'Deafness, autosomal dominant 69', 'Deafness, autosomal dominant nonsyndromic sensorineural 3', 'Deafness, autosomal recessive 115', 'Deafness, autosomal recessive 59', 'Deafness, autosomal dominant 27', 'Deafness, autosomal dominant nonsyndromic sensorineural 13', 'Deafness, neurosensory, autosomal recessive 18', 'Deafness, autosomal recessive 100', 'Cataract, zonular pulverulent 3', 'Dystransthyretinemic euthyroidal hyperthyroxinemia', 'Anonychia congenita', 'Koilonychia, hereditary', 'Porokeratosis 6, disseminated superficial Actinic type', 'Acanthosis nigricans', 'Papillomatosis, familial cutaneous', 'Nipples inverted', 'Hypertrichosis universalis congenita, Ambras type', 'Iris pigment epithelium anomalies', 'Dosage-Sensitive sex reversal', 'Darwinian point of pinna', 'Ear pits, posterior helical', 'Achoo syndrome', 'Retinitis pigmentosa, late-adult onset', 'Retinitis pigmentosa 67', 'Retinitis pigmentosa 55', 'Earring holes, natural', 'Rheumatoid nodulosis', 'Steatocystoma multiplex', 'Squamous cell carcinoma, head and neck', 'Nanophthalmos 1', 'Deafness, autosomal dominant 31', 'Deafness, autosomal recessive 77', 'Deafness, autosomal dominant 3B', 'Malocclusion due to protuberant upper front teeth', 'Hematuria, benign familial, 2', 'Corneal dystrophy, band-shaped', 'Myofibromatosis, infantile 2', 'Hypersensitivity pneumonitis, familial', 'Cataract 45', 'Cataract, crystalline aculeiform', 'Cataract, congenital, cerulean type, 5', 'Cataract 13 with adult i phenotype', 'Ureter, bifid or double', 'Ichthyosis, congenital, autosomal recessive 12', 'Cleft palate-lateral synechia syndrome', 'Cataract, age-related nuclear', 'Cataract, nuclear total', 'Nonarteritic anterior ischemic optic neuropathy, susceptibility to', 'Nail disorder, nonsyndromic congenital, 8', 'Dowling-Degos disease', 'Cataract 43', 'Microtia - eye coloboma - imperforation of the nasolacrimal duct', 'Macular dystrophy, fenestrated Sheen type', 'Macular dystrophy, X-linked', 'Cataract, anterior polar, 1', 'Macular degeneration, age-related, 2', 'Ectopia pupillae', 'Anodontia of permanent dentition', 'Nevi flammei, familial multiple', 'Uvula, bifid', 'Leber congenital amaurosis 17', 'Deafness, autosomal dominant nonsyndromic sensorineural 4', 'Deafness, autosomal dominant 79', 'Deafness, autosomal dominant nonsyndromic sensorineural 5', 'Breast-ovarian cancer, familial, susceptibility to, 5', 'Teeth present at birth', 'Pulmonary bullae causing pneumothorax', 'Enuresis, nocturnal, 1', 'Enuresis, nocturnal, 2', 'Deafness, congenital neurosensory, autosomal recessive 40', 'Deafness, autosomal recessive 71', 'Deafness, autosomal recessive 45', 'Deafness, autosomal recessive 85', 'Deafness, congenital neurosensory, autosomal recessive 38', 'Deafness, congenital neurosensory, autosomal recessive 39', 'Deafness, autosomal recessive 62', 'Deafness, autosomal recessive 44', 'Deafness, autosomal recessive 83', 'Deleted in azoospermia', 'Hyperparathyroidism, primary, caused by water clear cell hyperplasia', 'Orofacial cleft 14', 'Hypotrichosis 2', 'Hypotrichosis 15', 'Glaucoma 3, primary infantile, B', 'Night blindness, congenital stationary, autosomal dominant 2', 'Night blindness, congenital stationary, autosomal dominant 3', 'Deafness, neurosensory, autosomal recessive 46', 'Preimplantation embryonic lethality 1', 'Small cell cancer of the lung', 'Mediosternal depigmentation line', 'Ichthyosis, Bullous type', 'Parotid salivary glands, polycystic dysgenetic disease of', 'Alopecia, familial focal', 'Cleft soft palate', 'Coloboma of macula', 'Melanoma, cutaneous malignant, susceptibility to, 8', 'Melanoma, cutaneous malignant, susceptibility to, 2', 'Lentiginosis, inherited patterned', 'Hairy palms and soles', 'Otosclerosis 10', 'Aplasia cutis congenita, nonsyndromic', 'Vesicoureteral reflux, X-linked', 'Melanoma, uveal', 'Melanoma, malignant familial intraocular', 'Nevus flammeus of nape of neck', 'Incisors, rotation of upper central', 'Testicular germ cell tumor 1', 'Ureter, cancer of', 'Hyperpigmentation of eyelids', 'Pruritic urticarial papules and plaques of pregnancy', 'DISTICHIASIS', 'Striae distensae, familial', 'TRISTICHIASIS', 'Nystagmus 7, congenital, autosomal dominant', 'Deafness, autosomal recessive 88', 'Oncocytoma', 'Keratoconus 8', 'Keratoconus 5', 'Keratoconus 6', 'Keratoconus 7', 'Dowling-Degos disease 3', 'Hypospadias 3, autosomal', 'Preauricular fistulae, congenital', 'Cafe-Au-Lait spots, multiple', 'Canine teeth, absence of upper permanent', 'Thyroid cancer, nonmedullary, 3', 'Thyroid carcinoma, familial medullary', 'Thyroid cancer, nonmedullary, 5', 'Nasopharyngeal carcinoma, susceptibility to, 3', 'Central incisors, absence of', 'Wilms tumor 4', 'Wilms tumor 3', 'Multiple fibroadenomas of the breast', 'Hyperhidrosis palmaris et plantaris', 'TAURODONTISM', 'Palmoplantar keratoderma, nonepidermolytic, focal 2', 'Keratoderma, palmoplantar, punctate type IB', 'Prostate cancer, hereditary, X-linked 1', 'Incisors, lower central, absence of', 'Teratoma, ovarian', 'Ovarian fibromata', 'Otitis media, susceptibility to', 'Preeclampsia/eclampsia 5', 'Pregnancy loss, recurrent, susceptibility to, 1', 'Pregnancy loss, recurrent, susceptibility to, 2', 'Pregnancy loss, recurrent, susceptibility to, 3', 'Hemifacial hyperplasia', 'Immunodeficiency 29', 'Polydactyly, preaxial IV', 'Li-Ghorgani-Weisz-Hubshman syndrome', 'Trochlea of the humerus, aplasia of', 'Keratitis, hereditary', 'Leukodystrophy, hypomyelinating, 23, with ataxia, deafness, liver dysfunction, and dilated cardiomyopathy', 'Split-Hand/foot malformation 6', 'Ceroid lipofuscinosis, neuronal, 4B, autosomal dominant', 'Chromosome 6q25-q25 deletion syndrome', 'Megaepiphyseal dwarfism', 'Brachydactyly, type E', 'Epiphyseal dysplasia, multiple, 6', 'Immunodeficiency 39', 'Neuropathy, hereditary sensory, type IF', 'Ventriculomegaly with cystic kidney disease', 'Dysphasia, familial developmental', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 9', 'Hirschsprung disease, cardiac defects, and autonomic dysfunction', 'Filippi syndrome', 'Muscular dystrophy, adult-onset, with leukoencephalopathy', 'Coloboma-Obesity-Hypogenitalism-Mental retardation syndrome', 'Growth hormone deficiency, isolated, type IV', 'Polydactyly, postaxial, with progressive myopia', 'Oral sensibility, disturbance of', 'Protrusio acetabuli', 'Orofacial cleft 13', 'Paine syndrome', 'Hypoplastic left heart syndrome 2', 'Epilepsy, familial focal, with variable foci 2', 'Tetramelic deficiencies, ectodermal dysplasia, deformed ears, andother abnormalities', 'Megabladder, congenital', 'Tardive dyskinesia', 'Retinal degeneration and epilepsy', 'Deafness, autosomal dominant 9', 'Hypergonadotropic hypogonadism', 'Mental retardation, microcephaly, epilepsy, and coarse face', 'Mental retardation, X-linked, with isolated growth hormone deficiency', 'Microcephaly 8, primary, autosomal recessive', 'Peyronie disease', 'Vesicoureteral reflux 8', 'GAPO syndrome', 'HYPOGLOSSIA-HYPODACTYLIA', 'Adrenocortical carcinoma, pediatric', 'Chromosome 1q21.1 duplication syndrome', 'Ataxia, deafness, and cardiomyopathy', 'Ulnar hypoplasia', 'Scalp defects and postaxial polydactyly', 'Precocious puberty, central', 'Leber optic atrophy', 'Gerstmann-Straussler disease', 'Dentinogenesis imperfecta 1', 'Leukodystrophy, hypomyelinating, 9', 'Ectodermal dysplasia, sensorineural hearing loss, and distinctive facial features', 'Tay-Sachs disease', 'Mental retardation, X-linked 2', 'Migraine, with or without aura, susceptibility to, 13', 'Hydrocephalus, congenital, 5, susceptibility to', 'Ohdo syndrome, Say-Barber-Biesecker-Young-Simpson variant', 'Hemophilia A', 'Synostosis, carpal, with dysplastic elbow joints and brachydactyly', 'Spinocerebellar ataxia 44', 'Tremor, hereditary essential, 4', 'Laryngeal adductor paralysis', 'Epilepsy, benign neonatal, 3', 'Geniospasm 1', 'Polyposis syndrome, hereditary mixed, 2', 'Lentiginosis, centrofacial neurodysraphic', 'Intellectual developmental disorder, autosomal dominant 66', 'Joint laxity, short stature, and myopia', 'Nephrotic syndrome, type 17', 'Hypouricemia, renal, 1', 'Alopecia-Mental retardation syndrome 2', 'Cutis verticis gyrata and mental deficiency', 'Ichthyosis-Mental retardation syndrome with large keratohyalin granules in the skin', 'Episodic ataxia, type 6', 'C7 deficiency', 'Mesomelic limb shortening and bowing', 'Spondylometaphyseal dysplasia with corneal dystrophy', 'Deafness, autosomal dominant 78', 'Frontotemporal dementia', 'Lethal short-limb skeletal dysplasia, al Gazali type', 'Anencephaly', 'Epilepsy, juvenile myoclonic, susceptibility to, 9', 'Colorectal cancer, hereditary nonpolyposis, type 4', 'Nephrolithiasis, calcium oxalate', 'Sonoda syndrome', 'Parietal foramina with cleidocranial dysplasia', 'Advanced sleep phase syndrome, familial, 3', 'Vitreoretinopathy with phalangeal epiphyseal dysplasia', 'Dystonia 31', 'Attention deficit-hyperactivity disorder', 'Surfactant metabolism dysfunction, pulmonary, 3', 'Hydrocephalus, nonsyndromic, autosomal recessive 1', 'Kapur-Toriello syndrome', 'Lissencephaly, X-linked, 2', '46XY sex reversal 5', 'Tibia, hypoplasia or aplasia of, with polydactyly', 'Aplasia of extensor muscles of fingers, unilateral, with generalizedpolyneuropathy', 'Jaundice, familial obstructive, of infancy', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 5', 'Amelogenesis imperfecta, hypomaturation type, iia4', 'Amyloidosis, Finnish type', 'Li-Fraumeni syndrome 2', 'Alpha-aminoadipic and alpha-ketoadipic aciduria', 'Torsion dystonia with onset in infancy', 'Leukoencephalopathy with dystonia and motor neuropathy', 'Stuttering, familial persistent, 1', 'White forelock with malformations', 'Trichorhinophalangeal syndrome, type II', 'Amelogenesis imperfecta, hypomaturation type, iia3', 'Exercise intolerance, riboflavin-responsive', 'Thanatophoric dysplasia, type I', 'Major affective disorder 1', 'Intellectual developmental disorder, autosomal dominant 3', 'Femur, unilateral bifid, with monodactylous ectrodactyly', 'Hyperbilirubinemia, Rotor type, digenic', 'Fundus dystrophy, pseudoinflammatory, recessive form', 'Nicolaides-Baraitser syndrome', 'Ehlers-Danlos syndrome, periodontal type, 1', 'Adams-Oliver syndrome 4', 'Muscular dystrophy, Barnes type', 'Mental retardation, autosomal recessive 10', 'Aplastic anemia', 'Leukemia, chronic myeloid', 'AICA-ribosiduria due to ATIC deficiency', 'Neurodevelopmental disorder with absent language and variable seizures', 'Retinal dystrophy with leukodystrophy', 'Campomelic dysplasia', 'Adie pupil', 'Facial spasm', 'Nephrotic syndrome, type 5, with or without ocular abnormalities', 'Chromosome 18p deletion syndrome', 'Nephrotic syndrome, type 19', 'L-2-hydroxyglutaric aciduria', 'Microcephaly 24, primary, autosomal recessive', 'Photoparoxysmal response 1', 'Split-Foot deformity with mandibulofacial dysostosis', 'Spastic paraplegia 44, autosomal recessive', 'Muscular dystrophy, hemizygous Lethal type', 'Pseudoachondroplasia', 'Epidermolysis bullosa simplex 2E, with migratory circinate erythema', 'Dysautonomia-Like disorder', 'Hemihyperplasia, isolated', 'Mesangial sclerosis, diffuse renal, with ocular abnormalities', 'Oculoectodermal syndrome', 'Muscular dystrophy, pseudohypertrophic, with internalized capillaries', 'Pituitary adenoma, growth hormone-secreting, 1', 'Abducens palsy', 'Meckel syndrome 11', 'Acne inversa, familial, 3', 'Cortical dysplasia, complex, with other brain malformations 3', 'Phocomelia-Ectrodactyly, ear malformation, deafness, and sinus arrhythmia', 'Kifafa seizure disorder', 'Arms, malformation of', 'Intellectual developmental disorder with nasal speech, dysmorphic facies, and variable skeletal anomalies', 'Apnea, central sleep', 'Thiamine metabolism dysfunction syndrome 2 (biotin- or thiamine-responsive encephalopathy type 2)', 'Hyper-IgE recurrent infection syndrome 4A, autosomal dominant', 'Brachydactyly, type A6', 'Dystonia, focal, task-specific', 'Myoclonus, familial, 2', 'Chromosome 17q23.1-q23.2 duplication syndrome', 'Musk, inability to smell', 'Craniosynostosis with fibular aplasia', 'Coffin-Siris syndrome 5', 'Epiphyseal dysplasia of femoral head, myopia, and deafness', 'MUSCULAR DYSTROPHY-DYSTROGLYCANOPATHY (CONGENITAL WITH MENTAL RETARDATION), TYPE B, 6', 'Melanoma-Astrocytoma syndrome', 'Hirschsprung disease with polydactyly, renal agenesis, and deafness', 'Epilepsy, childhood absence, susceptibility to, 5', 'Pontocerebellar hypoplasia, type 2B', 'Split-Hand/foot malformation 1', 'Talonavicular coalition', 'Thumb deformity and alopecia', 'Ehlers-Danlos syndrome, arthrochalasia type, 2', 'Giant axonal neuropathy 1, autosomal recessive', 'Nievergelt syndrome', 'Muscular dystrophy, limb-girdle, autosomal recessive 27', 'Episodic pain syndrome, familial, 2', 'Dementia/parkinsonism with non-alzheimer amyloid plaques', 'Spinal muscular atrophy, type IV', 'Digital arthropathy-brachydactyly, familial', 'Cutis laxa, autosomal recessive, type IIE', 'Microcephaly, congenital heart disease, unilateral renal agenesis,and hyposegmented lungs', 'TORTICOLLIS', 'Megalencephalic leukoencephalopathy with subcortical cysts 3', 'Wiedemann-Rautenstrauch syndrome', 'Cystic disease of lung', 'Patella aplasia-hypoplasia', 'Syndactyly-Polydactyly-Earlobe syndrome', 'Spastic paraplegia 85, autosomal recessive', 'Intellectual developmental disorder, autosomal recessive 7', 'Corneal fleck dystrophy', 'Vocal cord paralysis and ptosis', 'Pleuropulmonary blastoma', 'Metaphyseal dysostosis, mental retardation, and conductive deafness', 'Choroidal dystrophy, central areolar 2', 'Alzheimer disease 10', 'Dystonia 15, myoclonic', 'Maxillofacial dysostosis', 'Waardenburg syndrome, type 3', 'Ectodermal dysplasia and neurosensory deafness', 'Cranial nerves, congenital paresis of', 'Glycine encephalopathy 2', 'Vitreoretinopathy, neovascular inflammatory', 'Epiphyseal dysplasia, multiple, with severe proximal femoral dysplasia', 'Epilepsy, familial adult myoclonic, 6', 'Wiedemann-Steiner syndrome', 'Epilepsy, familial focal, with variable foci 3', 'Amyotrophic lateral sclerosis 3', 'Myasthenic syndrome, congenital, 3A, slow-channel', 'Gastric cancer, hereditary diffuse', 'Intellectual developmental disorder with autism and macrocephaly', 'Lessel-Kubisch syndrome', 'Crome syndrome', 'Epilepsy, photogenic, with spastic diplegia and mental retardation', 'Hypomagnesemia, seizures, and mental retardation 2', 'Retinitis pigmentosa 88', 'Retinitis pigmentosa 57', 'Lissencephaly 9 with complex brainstem malformation', 'Leukoencephalopathy, developmental delay, and episodic neurologic regression syndrome', 'ANONYCHIA-ECTRODACTYLY', 'Triphalangeal thumb-polysyndactyly syndrome', 'Lipoma of the conjunctiva', 'Retinitis pigmentosa 71', 'Neuropathy, hereditary sensory and autonomic, type IIB', 'Ciliary dyskinesia, primary, 14', 'Myotonia congenita, autosomal recessive', 'Epilepsy, familial temporal lobe, 7', 'Testicular anomalies with or without congenital heart disease', 'Mental retardation, X-linked, syndromic 12', 'Osteochondrodysplasia, brachydactyly, and overlapping malformed digits', 'Congenital heart defects and ectodermal dysplasia', 'Glomerulopathy with fibronectin deposits 2', 'Mental retardation, X-linked 95', 'Amelogenesis imperfecta, hypomaturation type, IIA6', 'Amelogenesis imperfecta, type IIIB', 'Neuropathy, hereditary sensory and autonomic, type IX, with developmental delay', 'Intellectual developmental disorder, autosomal recessive 59', 'Brachydactyly-Ectrodactyly with fibular aplasia or hypoplasia', 'Epilepsy, idiopathic generalized, susceptibility to, 3', 'Al-Raqad syndrome', 'Megalencephalic leukoencephalopathy with subcortical cysts 2A', 'Mental retardation, x-linked syndromic, Raymond type', 'Pelvic lipomatosis with crossed renal ectopia', 'Charcot-Marie-Tooth disease, demyelinating, type 4F', 'Neuropathy, hereditary motor and sensory, with deafness, mental retardation,and absent sensory large myelinated fibers', 'Rombo syndrome', 'Intellectual developmental disorder, autosomal recessive 16', 'Adactylia, unilateral', 'Retinitis pigmentosa 37', 'Epidermodysplasia verruciformis 2', 'C1q deficiency', 'Glioma susceptibility 2', 'Microcephaly 30, primary, autosomal recessive', 'Brain small vessel disease 3', 'Spondylometaphyseal dysplasia, X-linked', 'Rett syndrome, congenital variant', 'Alzheimer disease 2', 'Colorectal cancer, susceptibility to, 12', 'Chromosome 2q37 deletion syndrome', 'Hypomelia with mullerian duct anomalies', 'Amastia, bilateral, with ureteral triplication and dysmorphism', 'Muscular dystrophy, congenital, with rapid progression', 'Neurodevelopmental disorder with central hypotonia and dysmorphic facies', 'Saul-Wilson syndrome', 'Huntington disease-like 3', 'Angiolipomatosis, familial', 'Intellectual developmental disorder, autosomal dominant 72', 'Megalencephaly with dysmyelination', 'Pontocerebellar hypoplasia, type 2C', 'Spastic diplegia, Infantile type', 'Woodhouse-Sakati syndrome', 'Hypochondroplasia', 'Ruvalcaba syndrome', 'Myopia 1, X-linked', 'Neurodevelopmental disorder with speech impairment and dysmorphic facies', 'Epilepsy, reading', 'Townes-Brocks syndrome 2', 'Cleft palate, psychomotor retardation, and distinctive facial features', 'Combined oxidative phosphorylation deficiency 6', 'Pachygyria with mental retardation, seizures, and arachnoid cysts', 'Intellectual developmental disorder, autosomal dominant 52', 'Polycystic kidney disease 7', 'Symphalangism, proximal, 1B', 'Intellectual developmental disorder with speech delay and axonal peripheral neuropathy', 'Attention deficit-hyperactivity disorder, susceptibility to, 7', 'Pierre Robin syndrome and oligodactyly', 'Myoclonic epilepsy, juvenile, susceptibility to, 4', 'Mental retardation, autosomal recessive 29', 'Dystonia 23', 'Advanced sleep phase syndrome, familial, 1', 'Coffin-Siris syndrome 3', 'Leber congenital amaurosis 10', 'Ceroid lipofuscinosis, neuronal, 8, northern epilepsy variant', 'Microphthalmia, isolated 4', 'Hyperekplexia 2', 'Spondyloepiphyseal dysplasia with atlantoaxial instability', 'Neuronopathy, distal hereditary motor, type I', 'Ataxia-Deafness-Retardation syndrome', 'Autism, susceptibility to, X-linked 2', 'Intellectual developmental disorder, autosomal recessive 19', 'Immunodeficiency-Centromeric instability-facial anomalies syndrome 3', 'Achondroplasia, severe, with developmental delay and acanthosis nigricans', 'Autosomal recessive cerebral arteriopathy with subcortical infarcts and leukoencephalopathy (CARASIL)', 'Epilepsy with grand mal seizures on awakening', 'Lethal congenital contracture syndrome 7', 'Charcot-Marie-Tooth disease, demyelinating, type 1C', 'Epilepsy, familial adult myoclonic, 7', 'Muscular atrophy, malignant neurogenic', 'Basilar impression, primary', 'Spastic paresis, glaucoma, and mental retardation', 'Charcot-Marie-Tooth disease, dominant intermediate A', 'Aprosencephaly and cerebellar dysgenesis', 'Pemphigus vulgaris, familial', 'Mental retardation, obesity, mandibular prognathism, and eye and skinanomalies', 'Spondylometaphyseal dysplasia with cone-rod dystrophy', 'CAMPTOBRACHYDACTYLY', 'Oculocerebral syndrome with hypopigmentation', 'Bardet-Biedl syndrome 4', 'Myoclonus, cerebellar ataxia, and deafness', 'Arthrogryposis, distal, type 1B', 'Klippel-Feil syndrome 3, autosomal dominant', 'Fetal akinesia deformation sequence 2', 'Hip dysplasia, Beukes type', 'Meningioma, familial, susceptibility to', 'Ciliary dyskinesia due to transposition of ciliary microtubules', 'Ventriculomegaly and arthrogryposis', 'Langer mesomelic dysplasia', 'Split lower lip', 'Breast cancer', 'Pneumothorax, primary spontaneous', 'Intellectual developmental disorder, X-linked 88', 'Chromosome 4q32.1-q32.2 triplication syndrome', 'Multiple tumor-associated chromosome region 1', 'Wilms tumor 1', 'Wilms tumor 5', 'Prostate cancer', 'Charcot-Marie-Tooth disease, recessive intermediate D', 'Endometrial carcinoma, somatic', 'Prognathism, mandibular', 'Tarsal-Carpal coalition syndrome', 'Metaphyseal chondrodysplasia, Spahr type', 'Incisors, shovel-shaped', 'Craniosynostosis, Adelaide type', 'Microcephaly 28, primary, autosomal recessive', 'Peroxisome biogenesis disorder 2B', 'Colorectal cancer, susceptibility to, 10', 'Reticulum cell sarcoma', 'Dermoids of cornea', 'Cowden syndrome 7', 'Genitourinary tract anomalies', 'LENTIGINES', 'Hamartoma, precalcaneal congenital fibrolipomatous', 'Kyrle disease', 'Atrophia maculosa varioliformis cutis, familial', 'Parkinson disease 13', 'Ptosis, strabismus, and ectopic pupils', 'Glaucoma 1, primary open angle, C', 'Fibrosis of extraocular muscles, congenital, with synergistic divergence', 'Peeling skin syndrome 3', 'Lip, hamartomatous', 'Nephrotic syndrome, type 12', 'Preimplantation embryonic lethality 2', 'Cryptotia, familial', 'Pelvis-Shoulder dysplasia', 'Question mark ears, isolated', 'Grouped pigmentation of the macula', 'Cone-Rod dystrophy 9', 'Marcus gunn phenomenon', 'Cornea guttata with anterior polar cataracts', 'Night blindness, congenital stationary, type 1I', 'Glaucoma, primary open angle', 'Epidermolysis bullosa with deficiency of galactosylhydroxylysyl glucosyltransferase', 'Deafness, autosomal dominant 58', 'Deafness, autosomal recessive 1B', 'Erythrokeratodermia variabilis et progressiva 2', 'Deafness, autosomal recessive 20', 'DEAFNESS, Y-LINKED 1', 'Deafness, autosomal recessive 57', 'Deafness, autosomal dominant 67', 'Deafness, autosomal dominant 43', 'Deafness, autosomal recessive 13', 'Deafness, autosomal dominant 16', 'Deafness, autosomal recessive 25', 'Otosclerosis 8', 'Deafness, autosomal recessive 117', 'Keratoderma, palmoplantar, with deafness', 'Deafness, autosomal recessive 94', 'Deafness, autosomal recessive 86', 'Deafness, autosomal recessive 65', 'Deafness, autosomal dominant 88', 'Deafness, autosomal recessive 93', 'Deafness, autosomal recessive 48', 'Nystagmus, congenital motor, autosomal recessive', 'Glaucoma 1, open angle, M', 'Atrichia with papular lesions', 'Oguchi disease-2', 'Oguchi disease 1', 'Vitiligo-associated multiple autoimmune disease susceptibility 6', 'Myopia 22, autosomal dominant', 'Megalencephalic leukoencephalopathy with subcortical cysts 1', 'Episodic pain syndrome, familial, 1', 'Corneal dystrophy, posterior polymorphous, 2', 'Corneal dystrophy, posterior polymorphous, 4', 'Alopecia, congenital', 'Cataract and congenital ichthyosis', 'Deafness with anhidrotic ectodermal dysplasia', 'Trichomegaly', 'Adrenocortical unresponsiveness to acth with postreceptor defect', 'Deafness, autosomal recessive 30', 'Corneal dystrophy, Central type', 'Corneal dystrophy, crystalline, of schnyder', 'Hydatidiform mole, recurrent, 4', 'Myopia-3', 'Deafness, autosomal dominant nonsyndromic sensorineural 17', 'Deafness, autosomal recessive 102', 'Myopia 27', 'Reese retinal dysplasia', 'Retinal dysplasia, primary', 'Coloboma of optic nerveoptic nerve head pits, bilateral congenital, included', 'Leber optic atrophy, susceptibility to', 'Cylindromatosis, familial', 'Mental retardation, X-linked 73', 'Myopia 21, autosomal dominant', 'Myopia 24, autosomal dominant', 'Deiodinase, iodothyronine, type I', 'Thyroid hormone plasma membrane transport defect', 'Microphthalmia, isolated 7', 'Deafness, autosomal recessive 67', 'Cataract, anterior polar, 2', 'Thyroid dyshormonogenesis 6', 'Brown syndrome', 'Deafness, autosomal recessive 36, with or without vestibular involvement', 'Deafness, autosomal dominant 22', 'Deafness, autosomal recessive 15', 'Oocyte maturation defect 12', 'Porokeratosis 7, multiple types', 'Ossicular malformations, familial', 'Emphysema, congenital lobar', 'Granulosis rubra nasi', 'Deafness, autosomal dominant 59', 'Deafness, autosomal recessive 112', 'Deafness, autosomal recessive 98', 'Blistering, acantholytic, of oral and laryngeal mucosa', 'Deafness, autosomal recessive 68', 'Deafness, autosomal dominant nonsyndromic sensorineural 28', 'Deafness, autosomal recessive 66', 'Deafness, autosomal recessive 23', 'Deafness, autosomal recessive 120', 'ACROKERATOELASTOIDOSIS', 'Aplasia cutis congenita of limbs, recessive', 'Hypotrichosis 9', 'Hypertrichosis universalis', 'Porokeratosis punctata palmaris et plantaris', 'Usher syndrome, type IIA', 'Usher syndrome, type IIC', 'Brittle cornea syndrome 2', 'Cone-Rod dystrophy, X-linked, 2', 'Retinitis pigmentosa 24', 'Spinal muscular atrophy, scapuloperoneal', 'Deafness, autosomal recessive 109', 'Corneal dystrophy, punctiform and polychromatic pre-Descemet', 'Ankyloglossia with or without tooth anomalies', 'Diastema, dental medial', 'Bronchiectasis with or without elevated sweat chloride 3', 'Impacted teeth, multiple', 'Trichoepithelioma, multiple familial, 1', 'Deafness, autosomal recessive 63', 'URETEROCELE', 'Vesicoureteral reflux 2', 'Choroidal dystrophy, central areolar 3', 'Orofacial cleft 5', 'Nystagmus 3, congenital, autosomal dominant', 'Fraser-Like syndrome', 'Cataract, autosomal recessive congenital 5', 'Hyperkeratosis lenticularis perstans', 'Uterine anomalies', 'OTOSCLEROSIS', 'Oocyte maturation defect 8', 'Pigmented nodular adrenocortical disease, primary, 3', 'Macular degeneration, age-related, 15, susceptibility to', 'Larynx, congenital partial atresia of', 'Pulmonary hypoplasia, primary', 'Tooth agenesis, selective, 1', 'Fibromatosis, gingival, with progressive deafness', 'Spermatogenic failure 53', 'Spermatogenic failure 31', 'Oocyte maturation defect 6', 'Spermatogenic failure 17', 'Spermatogenic failure 87', 'Deafness, autosomal recessive 49', 'Deafness, progressive, with stapes fixation', 'Spermatogenic failure 13', 'Oocyte/zygote/embryo maturation arrest 18', 'Oocyte maturation defect 3', 'Oocyte maturation defect 11', 'Oocyte/zygote/embryo maturation arrest 19', 'Deafness, neurosensory, autosomal recessive 3', 'Deafness, autosomal recessive, 24', 'Deafness, autosomal recessive 28', 'Otosclerosis 4', 'Tooth agenesis, selective, 7', 'Short tarsus with absence of lower eyelashes', 'Goiter, multinodular 1', 'Uveal melanoma, susceptibility to, 1', 'Melanoma, uveal, susceptibility to, 2', 'Nail disorder, nonsyndromic congenital, 9', 'Prostatic hyperplasia, benign', 'Nail disorder, nonsyndromic congenital, 5', 'Commissural lip pits', 'Preauricular tag, isolated, autosomal dominant, 1', 'Dyschromatosis symmetrica hereditaria 1', 'Dyschromatosis universalis hereditaria', 'Epidermolysis bullosa simplex 2B, generalized intermediate', 'Palmoplantar keratoderma, Bothnian type', 'Palmoplantar keratoderma, nonepidermolytic', 'Prostate cancer, hereditary, 1', 'Schwannomatosis', 'Epilepsy, familial temporal lobe, 3', 'Cochleosaccular degeneration of the inner ear with progressive cataracts', 'Myopia 2, autosomal dominant', 'Craniofacial dysmorphism, skeletal anomalies, and impaired intellectual development syndrome 2', 'Split-Foot malformation with mesoaxial polydactyly', 'Ciliary dyskinesia, primary, 10', 'Polydactyly, postaxial, type A10', 'Febrile convulsions, familial, 9', 'Autoimmune disease, susceptibility to, 1', 'Calvarial hyperostosis', 'Dermochondrocorneal dystrophy', 'Charcot-marie-tooth disease, type 4H', 'Meleda disease', 'Retinitis pigmentosa 78', 'Insensitivity to pain, congenital, with anhidrosis', 'Microcornea, glaucoma, and absent frontal sinuses', 'Ehlers-danlos syndrome, type I', 'Retinitis pigmentosa 42', 'AREDYLD', 'Attention deficit-hyperactivity disorder 8', 'Short stature and facioauriculothoracic malformations', 'Chopra-Amiel-Gordon syndrome', 'Retinal dystrophy and obesity', 'Mental retardation, X-linked 92', 'Episodic ataxia, type 7', 'Amelogenesis imperfecta, type III', '46XY gonadal dysgenesis with minifascicular neuropathy', 'Oculopalatocerebral syndrome', 'Lethal congenital contracture syndrome 4', 'Delayed puberty, self-limited', 'Neurodegeneration with brain iron accumulation 2B', 'Prolactin deficiency, isolated', 'Lethal congenital contracture syndrome 3', 'Polydactyly, postaxial, type A1', 'Lateral meningocele syndrome', 'Microcephaly 12, primary, autosomal recessive', 'Leukoencephalopathy with vanishing white matter', 'Muscular dystrophy, congenital, with infantile cataract and hypogonadism', 'Pulmonary hypertension, primary, 3', 'Spastic paraplegia 7, autosomal recessive', 'Lissencephaly 8', 'Leptin deficiency or dysfunction', 'STAR syndrome', 'Holoprosencephaly 2', 'Focal segmental glomerulosclerosis 7', 'Neuropathy, hereditary motor and sensory, Russe type', 'Ehlers-Danlos syndrome, classic-like', 'Spinocerebellar ataxia 6', 'Ceroid lipofuscinosis, neuronal, 2', 'Fibromatosis, gingival, 1', 'Cahmr syndrome', 'Ophthalmoplegia, progressive, with scrotal tongue and mental deficiency', 'Myopathy, congenital, with diaphragmatic defects, respiratory insufficiency, and dysmorphic facies', 'Neurodevelopmental disorder with nonspecific brain abnormalities and with or without seizures', 'Megalencephaly-Polymicrogyria-Polydactyly-Hydrocephalus syndrome 3', 'Neurodevelopmental disorder with or without hyperkinetic movements and seizures, autosomal dominant', 'Ectodermal dysplasia-syndactyly syndrome 1', 'Myopathy, myofibrillar, 9, with early respiratory failure', 'Paragangliomas 1', 'Hypoparathyroidism, X-linked', 'Pituitary adenoma 5, multiple types', 'Curved nail of fourth toe', 'Camptosynpolydactyly, complex', 'Ichthyosis-Cheek-Eyebrow syndrome', 'Spondyloarthropathy, susceptibility to, 1', 'Immunodeficiency 106, susceptibility to viral infections', 'Retinitis pigmentosa 9', 'Chromosome 5q12 deletion syndrome', 'Radial hypoplasia, triphalangeal thumbs, hypospadias, and maxillarydiastema', 'Focal segmental glomerulosclerosis 8', 'Nephrotic syndrome, type 18', 'Mental retardation, autosomal dominant 10', 'Febrile seizures, familial, 11', 'Neurofibromatosis, type III, mixed central and peripheral', 'Asthma, nasal polyps, and aspirin intolerance', 'Spinocerebellar ataxia 14', 'Alopecia-Mental retardation syndrome 1', 'Senior-Loken syndrome 7', 'Alopecia-Mental retardation syndrome 3', 'Ear exostoses', 'Cerebellar ataxia and neurosensory deafness', 'Vestibulopathy, familial', 'Chromosome 8q22.1 duplication syndrome', 'Nystagmus, hereditary vertical', 'Mental retardation, truncal obesity, retinal dystrophy, and micropenis syndrome', 'Mental retardation, autosomal recessive 25', 'Intellectual developmental disorder, autosomal recessive 50', 'Polymicrogyria, bilateral perisylvian', 'Paroxysmal nonkinesigenic dyskinesia 2', 'Inclusion body myopathy and brain white matter abnormalities', 'Polydactyly, preaxial II', 'Spastic paraplegia 5A, autosomal recessive', 'Polycystic kidney disease, infantile severe, with tuberous sclerosis', 'Mental retardation, X-linked 97', 'Convulsive disorder, familial, with prenatal or early onset', 'Microcephalic osteodysplastic primordial dwarfism, type III', 'Intellectual developmental disorder with dysmorphic facies and ptosis', 'Nemaline myopathy 4', 'Ceroid lipofuscinosis, neuronal, 6B (Kufs type)', 'Tremor, hereditary essential, 2', 'Polydactyly, postaxial, type A7', 'Asphyxiating thoracic dystrophy 3', 'Dystonia 35, childhood-onset', 'Charcot-Marie-Tooth disease, axonal, type 2R', 'Retinitis pigmentosa 51', 'Mental retardation, X-linked 91', 'Metaphyseal chondrodysplasia, Schmid type', 'Chudley-Mccullough syndrome', 'Multiple synostoses syndrome 4', 'Joubert syndrome 2', 'Pulmonary venoocclusive disease 2', 'Periventricular nodular heterotopia 8', 'Episodic pain syndrome, familial, 3', 'Migraine, familial hemiplegic, 1', 'Giacheti syndrome', 'Cortisone reductase deficiency 1', 'Retinitis pigmentosa 86', 'Retinitis pigmentosa 31', 'Spinal muscular atrophy, Ryukyuan type', 'Night blindness, congenital stationary, type 1D', 'Suprabulbar paresis, congenital', 'Encephalopathy due to defective mitochondrial and peroxisomal fission 2', 'Papillon-Lefevre syndrome', 'Arthrogryposis, distal, type 11', 'Deafness, autosomal recessive 79', 'Aural atresia, congenital', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 10', 'Myasthenic syndrome, congenital, with tubular aggregates 1', 'Chromosome 22q11.2 duplication syndrome', 'Alzheimer disease 3', 'Agenesis of the corpus callosum with peripheral neuropathy', 'Contractures, pterygia, and variable skeletal fusions syndrome 1B', 'Pontocerebellar hypoplasia, type 3', 'Spastic paraplegia 28, autosomal recessive', 'Brachydactyly-Nystagmus-Cerebellar ataxia', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 7', 'Atonic-Astatic syndrome of foerster', 'Nephrotic syndrome, type 23', 'Epidermolysis bullosa simplex 2D, generalized, intermediate or severe, autosomal recessive', 'Neurodevelopmental disorder with seizures and nonepileptic hyperkinetic movements', 'Ohdo syndrome', 'Cataracts, hearing impairment, nephrotic syndrome, and enterocolitis 2', 'Seizures, early-onset, with neurodegeneration and brain calcification', 'Coffin-Siris syndrome 12', 'Rolandic epilepsy, mental retardation, and speech dyspraxia', 'Myasthenia, limb-girdle, familial', 'Trigonocephaly 2', 'Parkinson disease 11', 'Corneal dystrophy, posterior polymorphous, 3', 'Epilepsy, idiopathic generalized', 'Myasthenic syndrome, congenital, 14', 'Developmental delay, impaired growth, dysmorphic facies, and axonal neuropathy', 'Muscular hypertonia, lethal', 'Stromme syndrome', 'Coffin-Siris syndrome 11', 'Aniridia', 'Red skin pigment anomaly of new guinea', 'Osteogenesis imperfecta, type XIX', 'Cone-rod dystrophy and hearing loss 2', 'Ciliary dyskinesia, primary, 40', 'Meesmann corneal dystrophy 2', 'ALACRIMA', 'Seckel syndrome 1', 'Polymyoclonus, infantile', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 13', 'Poland syndrome', 'Facial paresis, hereditary congenital, 2', 'Preaxial deficiency, postaxial polydactyly, and hypospadias', 'Epileptic encephalopathy, early infantile, 72', 'Agnathia-Otocephaly complex', 'Tatton-Brown-Rahman syndrome', 'Acrokeratoderma, hereditary papulotranslucent', 'Orbital margin, hypoplasia of', 'Wolfram-Like syndrome, autosomal dominant', 'Glycosylphosphatidylinositol biosynthesis defect 16', 'Charcot-Marie-Tooth disease, dominant intermediate F', 'Ciliary dyskinesia, primary, 48, without situs inversus', 'Bor-Duane hydrocephalus contiguous gene syndrome', 'Phelan-Mcdermid syndrome', 'Spondylometaphyseal dysplasia, Kozlowski type', 'Dystonia 17, torsion, autosomal recessive', 'Contractures, pterygia, and spondylocarpostarsal fusion syndrome 1A', 'Kleine-Levin hibernation syndrome', 'Familial adenomatous polyposis 3', 'Alpha-Thalassemia/mental retardation syndrome, X-linked', 'Mental retardation, autosomal dominant 4', 'Peripheral motor neuropathy, childhood-onset, biotin-responsive', 'Andersen cardiodysrhythmic periodic paralysis', 'Hydrolethalus syndrome 2', 'Tooth agenesis, selective, 10', 'Lambotte syndrome', 'Amelogenesis imperfecta, hypomaturation type, iia2', 'Episodic kinesigenic dyskinesia 2', 'Mucus inspissation of respiratory tract', 'Holzgreve syndrome', '3MC syndrome 1', 'Van den bosch syndrome', 'Spondyloepimetaphyseal dysplasia, Irapa type', 'Coloboma of macula with type B brachydactyly', 'Developmental delay with variable intellectual impairment and behavioral abnormalities', 'Myopathy, myosin storage, autosomal dominant', 'Epilepsy, nocturnal frontal lobe, 2', 'Epilepsy, idiopathic generalized, susceptibility to, 12', 'Cerebral palsy, spastic quadriplegic, 3', 'Amelogenesis imperfecta, type IV', 'Colorectal cancer', 'Encephalitis/encephalopathy, mild, with reversible myelin vacuolization', 'Hypotrichosis-lymphedema-telangiectasia syndrome', 'Mental retardation, autosomal recessive 51', 'Amyotrophy, hereditary neuralgic', 'Amelogenesis imperfecta, type IIIC', 'Haim-Munk syndrome', 'Meckel syndrome, type 9', 'Hydrolethalus syndrome 1', 'Chromosome 17q11.2 deletion syndrome, 1.4-mb', 'Ophthalmoplegia, external, with rib and vertebral anomalies', 'Cervical hypertrichosis with underlying kyphoscoliosis', 'Parkinson disease 5, susceptibility to', 'Tremor, hereditary essential, 6', 'Xeroderma pigmentosum, complementation group E', 'Glioma susceptibility 1', 'Chromosome 2q31.1 duplication syndrome', 'Specific language impairment 5', 'Nail disorder, nonsyndromic congenital, 6', 'Seizures, cortical blindness, and microcephaly syndrome', 'Congenital cataracts, facial dysmorphism, and neuropathy', 'Developmental and epileptic encephalopathy 18', 'Immunodeficiency 107, susceptibility to invasive staphylococcus aureus infection', 'Speech-language disorder-1', 'Dementia, lewy body', 'Pruritus, hereditary localized', 'Atresia of external auditory canal and conduction deafness', 'Short-Rib thoracic dysplasia 16 with or without polydactyly', 'Myasthenic syndrome, congenital, 23, presynaptic', 'Anterior chamber cleavage disorder, cerebellar hypoplasia, hypothyroidism, and tracheal stenosis', 'You-Hoover-Fong syndrome', 'Mitochondrial complex I deficiency, nuclear type 21', 'Usher syndrome, type IG', 'Microcephaly 25, primary, autosomal recessive', 'Leukoencephalopathy, acute reversible, with increased urinary alpha-ketoglutarate', 'Syndactyly, type V', 'Erythrokeratodermia veriabilis et progressiva 6', 'Charcot-Marie-Tooth disease, dominant intermediate C', 'Short-Rib thoracic dysplasia 14 with polydactyly', 'Short-Rib thoracic dysplasia 19 with or without polydactyly', 'Townes-Brocks syndrome 1', 'Cataract-Ataxia-Deafness-Retardation syndrome', 'Neuropathy, hereditary sensory, type ID', 'Neuromuscular disease and ocular or auditory anomalies with or without seizures', 'Coffin-siris syndrome 6', 'Cerebellar hypoplasia/atrophy, epilepsy, and global developmental delay', 'Retinitis pigmentosa 74', 'Neural tube defects, susceptibility to', 'Brachydactyly, preaxial, with hallux varus and thumb abduction', 'Mitochondrial complex IV deficiency, nuclear type 17', 'Actinic prurigo', 'Ovarian dysgenesis 7', 'Mosaic variegated aneuploidy syndrome 3', 'Arthrogryposis, distal, type 2B3', 'Spasticity, childhood-onset, with hyperglycinemia', 'Lactate dehydrogenase B deficiency', 'Arthrogryposis, distal, type 2E', 'Synostoses, tarsal, carpal, and digital', 'Lethal congenital contracture syndrome 6', 'Aniridia and absent patella', 'Peroxisome biogenesis disorder 9B', 'Ceroid lipofuscinosis, neuronal, 8', 'Seborrhea-Like dermatitis with psoriasiform elements', 'Renal cell carcinoma, papillary, 1, familial and somatic', 'Adrenal hyperplasia, congenital, due to 11-beta-hydroxylase deficiency', 'BETA-THALASSEMIA', 'ALPHA-THALASSEMIA', 'Granulomatosis with polyangiitis', 'Epilepsy, familial temporal lobe, 6', 'Keratosis follicularis, dwarfism, and cerebral atrophy', 'Mental retardation, autosomal recessive 52', 'Radioulnar synostosis, unilateral, with developmental retardationand hypotonia', 'Mucoepithelial dysplasia, hereditary', 'Erythrokeratodermia variabilis et progressiva 4', 'Urocanase deficiency', 'Striatal degeneration, autosomal dominant 2', 'Jaberi-Elahi syndrome', 'Retinitis pigmentosa 76', 'Friedreich ataxia, so-called, with optic atrophy and sensorineuraldeafness', 'TRACHEOBRONCHOMEGALY', 'Autism, susceptibility to, 20', 'Oculodentodigital dysplasia, autosomal recessive', 'Brown-Vialetto-Van laere syndrome 2', 'Brachydactyly, type B1', 'Blepharophimosis with facial and genital anomalies and mental retardation', 'Epilepsy, idiopathic generalized, 10', 'Otosclerosis 3', 'Melanoma, cutaneous malignant, susceptibility to, 10', 'Bladder cancer', 'Mental retardation, autosomal recessive 47', 'Spastic paraplegia and psychomotor retardation with or without seizures', 'Deafness, autosomal recessive 1A', 'Macular degeneration, age-related, 4', 'Myasthenic syndrome, congenital, 9, associated with acetylcholine receptor deficiency', 'Alzheimer disease 9, susceptibility to', 'Baker-Gordon syndrome', 'Orofaciodigital syndrome IV', 'Anauxetic dysplasia 2', 'Brooke-Spiegler syndrome', 'Noduli cutanei, multiple, with urinary tract abnormalities', 'Nasal bones, absence of', 'Iris pigment layer, cleavage of', 'Galloway-Mowat syndrome 10', 'Vestibulocochlear dysfunction, progressive', 'Ackerman syndrome', 'Fibrosis of extraocular muscles, congenital, 5', 'Steatocystoma multiplex with natal teeth', 'Leber congenital amaurosis 11', 'Fleck retina, familial benign', 'Anonychia with flexural pigmentation', 'Corneal dystrophy, Fuchs endothelial, 4', 'Retinitis pigmentosa 48', 'Doyne honeycomb retinal dystrophy', 'Usher syndrome, type ID', 'Cataract, autosomal dominant, multiple types 1', 'Microphthalmia, isolated, with corectopia', 'Auditory neuropathy, autosomal dominant 3', 'Deafness, autosomal dominant nonsyndromic sensorineural 2', 'Deafness, autosomal dominant nonsyndromic sensorineural 11', 'Nail disorder, nonsyndromic congenital, 7', 'Deafness, autosomal dominant 36', 'Deafness, autosomal recessive 29', 'Ichthyosis, lamellar, autosomal dominant', 'Deafness, autosomal recessive 74', 'Deafness, autosomal recessive 12', 'Duane retraction syndrome 2', 'Deafness, autosomal dominant 74', 'Deafness, autosomal dominant 81', 'Deafness, autosomal dominant 71', 'Deafness, autosomal recessive 110', 'Retinitis pigmentosa 85', 'Leber congenital amaurosis 12', 'Pachyonychia congenita 4', 'Cataract 19, multiple types', 'Cataract 7', 'Deafness, autosomal dominant 51', 'Deafness, autosomal dominant 89', 'Microphthalmia with coloboma 3', 'Stargardt disease 4', 'Aniridia, microcornea, and spontaneously reabsorbed cataract', 'Cataract 44', 'Glucocorticoid deficiency 5', 'Deafness, autosomal dominant nonsyndromic sensorineural 49', 'Deafness, mid-tone neural', 'Disordered steroidogenesis due to cytochrome P450 oxidoreductase', 'Hypogonadism, primary, and partial alopecia', 'Myopia 17', 'Corneal dystrophy, fuchs endothelial, 8', 'Aplasia cutis congenita, high myopia, and cone-rod dysfunction', 'Hydatidiform mole, recurrent, 3', 'Myopia 25, autosomal dominant', 'Retinal dystrophy, reticular pigmentary, of posterior pole', 'Premature ovarian failure 12', 'Hydatidiform mole, recurrent, 1', 'Thyroid hormone resistance, selective pituitary', 'Spermatogenic failure 12', 'Frontonasal dysplasia with alar clefts', 'Cataract, congenital total, with posterior sutural opacities in heterozygotes', 'Macular dystrophy, concentric annular', 'Ankyloblepharon filiforme adnatum and cleft palate', 'Usher syndrome, type IC', 'Perrault syndrome 2', 'Keratosis palmoplantaris striata II', 'Palmoplantar keratoderma, epidermolytic, 2', 'Deafness, autosomal recessive 89', 'Deafness, autosomal recessive 84B', 'Occult macular dystrophy', 'Cataract, congenital, Volkmann type', 'Corneal dystrophy, lattice type I', 'Hypotrichosis 10', 'Pupillary membrane, persistence of', 'Cataract 23', 'Thyroid cancer, nonmedullary, 1', 'Deafness, autosomal dominant 73', 'Deafness, autosomal recessive 8/10', 'Deafness, autosomal dominant 66', 'Deafness, neurosensory, autosomal recessive 42', 'Senior-Loken syndrome 5', 'Deafness-Oligodontia syndrome', 'Dyschromatosis universalis hereditaria 3', 'Stargardt disease 1', 'Advanced sleep phase syndrome, familial, 2', 'Choroidal dystrophy, central areolar 1', 'Cryptorchidism, unilateral or bilateral', 'Deafness, autosomal recessive 108', 'Deafness, autosomal dominant 6', 'Deafness, autosomal dominant 20', 'Rhabdoid tumor predisposition syndrome 2', 'Tooth agenesis, selective, 9', 'Myofibromatosis, infantile, 1', 'Cleft palate, X-linked', 'Mayer-Rokitansky-Kuster-Hauser syndrome', 'Cataract 31, multiple types', 'Nephronophthisis 9', 'Nephronophthisis 7', 'Oocyte/zygote/embryo maturation arrest 20', 'Oocyte/zygote/embryo maturation arrest 17', 'Premature ovarian failure 3', 'Orofacial cleft 1', 'Testes, rudimentary', 'Spermatogenic failure 36', 'Dental noneruption', 'CODAS syndrome', 'Keratoconus 1', 'Book syndrome', 'Nephrotic syndrome, type 13', 'Oocyte maturation defect 9', 'Cataract, autosomal recessive congenital 2', 'Vas deferens, congenital bilateral aplasia of', 'Spermatogenic failure 61', 'Spermatogenic failure 62', 'Spermatogenic failure 44', 'Spermatogenic failure 6', 'Oocyte maturation defect 13', 'Spermatogenic failure 8', 'Spermatogenic failure 23', 'Spermatogenic failure 4', 'Spermatogenic failure, Y-linked, 2', 'Spermatogenic failure 52', 'Spermatogenic failure 55', 'Spermatogenic failure, Y-linked, 1', 'Spermatogenic failure 3', 'Spermatogenic failure 69', 'Spermatogenic failure 66', 'Spermatogenic failure 67', 'Spermatogenic failure 9', 'Spermatogenic failure 26', 'Breast-Ovarian cancer, familial, susceptibility to, 2', 'Deafness, autosomal recessive 111', 'Deafness, autosomal dominant 70', 'Oocyte maturation defect', 'Oocyte maturation defect 5', 'Oocyte/zygote/embryo maturation arrest 14', 'Oocyte maturation defect 4', 'Tooth agenesis, selective, 4', 'Epilepsy, familial temporal lobe, 2', 'Parietal foramina', 'Brachydactyly, coloboma, and anterior segment dysgenesis', 'Pseudohermaphroditism, female, with skeletal anomalies', 'Spastic paraparesis and deafness', 'Mirror movements 1 and/or agenesis of the corpus callosum', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 2', 'Intellectual developmental disorder, autosomal dominant 64', 'Cardiomyopathy, dilated, with woolly hair, keratoderma, and tooth agenesis', 'Developmental and epileptic encephalopathy 104', 'Adrenal hypoplasia, congenital', 'Premature ovarian failure 1', 'Symphalangism, distal', 'Ceroid lipofuscinosis, neuronal, 3', 'Periodontitis, aggressive, 1', 'Craniotelencephalic dysplasia', 'Microangiopathy and leukoencephalopathy, pontine, autosomal dominant', 'Epileptic encephalopathy, early infantile, 83', 'Dyggve-Melchior-Clausen disease', 'Fryns microphthalmia syndrome', 'Spinocerebellar degeneration with macular corneal dystrophy, congenitalcataracts, and myopia', 'Myasthenic syndrome, congenital, 6, presynaptic', 'Spondyloepimetaphyseal dysplasia, Aggrecan type', 'Brachydactyly, type A4', 'Corneal dystrophy of bowman layer, type II', 'Ovarian dysgenesis 5', 'Ocular motor apraxia', 'Multiple synostoses syndrome 2', 'Minicore myopathy with external ophthalmoplegia', '46,XX sex reversal 5', 'Dystonia 21', 'Neurodevelopmental disorder with hypotonia and gross motor and seech delay', 'Leri-Weill dyschondrosteosis', 'Craniotubular dysplasia, Ikegawa type', 'Intellectual developmental disorder, autosomal dominant 22', 'Deafness, autosomal dominant 39, with dentinogenesis imperfecta 1', 'Stankiewicz-Isidor syndrome', 'Thanatophoric dysplasia, type II', 'Parkinson disease 21', 'Deafness, autosomal recessive 70', 'Chordoma, susceptibility to', 'Neurofibromatosis, type I', 'Keratoderma, palmoplantar, norrbotten Recessive type', 'Epilepsy, nocturnal frontal lobe, type 1', 'Postaxial oligodactyly, tetramelic', 'Pontocerebellar hypoplasia, type 10', 'Kohlschutter-Tonz syndrome-like', 'Spastic ataxia 1, autosomal dominant', 'Microcephaly 14, primary, autosomal recessive', 'Deafness, congenital, with total albinism', 'TELECANTHUS', 'Microphthalmia, isolated 2', 'Intellectual developmental disorder 62', 'Generalized epilepsy with febrile seizures plus, type 1', 'Chorea, childhood-onset, with psychomotor retardation', 'Short stature, developmental delay, and congenital heart defects', 'Deafness, autosomal recessive 84', 'Usher syndrome, type IJ', 'Usher syndrome, type IK', 'Mental retardation, autosomal dominant 36', 'Muscular dystrophy, limb-girdle, type 2H', 'Amelogenesis imperfecta, type IF', 'Retinitis pigmentosa 83', 'Amelogenesis imperfecta, type IH', 'Nephrolithiasis, calcium oxalate, 2, with nephrocalcinosis', 'Boomerang dysplasia', 'Renal hypodysplasia/aplasia 1', 'Supranuclear palsy, progressive atypical', 'Endove syndrome, Limb-Only type', 'Neuronopathy, distal hereditary motor, type IIA', 'Obsessive-Compulsive disorder 1', 'Omodysplasia 2', 'Dupuytren contracture 1', 'Atelosteogenesis, type I', 'Keratoconus posticus circumscriptus', 'External auditory canal, bilateral atresia of, with congenital verticaltalus', 'Dentinogenesis imperfecta, shields type III', 'Gastrointestinal defects and immunodeficiency syndrome 2', 'Leber hereditary optic neuropathy, autosomal recessive', 'Li-Campeau syndrome', 'Thyroid hormone metabolism, abnormal', 'Premature ovarian failure 11', 'Premature ovarian failure 16', 'Dentin dysplasia, type II', 'Crouzon syndrome with acanthosis nigricans', 'Midface hypoplasia, obesity, developmental delay, and neonatal hypotonia', 'Mental retardation, X-linked 12/35', 'Galloway-Mowat syndrome 9', 'Spinocerebellar ataxia, autosomal recessive 3', 'Apnea, obstructive sleep', 'Aniridia, partial, with unilateral renal agenesis and psychomotorretardation', 'Febrile seizures, familial, 2', 'Febrile seizures, familial, 1', 'Febrile seizures, familial, 6', 'Familial idiopathic steroid-resistant nephrotic syndrome', 'Retinitis pigmentosa with or without skeletal anomalies', 'Facial paresis, hereditary congenital, 1', 'Spinal muscular atrophy, type III', 'Perry syndrome', 'Mitochondrial complex I deficiency, nuclear type 27', 'Mental retardation, X-linked 14', 'Dyssegmental dysplasia, Rolland-Desbuquois type', 'Focal segmental glomerulosclerosis 10', 'Charcot-marie-tooth disease, axonal, type 2A2A', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions,autosomal recessive', 'Meckel syndrome 13', 'Joubert syndrome 23', 'Splenogonadal fusion with limb defects and micrognathia', 'Mandibulofacial dysostosis, Guion-Almeida type', 'Spastic paraplegia 41, autosomal dominant', 'Perrault syndrome 3', 'Mirror movements 2', 'Retinitis pigmentosa 39', 'Leber congenital amaurosis 19', 'Retinitis pigmentosa 61', 'Retinitis pigmentosa 26', 'Chromosome 17q23.1-q23.2 deletion syndrome', 'Chromosome 1q21.1 deletion syndrome, 1.35-mb', 'Retinitis pigmentosa 36', 'Desmoid disease, hereditary', 'Neurodevelopmental disorder with cerebellar hypoplasia and spasticity', 'Cerebrocostomandibular syndrome', 'Microcephaly 9, primary, autosomal recessive', 'Griscelli syndrome, type 3', 'Ataxia with myoclonic epilepsy and presenile dementia', 'Usher syndrome, type IE', 'Multiple synostoses syndrome 3', 'Epileptic encephalopathy, early infantile, 41', 'Intellectual developmental disorder, autosomal dominant 48', 'Mucopolysaccharidosis type IX', 'Leukoencephalopathy with vanishing white matter 5, with or without ovarian failure', 'Hyperprolinemia, type I', 'Ehlers-Danlos syndrome, musculocontractural type 1', 'Dyskinesia with orofacial involvement, autosomal recessive', 'Restless legs syndrome, susceptibility to, 1', 'Neurodevelopmental disorder with microcephaly, epilepsy, and brain atrophy', 'Spinocerebellar ataxia 32', 'Myopathy, centronuclear, 2', 'Developmental and epileptic encephalopathy 103', 'Carpal tunnel syndrome 2', 'Seizures, benign familial infantile, 2', 'Helsmoortel-van der Aa syndrome', 'Alport syndrome 2, autosomal recessive', 'Deafness, autosomal recessive 18B', 'Band heterotopia', 'Spastic paraplegia 74, autosomal recessive', 'Charcot-Marie-Tooth disease, type 4B2', 'Parkinsonism-dystonia 3, childhood-onset', 'Joubert syndrome 25', 'Tremor, hereditary essential, 1', 'Aldosteronism, glucocorticoid-remediable', 'Ulnar hypoplasia with mental retardation', 'Developmental and epileptic encephalopathy 110', 'Epidermolysis bullosa with diaphragmatic hernia', 'Orofaciodigital syndrome X', 'Frias syndrome', 'Joubert syndrome 17', 'Spinocerebellar ataxia, autosomal recessive 32', 'Blepharonasofacial malformation syndrome', 'Seizures, benign familial infantile, 5', 'Dystonia 1, torsion, autosomal dominant', 'Neurodevelopmental disorder with hypotonia, stereotypic hand movements, and impaired language', 'Cleft palate, deafness, and oligodontia', 'Fibrosis of extraocular muscles, congenital, 3B', 'Neurodevelopmental disorder with hypotonia and brain abnormalities', 'Kury-Isidor syndrome', 'Neurodevelopmental disorder with dysmorphic facies and cerebellar hypoplasia', 'Parietal foramina 2', 'Myopathy, tubular aggregate, 1', 'Congenital hypotonia, epilepsy, developmental delay, and digital anomalies', 'Epiphyseal dysplasia, multiple, 2', 'Chromosome 10q26 deletion syndrome', 'Kniest dysplasia', 'Hartsfield syndrome', 'Myotubular myopathy with abnormal genital development', 'Achromatopsia 4', 'Bullous dystrophy, hereditary Macular type', 'Glaucoma 3, primary congenital, D', 'Albinism, oculocutaneous, type V', 'Pierre Robin sequence with pectus excavatum and rib and scapular anomalies', 'Schizophrenia 15', 'Fryns syndrome', 'Microcephaly 3, primary, autosomal recessive', 'Neurodevelopmental disorder with growth retardation, dysmorphic facies, and corpus callosum abnormalities', 'Neuropathy, hereditary sensory and autonomic, type VIII', 'Mitochondrial DNA depletion syndrome 16B (neuroophthalmic type)', 'Ovarian dysgenesis 3', 'Young syndrome', 'Atelosteogenesis, type III', 'Ciliary dyskinesia, primary, 39', 'Amelogenesis imperfecta, type IC', 'Cortical dysplasia, complex, with other brain malformations 4', 'Epilepsy, juvenile absence', 'Congenital contractures of the limbs and face, hypotonia, and developmental delay', 'Intellectual developmental disorder, autosomal recessive 14', 'Complement factor I deficiency', 'Mitochondrial complex V (atp synthase) deficiency, nuclear type 4', '3-methylglutaconic aciduria, type III', 'Hydrocephalus, congenital, 3, with brain anomalies', 'Respiratory papillomatosis, juvenile recurrent, congenital', 'Ferguson-Bonni neurodevelopmental syndrome', 'Amelogenesis imperfecta, type IJ', 'Neurodevelopmental disorder with hypotonia, language delay, and skeletal defects with or without seizures', 'Laurin-Sandrow syndrome', 'Cerebellar atrophy, developmental delay, and seizures', 'Fetal akinesia deformation sequence', 'Schizophrenia', 'Spastic paraplegia 31, autosomal dominant', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 6', 'Arthrogryposis multiplex congenita, neurogenic, with agenesis of the corpus callosum', 'Deafness, autosomal recessive 9', 'Spinocerebellar ataxia, autosomal recessive 26', 'Bardet-Biedl syndrome 21', 'Epilepsy, hot water, 1', 'Intellectual developmental disorder 61', 'Syndactyly, mesoaxial synostotic, with phalangeal reduction', 'Corneal dystrophy, Reis-Bucklers type', 'Charcot-Marie-Tooth disease, recessive intermediate A', 'Lethal congenital contracture syndrome 11', 'Candidiasis, familial, 9', 'Spastic quadriplegia, retinitis pigmentosa, and mental retardation', 'Spastic paraplegia 14, autosomal recessive', 'Pellagra-Like syndrome', 'Klippel-Feil syndrome, autosomal recessive', 'Spinocerebellar ataxia, autosomal recessive 33', 'Generalized epilepsy with febrile seizures plus, type 7', 'Piebald trait with neurologic defects', 'Myopathy, centronuclear, autosomal dominant', 'Kleefstra syndrome 2', 'Psoriasis 2', 'Chilblain lupus 2', 'Ichthyosis, congenital, autosomal recessive 7', 'Humeroradial synostosishumeroradial/multiple synostosis syndrome', 'Gyrate atrophy of choroid and retina with or without ornithinemia', 'Weiss-Kruszka syndrome', 'Leukoencephalopathy with brainstem and spinal cord involvement and lactate elevation', 'Arthrogryposis, congenital, lower limb, X-linked', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 7', 'Heart and brain malformation syndrome', 'Microcephaly, short stature, and limb abnormalities', 'Sifrim-Hitz-Weiss syndrome', 'Al Kaissi syndrome', 'Acromegaloid facial appearance syndrome', 'Charcot-Marie-Tooth disease, type 4D', 'Megalencephalic leukoencephalopathy with subcortical cysts 2B, remitting, with or without mental retardation', 'Narcolepsy 3', 'Spinocerebellar ataxia, autosomal recessive 31', 'Ichthyosis, congenital, autosomal recessive 14', 'Behr syndrome', 'Ichthyosis, congenital, autosomal recessive 8', 'Neurodevelopmental disorder with spasticity, cataracts, and cerebellar hypoplasia', 'Macular degeneration, age-related, 1', 'Premature ovarian failure 20', 'Premature ovarian failure 14', 'Myopathy, congenital, with tremor', 'Neuropathy, congenital hypomyelinating, 3', 'Charcot-Marie-Tooth disease, axonal, type 2A2B', 'Generalized epilepsy with febrile seizures plus, type 10', 'Neuropathy, hereditary, with liability to pressure palsies', 'Usher syndrome, type 1M', 'Humerofemoral hypoplasia with radiotibial ray deficiency', 'Pachygyria, frontotemporal', 'Aase-Smith syndrome I', 'Tylosis with esophageal cancer', 'Osteopathia striata with cranial sclerosis', 'Split-Hand/foot malformation with long bone deficiency 1', 'Rubinstein-Taybi syndrome 2', 'Acrocapitofemoral dysplasia', 'Immunodeficiency 31A', 'Orofaciodigital syndrome V', 'Choreoathetosis, familial inverted', 'Pontocerebellar hypoplasia, type 16', 'Joubert syndrome 16', 'Leukodystrophy and acquired microcephaly with or without dystonia', 'Frasier syndrome', 'Aicardi-Goutieres syndrome 8', 'Nemaline myopathy 9', 'Myoclonic epilepsy, juvenile, susceptibility to, 1', 'Rhizomelic limb shortening with dysmorphic features', 'Cleft palate, isolated', 'Ciliary dyskinesia, primary, 37', 'Atelosteogenesis, type II', 'Spastic paraplegia 39, autosomal recessive', 'Ischiocoxopodopatellar syndrome with or without pulmonary arterial hypertension', 'Epilepsy, familial focal, with variable foci', 'Spinocerebellar ataxia 41', 'Ectodermal dysplasia 10B, hypohidrotic/hair/tooth type, autosomal recessive', 'Branchial myoclonus with spastic paraparesis and cerebellar ataxia', 'Charcot-Marie-Tooth disease, axonal, type 2S', 'Ehlers-Danlos syndrome, classic type, 2', 'Nephrotic syndrome, type 20', 'Dyskinesia, familial, with facial myokymia', 'Fibular hypoplasia and complex brachydactyly', 'Meniere disease', 'Ichthyosis, spastic quadriplegia, and mental retardation', 'Chorea, remitting, with nystagmus and cataract', 'Tooth malformation', 'Intellectual developmental disorder, autosomal dominant 67', 'Ovarian cancer', 'Hypoparathyroidism, sensorineural deafness, and renal dysplasia', 'Retinitis pigmentosa 90', 'Lung cancer, susceptibility to', 'Retinitis pigmentosa 77', 'Thyroid cancer, nonmedullary, 2', 'Horner syndrome, congenital', 'Intellectual developmental disorder, autosomal recessive 54', 'Ophthalmomandibulomelic dysplasia', 'Epilepsy, progressive myoclonic 1B', 'Arthrogryposis, distal, type 2B2', 'Spinal muscular atrophy, distal, autosomal recessive, 3', 'Clark-Baraitser syndrome', 'Neurodevelopmental disorder with involuntary movements', 'Levator-Medial rectus synkinesis', 'Multiple self-healing squamous epithelioma', 'Cleft larynx, posteriorstridor, congenital, included', 'Spastic paraplegia 64, autosomal recessive', 'Charge-Like syndrome, X-linked', 'Ciliary dyskinesia, primary, 6', 'Deafness, autosomal recessive 35', 'Sebaceous gland hyperplasia, familial presenile', 'Microphthalmia, isolated, with coloboma 4', 'Microphthalmia, isolated 1', 'Ophthalmoplegia, familial static', 'Cryptophthalmos, unilateral or bilateral, isolated', 'Oculomotor-abducens synkinesis', 'Keratosis palmoplantaris striata III', 'Intellectual developmental disorder, autosomal dominant, FRA12A type', 'Retinitis pigmentosa 63', 'Myopia 23, autosomal recessive', 'Reticular dystrophy of retinal pigment epithelium', 'Retinitis pigmentosa 35', 'Cavitary optic disc anomalies', 'Bothnia retinal dystrophy', 'Blepharoptosis, myopia, and ectopia lentis', 'Deafness, autosomal dominant 4B', 'Foveal hypoplasia and presenile cataract syndromefoveal hypoplasia, isolated, included', 'Deafness, autosomal recessive 101', 'TRITANOPIA', 'Ichthyosis hystrix gravior', 'Retinopathy, pericentral pigmentary, autosomal recessive', 'Epidermolysis bullosa, junctional 2A, intermediate', 'Spastic paraplegia, optic atrophy, and dementia', 'Deafness, autosomal dominant 50', 'Mammary-Digital-Nail syndrome', 'Glaucoma-Related pigment dispersion syndrome', 'Cataract, posterior polar, 1 ctpa cataract, congenital total, included', 'Branchiootic syndrome 2', 'Renal, genital, and middle ear anomalies', 'Deafness, autosomal dominant 77', 'Erythrokeratodermia variabilis et progressiva 7', 'Epidermolysis bullosa dystrophica neurotrophica', 'CHANDS', 'Sveinsson chorioretinal atrophy', 'Odontomicronychial dysplasia', 'Glaucoma 1, open angle, F', 'Deafness, neurosensory, autosomal recessive 2', 'Hemifacial hyperplasia with strabismus', 'Auditory neuropathy, autosomal dominant 2', 'Deafness, autosomal dominant 72', 'Porokeratosis 3, multiple types', 'Deafness, autosomal recessive 103', 'Deafness, autosomal dominant 87', 'Deafness, autosomal dominant 41', 'Glaucoma 1, open angle, P', 'Woolly hair, hypotrichosis, everted lower lip, and outstanding ears', 'Deafness, autosomal dominant 65', 'Deafness, autosomal recessive 118, with cochlear aplasia', 'Deafness, autosomal dominant 56', 'Deafness, neurosensory, autosomal recessive 7', 'Focal facial dermal dysplasia 1, Brauer type', 'Myopia 28, autosomal recessive', 'Dilution, pigmentary', 'Corneal endothelial dystrophy, autosomal recessive', '46,xy sex reversal 8', 'Keratoconus 9', 'Rutherfurd syndrome', 'Microphthalmia, isolated 3', 'Porokeratosis 8, disseminated superficial Actinic type', 'Reticulate acropigmentation of Kitamura', 'Peeling skin syndrome 5', 'Uncombable hair syndrome 1', 'Uncombable hair syndrome 2', 'LARYNGOMALACIA', 'Ectopia lentis, familial', 'Deafness and myopia', 'Palmoplantar keratoderma, nonepidermolytic, focal or diffuse', 'Microphthalmia, isolated, with coloboma 7', 'Deafness, autosomal dominant 23', 'Melanoma, cutaneous malignant, susceptibility to, 3', 'Ectodermal dysplasia 5, Hair/nail type', 'Porokeratosis 1, multiple types', 'Epidermolysis bullosa simplex 2C, localized', 'Extraoral halitosis due to MTO deficiency', 'Ciliary dyskinesia, primary, 44', 'Premature ovarian failure 19', 'Porokeratosis 9, multiple types', 'Cataract 3, multiple types', 'Cataract, multiple types', 'Dowling-Degos disease 2', 'Spermatogenic failure 11', 'Cataract 15, multiple types', 'Glaucoma 3, primary congenital, A', 'Deafness, autosomal dominant 83', 'Spermatogenic failure 71', 'Spermatogenic failure 32', 'Cataract 30, multiple types', 'Spermatogenic failure 50', 'Nephrotic syndrome, type 21', 'Episodic kinesigenic dyskinesia 3', 'Spermatogenic failure 60', 'Spermatogenic failure 74', 'Spermatogenic failure 59', 'Spermatogenic failure 73', 'Spermatogenic failure 1', 'Vas deferens, congenital bilateral aplasia of, X-linked', 'Spermatogenic failure 22', 'Spermatogenic failure 21', 'Spermatogenic failure 16', 'Male infertility with large-headed, multiflagellar, polyploid spermatozoa', 'Spermatogenic failure 29', 'Cowden-Like syndrome', 'Deafness, autosomal recessive 76', 'Bainbridge-Ropers syndrome', 'Keratosis, focal palmoplantar and gingival', 'Wilms tumor 6', 'Joubert syndrome 40', 'Synpolydactyly 1', 'Nabais Sa-de Vries syndrome, type 1', 'Amelogenesis imperfecta, type IIA5', 'Spastic paraplegia 20, autosomal recessive', 'Membranous cranial ossification, delayed', 'Spondyloepiphyseal dysplasia tarda with characteristic facies', 'Leukoencephalopathy with vanishing white matter 3, with or without ovarian failure', 'Parkinson disease 24, autosomal dominant, susceptibility to', 'Mental retardation, autosomal dominant 42', 'Chiari malformation type I', 'Paragangliomas 2', 'Chromosome 3q29 duplication syndrome', 'Antley-Bixler syndrome with genital anomalies and disordered steroidogenesis', 'Mental retardation, X-linked 41', 'Supranuclear palsy, progressive, 2', 'Amelogenesis imperfecta, type IA', 'Epilepsy, familial temporal lobe, 4', 'Developmental delay with short stature, dysmorphic facial features, and sparse hair 2', 'Epilepsy, progressive myoclonic 3, with or without intracellular inclusions', 'Leopard syndrome 2', 'Spinocerebellar ataxia 45', 'Myasthenic syndrome, congenital, 15', 'Mega-corpus-callosum syndrome with cerebellar hypoplasia and cortical malformations', 'Ichthyosis with alopecia, eclabion, ectropion, and mental retardation', 'Neutropenia, severe congenital, X-linked', 'Thyroid hormonogenesis, genetic defect in, 3', 'Sweeney-Cox syndrome', 'Aromatase deficiency', 'Arthrogryposis, distal, type 10', 'Deafness, autosomal recessive 119', 'Kleefstra syndrome', 'Acne inversa, familial, 2, with or without dowling-degos disease', 'Microcephaly, seizures, and developmental delay', 'Cerebellar ataxia, mental retardation, and dysequilibrium syndrome4', 'Chromosome 17p13.3, telomeric, duplication syndrome', 'Rhizomelic chondrodysplasia punctata, type 5', 'Oculogastrointestinal neurodevelopmental syndrome', 'Charcot-Marie-Tooth disease, type 4B3', 'Dystonia 16', 'Cerebral palsy, ataxic, autosomal recessive', 'Optic atrophy, hearing loss, and peripheral neuropathy, autosomaldominant', 'Charcot-Marie-Tooth disease, axonal, type 2B2', 'Epilepsy, childhood absence, susceptibility to, 1', 'Colorectal cancer, hereditary nonpolyposis, type 8', 'Ciliary dyskinesia, primary, 41', 'Hypogonadism-Cataract syndrome', 'Febrile seizures, familial, 4', 'Febrile seizures, familial, 5', 'Short stature, facial dysmorphism, and skeletal anomalies with or without cardiac anomalies', 'Spermatogenic failure 75', 'Retinal dystrophy with or without macular staphyloma', 'Charcot-Marie-Tooth disease, axonal, type 2U', 'Dyssegmental dysplasia, Silverman-Handmaker type', 'Intellectual developmental disorder, autosomal dominant 63, with macrocephaly', 'Schizophrenia 1', 'Retinitis pigmentosa 54', 'Retinitis pigmentosa 20', 'Retinitis pigmentosa 33', 'Retinitis pigmentosa 30', 'Retinitis pigmentosa 49', 'Retinitis pigmentosa 81', 'Retinitis pigmentosa 40', 'Optic atrophy with negative electroretinograms', 'Acromesomelic dysplasia, Maroteaux type', 'Schuurs-Hoeijmakers syndrome', 'Dystonia 12', 'Parkinsonism-Dystonia, infantile, 2', 'Palmoplantar carcinoma, multiple self-healing', 'Kahrizi syndrome', 'Spinocerebellar ataxia 38', 'Seizures, benign familial neonatal, 1', 'Split-Hand with congenital nystagmus, fundal changes, and cataracts', 'Intellectual developmental disorder with short stature and behavioral abnormalities', 'Spastic paraplegia 24, autosomal recessive', 'Mast syndrome', 'Hyperekplexia 4', 'Ectodermal dysplasia-syndactyly syndrome 2', 'Shaheen syndrome', 'Cornelia de Lange syndrome 4', 'Schizophrenia 10', 'Spastic paraplegia 42, autosomal dominant', 'Intellectual developmental disorder, autosomal recessive 69', 'Epilepsy idiopathic generalized, susceptibility to, 8', 'Multiple endocrine neoplasia, type IV', 'Cerebellar ataxia, deafness, and narcolepsy, autosomal dominant', 'Tukel syndrome', 'Pontocerebellar hypoplasia, type 8', 'Neurodegeneration with developmental delay, early respiratory failure, myoclonic seizures, and brain abnormalities', 'Acheiropody', 'Schizophrenia 19', 'Fourth cranial nerve palsy, familial congenital', 'Neurodevelopmental disorder with visual defects and brain anomalies', 'Griscelli syndrome, type 1', 'Polymicrogyria, perisylvian, with cerebellar hypoplasia and arthrogryposis', 'Xeroderma pigmentosum, variant type', 'Microphthalmia, syndromic 6', 'Dystonia 13, torsion', 'Hypogonadotropic hypogonadism 14 with or without anosmia', 'Imagawa-Matsumoto syndrome', 'Developmental and epileptic encephalopathy 65', 'Cerebral arteriopathy, autosomal dominant, with subcortical infarctsand leukoencephalopathy', 'Intellectual developmental disorder, autosomal recessive 3', 'Parkinson disease 18', 'Noonan syndrome 13', 'Axenfeld-Rieger anomaly with partially absent eye muscles, distinctive face, hydrocephaly, and skeletal abnormalities', 'Cortical malformations, occipital', 'Cortical dysplasia, complex, with other brain malformations 2', 'Intellectual disability-hypotonic facies syndrome, X-linked', 'Seckel syndrome 7', 'Neurodevelopmental disorder with microcephaly, hypotonia, and absent language', 'Basal ganglia calcification, idiopathic, 7, autosomal recessive', 'Global developmental delay with or without impaired intellectual development', 'Hyperostosis cranialis interna', 'Neuronopathy, distal hereditary motor, type IX', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 8', 'Retinitis pigmentosa 17', 'Developmental delay, intellectual disability, obesity, and dysmorphic features', 'Cone-Rod dystrophy 17', 'Cone dystrophy 3', 'Parc syndrome', 'Alopecia-Contractures-Dwarfism mental retardation syndrome', 'Microphthalmia/coloboma and skeletal dysplasia syndrome', 'Neurodevelopmental disorder with cerebellar atrophy and with or without seizures', 'Amelogenesis imperfecta, hypomaturation type, iia1', 'Tibial muscular dystrophy, tardive', 'Neuropathy, hereditary sensory, type IE', 'Skeletal defects, genital hypoplasia, and mental retardation', 'Developmental and epileptic encephalopathy 91', 'Spinocerebellar ataxia 42', 'Glycine encephalopathy', 'Deafness, conductive, with ptosis and skeletal anomalies', 'C1q deficiency 3', 'Neurodevelopmental disorder and language delay with or without structural brain abnormalities', 'Weill-Marchesani syndrome 4', 'Arthrogryposis, mental retardation, and seizures', 'Cerebral sclerosis, diffuse, Scholz type', 'Chromosome 17Q12 duplication syndrome', 'Retinitis pigmentosa 14', 'Microphthalmia, isolated, with coloboma 6', 'Neurooculorenal syndrome', 'Episodic kinesigenic dyskinesia 1', 'Spastic paraplegia 63, autosomal recessive', 'Epidermolysis bullosa, junctional, with pyloric atresia', 'Encephalopathy, familial, with neuroserpin inclusion bodies', 'Cleft palate, proliferative retinopathy, and developmental delay', 'Cone-rod dystrophy 15', 'WAGRO syndrome', 'Mental retardation, autosomal dominant 39', 'Leber congenital amaurosis 6', 'Charcot-Marie-Tooth disease, demyelinating, type 1D', 'Bardet-Biedl syndrome 16', 'Coloboma, ocular, with or without hearing impairment, cleft lip/palate, and/or mental retardation', 'Fibular aplasia or hypoplasia, femoral bowing and poly-, syn-, and oligodactyly', 'Spastic paraplegia 33, autosomal dominant', 'Spinocerebellar ataxia 7', 'Neurodevelopmental disorder with dysmorphic facies and distal skeletal anomalies', 'Ciliary dyskinesia, primary, 18', 'Erythrokeratodermia variabilis et progressiva 3', 'Tetraamelia syndrome 2', 'Spinocerebellar ataxia, autosomal recessive 27', 'Seizures, benign familial infantile, 1', 'Mental retardation, X-linked, syndromic, Bain type', 'Usher syndrome, type IF', 'Macular degeneration, age-related, 13', '46,xy sex reversal 4', 'Huntington disease', 'Arboleda-Tham syndrome', 'Neurooculocardiogenitourinary syndrome', 'Ichthyosis, congenital, autosomal recessive 13', 'Brachymorphism-Onychodysplasia-Dysphalangism syndrome', 'Epiphyseal dysplasia, multiple, with myopia and conductive deafness', 'Charcot-Marie-Tooth disease, axonal, type 2B', 'Premature ovarian failure 9', 'Hartnup disorder', 'Ciliary dyskinesia, primary, 45', 'Mental retardation syndrome, Mietens-Weber type', 'Spastic paraplegia, sensorineural deafness, mental retardation, and', 'Systemic lupus erythematosus 16', 'Microphthalmia, syndromic 11', 'Multiple mitochondrial dysfunctions syndrome 4', 'Facial clefting, oblique, 1', 'Brachydactyly, type A1', 'Polydactyly, postaxial, type A6', 'Luscan-Lumish syndrome', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 5', 'Hypertelorism, microtia, facial clefting syndrome', 'Cardioacrofacial dysplasia 1', 'Cortical dysplasia, complex, with other brain malformations 5', 'Ritscher-Schinzel syndrome 3', 'Rett syndrome', 'Pterygia, mental retardation, and distinctive craniofacial features', 'Proliferative vasculopathy and hydranencephaly-hydrocephaly syndrome', 'Papillorenal syndrome', 'Epidermolysis bullosa, junctional 6, with pyloric atresia', 'Temtamy syndrome', 'Spondyloepiphyseal dysplasia congenita', 'Epileptic encephalopathy, early infantile, 71', 'Intellectual developmental disorder, autosomal dominant 23', 'Spinocerebellar ataxia 46', 'Spastic paraplegia 89, autosomal recessive', 'Poirier-Bienvenu neurodevelopmental syndrome', 'Wilms tumor, aniridia, genitourinary anomalies, and mental retardationsyndrome', 'CDAGS syndrome', 'Axenfeld-rieger syndrome, type 2', 'Spondylometaepiphyseal dysplasia, short Limb-Hand type', 'Epilepsy, familial adult myoclonic, 5', 'Omodysplasia 1', 'Jackson-Weiss syndrome', 'Treacher Collins syndrome 3', 'Spinocerebellar ataxia with rigidity and peripheral neuropathy', 'Craniosynostosis 2', 'Chromosome 11P13 deletion syndrome, distal', 'Acromesomelic dysplasia, Hunter-Thompson type', 'Rippling muscle disease 1', 'Klippel-Feil syndrome 1, autosomal dominant', 'Mental retardation, microcephaly, growth retardation, joint contractures,and facial dysmorphism', 'Weyers acrofacial dysostosis', 'Absent eyebrows and eyelashes with mental retardation', 'Peripheral neuropathy, autosomal recessive, with or without impaired intellectual development', 'Charcot-marie-tooth disease, recessive intermediate B', 'Holoprosencephaly 4', 'Congenital disorder of glycosylation, type Iw, autosomal dominant', 'Trichothiodystrophy 2, photosensitive', 'Kyphomelic dysplasia', 'Spinocerebellar ataxia, autosomal recessive 12', 'Neurodevelopmental disorder with microcephaly, cortical malformations, and spasticity', 'Pontocerebellar hypoplasia, type 12', 'Huriez syndrome', 'Trichodental dysplasia', 'Parkinson disease 17', 'Solitary median maxillary central incisor', 'Charcot-Marie-Tooth disease, dominant intermediate G', 'Joubert syndrome 31', 'Iridogoniodysgenesis, type 2', 'Ophthalmoplegia totalis with ptosis and miosis', 'Microphthalmia with hyperopia, retinal degeneration, macrophakia,and dental anomalies', 'Waardenburg syndrome, type IIB', 'Hypermanganesemia with dystonia 2', 'Ophthalmoplegia, familial total, with iris transillumination', 'Newfoundland rod-cone dystrophy', 'Infantile cataract, skin abnormalities, glutamate excess, and impaired intellectual development', 'Intellectual developmental disorder with or without epilepsy or cerebellar ataxia', 'Duane retraction syndrome 3 with or without deafness', 'Cone-Rod dystrophy 8', 'Stickler sydrome, type I, nonsyndromic ocular', 'Usher syndrome, type IID', 'Epidermolysis bullosa simplex 4, localized or generalized intermediate, autosomal recessive', 'Cone-rod dystrophy 7', 'Tooth agenesis, selective, 8', 'Hypertelorism, preauricular sinus, punctal pits, and deafness', 'Retinitis pigmentosa 28', 'Night blindness, congenital stationary, type 1G', 'Corneal dystrophy, lattice type IIIA', 'Macular dystrophy, retinal, 3', 'Stargardt disease 3', 'Senior-Loken syndrome 6', 'Microphthalmia, isolated, with cataract 1', 'Bestrophinopathy, autosomal recessive', 'Corneal dystrophy, Avellino type', 'Deafness, autosomal dominant 86', 'Epidermolysis bullosa, junctional 3A, intermediate', 'Branchiootorenal syndrome 2', 'Pterygium colli, isolated', 'Dowling-Degos disease 4', 'Glaucoma, primary closed-angle', 'Bart-Pumphrey syndrome', 'Albinism, oculocutaneous, type III', 'Pachyonychia congenita, type 1', 'Groenouw type I corneal dystrophy', 'Retinitis pigmentosa 96, autosomal dominant', 'Deafness, autosomal recessive 37', 'Anterior segment dysgenesis 6, multiple subtypes', 'Retinal dystrophy and iris coloboma with or without congenital cataract', 'Ovarian dysgenesis 6', 'Deafness, autosomal dominant 64', 'Deafness, autosomal dominant 33', 'Retinitis pigmentosa inversa with deafness', 'Ectodermal dysplasia 6, Hair/nail type', 'Cataract 49', 'Hypotrichosis 11', 'Epidermolysis bullosa simplex, Weber-Cockayne type', 'Hypogonadism, malehypogonadism and testicular atrophy, included', 'Macular dystrophy, patterned, 3', 'Night blindness, congenital stationary, autosomal dominant 1', 'Uncombable hair syndrome 3', 'Trichothiodystrophy 7, nonphotosensitive', 'Palmoplantar keratoderma, punctate type IA', 'Cataract, lamellar', 'Hypothyroidism, congenital, nongoitrous, 1', 'Myopia 5', 'Thyroid hormonogenesis, genetic defect in, 2A', 'Cataract, congenital zonular, with sutural opacities', 'Deafness, autosomal recessive 4, with enlarged vestibular aqueduct', 'Deafness, autosomal recessive 32, with or without immotile sperm', 'Thyroid cancer, nonmedullary, 4', 'Retinitis pigmentosa 87 with choroidal involvement', 'Cataract 1, multiple types', 'Aplasia of lacrimal and salivary glands', 'Lower urinary tract obstruction, congenital', 'Deafness, autosomal dominant 84', 'Basal laminar drusen', 'Nephrotic syndrome, type 26', 'Deafness, autosomal dominant 80', 'Cataract 20, multiple types', 'Spermatogenic failure 10', 'Adrenal hypoplasia, congenital, with absent pituitary luteinizinghormone', 'Spermatogenic failure 81', 'Spermatogenic failure 47', 'Spermatogenic failure 41', 'Spermatogenic failure 45', 'Spermatogenic failure 43', 'Spermatogenic failure 48', 'Spermatogenic failure 78', 'Spermatogenic failure 70', 'Spermatogenic failure 64', 'Spermatogenic failure 79', 'Oocyte maturation defect 10', 'Spermatogenic failure 7', 'Spermatogenic failure 86', 'Spermatogenic failure 63', 'Spermatogenic failure 57', 'Spermatogenic failure 83', 'Spermatogenic failure 20', 'Focal segmental glomerulosclerosis 9', 'Spermatogenic failure 24', 'Jawad syndrome', 'Intellectual developmental disorder, autosomal recessive 78', 'Neurofibromatosis, familial spinal', 'Myasthenic syndrome, congenital, 8', 'Microcephalic primordial dwarfism, Montreal type', 'Robin sequence with cleft mandible and limb anomalies', 'Cortical dysplasia, complex, with other brain malformations 11', 'Spermatogenic failure, X-linked, 4', 'Febrile seizures, familial, 8', 'Premature ovarian failure 2B', 'Leukoencephalopathy, diffuse hereditary, with spheroids', 'Thumb, hypoplastic, with choroid coloboma, poorly developed antihelix,and deafness', 'Spinocerebellar ataxia 18', 'Gilles de la tourette syndrome', 'Parkinson disease 1, autosomal dominant', 'Spinal muscular atrophy, infantile, James type', 'Intellectual developmental disorder, autosomal dominant 69', 'Sabinas brittle hair syndrome', 'Deafness, conductive, with malformed external ear', 'Heimler syndrome 2', 'Short stature, optic nerve atrophy, and pelger-huet anomaly', 'Intellectual developmental disorder, autosomal recessive 63', 'Brachydactyly, type A2', 'Glycine encephalopathy with normal serum glycine', 'Histidinuria due to A renal tubular defect', 'Spongiform encephalopathy with neuropsychiatric features', 'Retinitis pigmentosa-50', 'Van bogaert-hozay syndrome', 'Retinopathy, pericentral pigmentary, dominant', 'Retinitis pigmentosa 46', 'Pick disease of brain', 'Pallister-Hall-like syndrome', 'Ulnar-Mammary syndrome', 'Intellectual developmental disorder, autosomal recessive 46', 'Mental retardation, autosomal dominant 31', '46,xy sex reversal 9', 'Candidiasis, familial, 8', 'Zaki syndrome', 'CEBALID syndrome', 'Spinocerebellar ataxia 4', 'Premature ovarian failure 15', 'Premature ovarian failure 13', 'Mental retardation syndrome, X-linked, Armfield type', 'Neurodevelopmental disorder with language delay and behavioral abnormalities, with or without seizures', 'Neurodevelopmental disorder with dysmorphic facies and skeletal and brain abnormalities', 'Gabriele-De vries syndrome', 'Ciliary dyskinesia, primary, 17', 'Epileptic encephalopathy, early infantile, 63', 'Earlobes, thickened, with conductive deafness from incudostapedialabnormalities', 'Bosch-Boonstra-Schaaf optic atrophy syndrome', 'Nephropathy due to CFHR5 deficiency', 'Spastic paraplegia 8, autosomal dominant', 'Neurodevelopmental disorder with microcephaly, short stature, and speech delay', 'Cortical dysplasia, complex, with other brain malformations 6', 'Pseudotrisomy 13 syndrome', 'Optic atrophy 2', 'Symphalangism, distal, with microdontia, dental pulp stones, and narrowedzygomatic arch', 'Vitreoretinochoroidopathy', 'Developmental delay, hypotonia, musculoskeletal defects, and behavioral abnormalities', 'Generalized epilepsy with febrile seizures plus, type 4', 'Cerebellar ataxia, mental retardation, and dysequilibrium syndrome3', 'Phosphoribosylpyrophosphate synthetase superactivity', 'Neurodevelopmental disorder with short stature, prominent forehead, and feeding difficulties', 'Piebald trait', 'Chromosome 1p35 deletion syndrome', 'Episodic ataxia, type 8', 'Microphthalmia, syndromic 3', 'Mental retardation with optic atrophy, deafness, and seizures', 'Catel-Manzke syndrome', 'Arthrogryposis and ectodermal dysplasia', 'Spinocerebellar ataxia 30', 'Intellectual developmental disorder, autosomal dominant 56', 'Xeroderma pigmentosum, complementation group B', 'Ataxia, sensory, autosomal dominant', 'Stickler syndrome, type III', 'Symphalangism, proximal, 1A', 'Periventricular nodular heterotopia 6', 'Larsen syndrome', 'Cerebellar ataxia, Cayman type', 'Baller-Gerold syndrome', 'Epileptic encephalopathy, early infantile, 45', 'Intellectual developmental disorder with autism and speech delay', 'Dystonia, early-onset, and/or spastic paraplegia', 'Basel-Vanagaite-Smirin-Yosef syndrome', 'Dystonia 25', 'Mental retardation, X-linked 107', 'Ovarian dysgenesis 10', 'Joubert syndrome 20', 'Axenfeld-Rieger syndrome, type 3', 'Alkuraya-Kucinskas syndrome', 'Microcephaly, primary autosomal recessive, 6', 'Vertebral, cardiac, tracheoesophageal, renal, and limb defects', 'Pierre Robin sequence with facial and digital anomalies', 'Hypogonadotropic hypogonadism 5 with or without anosmia', 'Ovarian dysgenesis 9', 'Apert syndrome', 'Joubert syndrome 1', 'Spinocerebellar ataxia 19', 'Hypogonadotropic hypogonadism 13 with or without anosmia', 'Cornelia de Lange syndrome 5', 'Neurodevelopmental disorder with microcephaly and gray sclerae', 'Intellectual developmental disorder, autosomal recessive 2', 'Radial ray hypoplasia with choanal atresia', 'Neuronopathy, distal hereditary motor, type IIB', 'Intellectual developmental disorder, autosomal recessive 65', 'Martsolf syndrome 1', 'Opticocochleodentate degeneration', 'Acid-labile subunit, deficiency of', 'Charcot-Marie-Tooth disease, axonal, type 2W', 'Craniosynostosis 3', 'Chromosome 15q13.3 microdeletion syndrome', 'Microcephaly 7, primary, autosomal recessive', 'Retinitis pigmentosa 11', 'Trigonocephaly 1', 'Renal and mullerian duct hypoplasia', 'Microcephaly 5, primary, autosomal recessive', 'Bradyopsia 2', 'Amaurosis congenita, cone-rod type, with congenital hypertrichosis', 'Cone-rod dystrophy 21', 'Optic atrophy 6', 'Lissencephaly, X-linked, 1', 'Charcot-Marie-Tooth disease, axonal, type 2N', 'Optic atrophy 12', 'Meesmann corneal dystrophy 1', 'Alacrima, congenital', 'Neuropathy, congenital hypomyelinating, 2', 'Fetal akinesia syndrome, X-linked', 'Orofaciodigital syndrome XVI', 'Holoprosencephaly 14', 'Leukoencephalopathy with vanishing white matter 2, with or without ovarian failure', 'Keratoendotheliitis fugax hereditaria', 'Intellectual developmental disorder, autosomal recessive 37', 'Joubert syndrome 36', 'Seizures, benign familial infantile, 3', 'Even-Plus syndrome', 'Neurodevelopmental disorder with ataxic gait, absent speech, and decreased cortical white matter', 'Neurodevelopmental disorder with infantile epileptic spasms', 'Spinocerebellar ataxia 31', 'Baralle-Macken syndrome', 'Alacrima, achalasia, and mental retardation syndrome', 'Cone-Rod dystrophy 10', 'Deafness, autosomal recessive 104', 'Coenzyme Q10 deficiency, primary, 6', 'Adams-Oliver syndrome 3', 'Coffin-Siris syndrome 2', 'Hypogonadotropic hypogonadism 6 with or without anosmia', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 1', 'Charcot-Marie-Tooth disease, demyelinating, type 1G', 'Keratosis pilaris atrophicans', 'Auditory neuropathy, autosomal dominant, 1', 'Ichthyosis, annular epidermolytic 2', 'Myasthenic syndrome, congenital, 2A, slow-channel', 'Hypotrichosis 6', 'Spinal muscular atrophy, distal, autosomal recessive, 6', 'Epilepsy, familial temporal lobe, 8', 'Xeroderma pigmentosum, group C', 'Chorea, benign hereditary', 'Limb-Mammary syndrome', 'Fibrosis of extraocular muscles, congenital, 3A, with or without extraocularinvolvement', 'Syringomyelia, isolated', 'Acrofacial dysostosis, Catania type', 'Craniosynostosis 6', 'Spastic paraplegia, optic atrophy, and neuropathy', 'Craniosynostosis-Mental retardation-clefting syndrome', 'Spastic paraplegia 27, autosomal recessive', 'Mitochondrial complex III deficiency, nuclear type 2', 'Spinal muscular atrophy, lower extremity-predominant, 2, autosomaldominant', 'Optic atrophy 16', 'Intellectual developmental disorder, autosomal recessive 77', 'Spondyloepiphyseal dysplasia-brachydactyly and distinctive speech', 'Achalasia-Addisonianism-Alacrima syndrome', 'Encephalopathy, progressive, with amyotrophy and optic atrophy', 'Developmental delay with dysmorphic facies and dental anomalies', 'Spastic paraplegia 88, autosomal dominant', 'Bare lymphocyte syndrome, type I', 'Epileptic encephalopathy, early infantile, 3', 'Focal segmental glomerulosclerosis and neurodevelopmental syndrome', 'Spinocerebellar ataxia, autosomal recessive 8', 'Genitopatellar syndrome', 'Pontocerebellar hypoplasia, type 1F', 'Ciliary dyskinesia, primary, 29', 'Basal ganglia calcification, idiopathic, 1', 'Premature ovarian failure 17', 'Spermatogenic failure 28', 'Branchiooculofacial syndrome', 'Nephronophthisis 20', 'Otospondylomegaepiphyseal dysplasia', 'Leukodystrophy, hypomyelinating, 25', 'Dystonia 7, torsion', 'Peeling skin syndrome 6', 'Microcephaly, facial dysmorphism, renal agenesis, and ambiguous genitalia syndrome', 'Retinitis pigmentosa, deafness, mental retardation, and hypogonadism', 'Spastic paraplegia 11, autosomal recessive', 'Epidermolysis bullosa simplex with pyloric atresia', 'Warsaw breakage syndrome', 'Spastic paraplegia 56, autosomal recessive', 'Ciliary dyskinesia with defective radial spokes', 'Optic nerve hypoplasia', 'Burn-Mckeown syndrome', 'Structural brain anomalies with impaired intellectual development and craniosynostosis', 'Glass syndrome', 'Hypogonadotropic hypogonadism 10 with or without anosmia', 'Cardiofaciocutaneous syndrome 2', 'Congenital disorder of deglycosylation 2', 'Intellectual developmental disorder, autosomal dominant 6, with or without seizures', 'Ciliary dyskinesia, primary, 47, and lissencephaly', 'Coloboma of macula and skeletal anomalies', 'Myasthenic syndrome, congenital, 13, with tubular aggregates', 'Birdshot chorioretinopathy', 'Pulmonary alveolar microlithiasis', 'Xq25 duplication syndrome', 'Global developmental delay with speech and behavioral abnormalities', 'Microcephaly and chorioretinopathy, autosomal recessive, 3', 'Intellectual developmental disorder, X-linked syndromic, Claes-Jensen type', 'Joubert syndrome 22', 'Parkinson disease 20, early-onset', 'Hypotrichosis-Lymphedema-Telangiectasia-Renal defect syndrome', 'Nemaline myopathy 5, Amish type', 'Charcot-Marie-Tooth disease, axonal, type 2Q', 'Spastic paraplegia 73, autosomal dominant', 'Ectodermal dysplasia, hypohidrotic, with hypothyroidism and ciliarydyskinesia', 'Macular degeneration, age-related, 3', 'Usmani-Riazuddin syndrome, autosomal recessive', 'Intellectual developmental disorder, autosomal dominant 13', 'Spastic paraplegia 62, autosomal recessive', 'Pontocerebellar hypoplasia, type 2D', 'Coloboma, ocular', 'Brunet-Wagner neurodevelopmental syndrome', 'Ciliary dyskinesia, primary, 3, with or without situs inversus', 'Chondrodysplasia with joint dislocations, Gpapp type', 'Epileptic encephalopathy, early infantile, 7', 'Ciliary dyskinesia, primary, 50', 'Acromesomelic dysplasia 2A', 'Bardet-Biedl syndrome 17', 'Neuropathy, congenital, with arthrogryposis multiplex', 'Epileptic encephalopathy, early infantile, 79', 'Melanoma, cutaneous malignant', 'Albinism-Deafness syndrome', 'Developmental and epileptic encephalopathy 12', 'Facial paresis, hereditary congenital, 3', 'Intellectual developmental disorder, autosomal dominant 53', 'Visual impairment and progressive phthisis bulbi', 'Developmental and epileptic encephalopathy 106', 'Microcoria, congenital', 'Aniridia 3', 'Cataract 42', 'Sorsby fundus dystrophy', 'Nizon-Isidor syndrome', 'Dystonia 9', 'Hypotrichosis 3', 'DERMOODONTODYSPLASIA', 'Night blindness, congenital stationary, type 1E', 'Surfactant metabolism dysfunction, pulmonary, 5', 'Chorioretinal atrophy, progressive bifocal', 'Macular dystrophy, vitelliform, 2', 'Ring dermoid of cornea', 'Nystagmus 2, congenital, autosomal dominant', 'Retinitis pigmentosa 47', 'Anterior segment dysgenesis 1', 'Retinitis pigmentosa 45', 'Macular dystrophy, vitelliform, 1', 'Hypomyelination with brainstem and spinal cord involvement and legspasticity', 'Leber congenital amaurosis-3 (LCA3)/Retinitis pigmentosa, juvenile, autosomal recessive', 'Nanophthalmos 4', 'Microtia with meatal atresia and conductive deafness', 'Palmoplantar keratoderma, nonepidermolytic, focal 1', 'Otosclerosis 7', 'Macular dystrophy, retinal, 4', 'Basaloid follicular hamartoma syndrome, generalized, autosomal dominant', 'Corneal dystrophy, posterior amorphous', 'Vohwinkel syndrome', 'Hypotrichosis, congenital, with juvenile macular dystrophy', 'Exudative vitreoretinopathy 3', 'Nystagmus 1, congenital, X-linked', 'Microcornea, rod-cone dystrophy, cataract, and posterior staphyloma 1', 'Renal hypodysplasia/aplasia 2', 'Macular dystrophy, retinal, 1, north Carolina type', 'Snowflake vitreoretinal degeneration', 'Woolly hair, autosomal recessive 3', 'Neurodevelopmental disorder with or without anomalies of the brain, eye, or heart', 'Corneal endothelial dystrophy and perceptive deafness', 'Deafness, autosomal dominant 82', 'Microphthalmia, isolated, with coloboma 10', 'Hypotrichosis 14', 'Mitochondrial complex I deficiency, nuclear type 12', 'Vohwinkel syndrome, variant form', 'Renal dysplasia, cystic, susceptibility to', 'Macular dystrophy, vitelliform, 4', 'Branchiootic syndrome 3', 'Menke-Hennekam syndrome 2', 'Xeroderma pigmentosum, complementation group D', 'Alopecia universalis congenita', 'van der Woude syndrome 1', 'Premature ovarian failure 5', 'Spermatogenic failure 30', 'Nephrotic syndrome, type 24', 'Spermatogenic failure 40', 'Spermatogenic failure, X-linked, 7', 'Spermatogenic failure 19', 'Spermatogenic failure 82', 'Spermatogenic failure 49', 'Spermatogenic failure 85', 'Spermatogenic failure 25', 'Spermatogenic failure 35', 'Cardioacrofacial dysplasia 2', 'Linear skin defects with multiple congenital anomalies 3', 'Segawa syndrome, autosomal recessive', 'Retinitis pigmentosa 75', 'Retinitis pigmentosa 84', 'Retinitis pigmentosa 95', 'Cone-Rod dystrophy 1', 'Facial dysmorphism, hypertrichosis, epilepsy, intellectual/developmental delay, and gingival overgrowth syndrome', 'Rudiger syndrome', 'Intellectual developmental disorder with speech delay, autism, and dysmorphic facies', 'Hair defect with photosensitivity and mental retardation', 'Intellectual developmental disorder, autosomal recessive 13', 'Intellectual developmental disorder with epilepsy, behavioral abnormalities, and coarse facies', 'Chromosome 15q11.2 deletion syndrome', 'Dentin dysplasia, type I, with microdontia and misshapen teeth', 'Multinucleated neurons, anhydramnios, renal dysplasia, cerebellar hypoplasia, and hydranencephaly', 'Neu-Laxova syndrome 1', 'Intellectual developmental disorder, autosomal dominant 40', 'Spinocerebellar ataxia, autosomal recessive 6', 'Epilepsy, juvenile myoclonic, susceptibility to, 10', 'Leukodystrophy, hypomyelinating, 5', 'Chromosome 19p13.13 deletion syndrome', 'Ciliary dyskinesia, primary, 13', 'Myopathy, congenital, with fiber-type disproportion, X-linked', 'Epileptic encephalopathy, early infantile, 34', 'Moebius syndrome', 'Spinocerebellar ataxia 36', 'Premature ovarian failure 21', 'Short stature, oligodontia, dysmorphic facies, and motor delay', 'Otoonychoperoneal syndrome', 'Charcot-Marie-Tooth disease and deafness', 'Retinitis pigmentosa 80', 'Bifid nose with or without anorectal and renal anomalies', 'Craniofacial dysmorphism, skeletal anomalies, and impaired intellectual development 1', 'Myoclonic-atonic epilepsy', 'Siddiqi syndrome', 'Epilepsy, nocturnal frontal lobe, 5', 'Mental retardation with spastic paraplegia and palmoplantar hyperkeratosis', 'Alternating hemiplegia of childhood 1', 'Developmental delay and seizures with or without movement abnormalities', 'Nephrosis with deafness and urinary tract and digital malformations', 'Epilepsy, progressive myoclonic 7', 'Retinitis pigmentosa 13', 'Myopathy, congenital, progressive, with scoliosis', 'Narcolepsy 1', 'Spastic paraplegia 61, autosomal recessive', 'Epileptic encephalopathy, early infantile, 54', 'Mitochondrial complex IV deficiency, nuclear type 8', 'Macrocephaly/megalencephaly syndrome, autosomal recessive', 'Hepatocellular carcinoma', 'Retinitis pigmentosa 27', 'Macdermot-Winter syndrome', 'Usher syndrome, type IIIB', 'Short-Rib thoracic dysplasia 13 with or without polydactyly', 'Dystonia 27', 'Desbuquois dysplasia 2', 'Klippel-Feil syndrome 4, autosomal recessive, with myopathy and facial dysmorphism', 'Erythrokeratodermia variabilis et progressiva 5', 'Desanto-Shinawi syndrome', 'Postaxial acrofacial dysostosis', 'Lissencephaly 5', 'Cowden syndrome 1', 'Spinocerebellar ataxia, autosomal recessive 7', 'Spinal muscular atrophy, X-linked 2', 'Supranuclear palsy, progressive, 1', 'Spinocerebellar ataxia, autosomal recessive 24', 'Neurodevelopmental disorder with regression, abnormal movements, loss of speech, and seizures', 'Ehlers-Danlos syndrome, musculocontractural type, 2', 'Acromicric dysplasia', 'Witteveen-Kolk syndrome', 'Spinocerebellar ataxia 35', 'Spermatogenic failure 14', 'Developmental delay, impaired speech, and behavioral abnormalities', 'Robinow syndrome, autosomal dominant 3', 'Brachydactyly, type A1, D', 'Microphthalmia, syndromic 13', 'Cortical dysplasia, complex, with other brain malformations 1', 'Retinal dystrophy, juvenile cataracts, and short stature syndrome', 'Alopecia, neurologic defects, and endocrinopathy syndrome', 'Ceroid lipofuscinosis, neuronal, 10', 'Spastic paraplegia 84, autosomal recessive', 'Leukodystrophy, hypomyelinating, 8, with or without oligodontia and/or hypogonadotropic hypogonadism', 'Gaze palsy, familial horizontal, with progressive scoliosis, 2', 'Convulsions, familial infantile, with paroxysmal choreoathetosis', 'Tremor, hereditary essential, 5', 'Neurodevelopmental disorder with severe motor impairment, absent language, cerebral hypomyelination, and brain atrophy', 'Oligodontia-colorectal cancer syndrome', 'Epilepsy, progressive myoclonic, 11', 'NESCAV syndrome', 'Corneal dystrophy, gelatinous drop-like', 'Retinitis pigmentosa 32', 'Retinitis pigmentosa 25', 'Spastic paraplegia 77, autosomal recessive', 'Intellectual developmental disorder, autosomal recessive 74', 'Migraine, familial hemiplegic, 3', 'Cone-Rod synaptic disorder, congenital nonprogressive', 'Cone-rod dystrophy 13', 'Albinism, oculocutaneous, type IB', 'Retinal cone dystrophy 1', 'Albinism, oculocutaneous, type VI', 'Night blindness, congenital stationary, type 1H', 'Retinal cone dystrophy 4', 'Cone-Rod dystrophy 11', 'Ectodermal dysplasia with mental retardation and syndactyly', 'Epithelial recurrent erosion dystrophy', 'Craniofacial microsomia 2', 'Spastic paraplegia 53, autosomal recessive', 'Neuropathy, hereditary sensory and autonomic, type IA', 'Crouzon syndrome', 'Immunoglobulin A deficiency 2', 'Craniofacial abnormalities, cataracts, congenital heart disease, sacralneural tube defects, and growth and developmental retardation', 'Epilepsy, idiopathic generalized, susceptibility to, 14', 'Intellectual developmental disorder with short stature, facial anomalies, and speech defects', 'Kindler syndrome', 'Ovarian dysgenesis 2', 'Osteogenesis imperfecta, type XX', 'Heimler syndrome 1', 'Striatal degeneration, autosomal dominant', 'Intellectual developmental disorder, autosomal recessive 6', 'Brittle cornea syndrome', 'Epileptic encephalopathy, early infantile, 11', 'Spinocerebellar ataxia 27B, late-onset', 'Microcephaly 4, primary, autosomal recessive', 'Epilepsy, progressive myoclonic, 9', 'Hypogonadotropic hypogonadism 24 without anosmia', 'Epidermolysis bullosa simplex, autosomal recessive 2', 'De Sanctis-Cacchione syndrome', 'Baraitser-Winter syndrome 2', 'Optic atrophy 3, autosomal dominant', 'Sclerosteosis 1', 'Ichthyosis, congenital, autosomal recessive 10', 'Mental retardation, autosomal recessive 66', 'Ciliary dyskinesia, primary, 46', 'Steel syndrome', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 8', 'Stickler syndrome, type I', 'Spastic ataxia 7, autosomal dominant', 'Stickler syndrome, type V', 'Anencephaly 2', 'Leukoencephalopathy, hereditary diffuse, with spheroids 2', 'Premature ovarian failure 10', 'Premature ovarian failure 8', 'Developmental delay with short stature, dysmorphic features, and sparse hair', 'Culler-Jones syndrome', 'Craniometaphyseal dysplasia, autosomal recessive', 'Hypogonadotropic hypogonadism 25 with anosmia', 'Wernicke-Korsakoff syndrome', 'Nephropathy with pretibial epidermolysis bullosa and deafness', 'Spinocerebellar ataxia, autosomal recessive 28', 'Macrocephaly, dysmorphic facies, and psychomotor retardation', 'Joubert syndrome 15', 'Parkinson disease 23, autosomal recessive early-onset', 'Intellectual developmental disorder with cardiac defects and dysmorphic facies', 'Parkinson disease 25, autosomal recessive early-onset, with impaired intellectual development', 'Joubert syndrome 27', 'Mandibulofacial dysostosis with ptosis, autosomal dominant', 'Ichthyosis, follicular, with atrichia and photophobia syndrome 2', 'Generalized epilepsy with febrile seizures plus, type 2', 'Hypertryptophanemia', 'Leukoencephalopathy with vanishing white matter 4, with or without ovarian failure', 'Muir-Torre syndrome', 'Familial adenomatous polyposis 4', 'Ataxia-telangiectasia-like disorder 1', 'Manitoba oculotrichoanal syndrome', 'Chromosome 13q14 deletion syndrome', 'Neurodevelopmental disorder with intention tremor, pyramidal signs, dyspraxia, and ocular anomalies', 'Acrocallosal syndrome', 'Spastic paraplegia 76, autosomal recessive', 'Cone-Rod dystrophy 16', 'Mental retardation, autosomal dominant 2', 'Pilarowski-Bjornsson syndrome', 'Dystonia 24', 'Arthrogryposis, distal, type 2B', 'Char syndrome', 'Hereditary motor and sensory neuropathy V', 'Chitayat syndrome', 'Cerebellar ataxia, areflexia, pes cavus, optic atrophy, and sensorineural hearing loss', 'Focal facial dermal dysplasia 3, Setleis type', 'Deafness, dystonia, and cerebral hypomyelination', 'Mental retardation, X-linked, syndromic, Houge type', 'Epilepsy, nocturnal frontal lobe, 4', 'Neurodevelopmental disorder with impaired speech and hyperkinetic movements', 'Spondylocarpotarsal synostosis syndrome', 'Intellectual developmental disorder, autosomal dominant 58', 'Microcephaly, seizures, spasticity, and brain calcifications', 'Hypomagnesemia 5, renal, with or without ocular involvement', 'Mental retardation, X-linked 90', 'Congenital anomalies of kidney and urinary tract, susceptibility to', 'Robinow-Sorauf syndrome', 'Retinitis pigmentosa 19', 'Retinitis pigmentosa 43', 'Retinitis pigmentosa 70', 'Retinitis pigmentosa 62', 'Retinitis pigmentosa 58', 'Ellis-Van creveld syndrome', 'Craniosynostosis 4', 'Parkinson disease 8, autosomal dominant', 'Popliteal pterygium syndrome, Bartsocas-Papas type 2', 'Charcot-Marie-Tooth disease, demyelinating, type 1J', 'Meckel syndrome 12', 'Ectodermal dysplasia with adrenal cyst', 'Ciliary dyskinesia, primary, 23', 'Spinocerebellar ataxia 26', 'Hypotrichosis 13', 'Neuronopathy, distal hereditary motor, type VIIA', 'Night blindness, congenital stationary (complete), 1C, autosomal recessive', 'Leber congenital amaurosis 5', 'Duane retraction syndrome 1', 'Night blindness, congenital stationary, type 1B', 'Epidermolysis bullosa, junctional 3B, severe', 'Epidermolysis bullosa simplex with nail dystrophy', 'Exudative vitreoretinopathy 5', 'Epidermolysis bullosa with congenital localized absence of skin anddeformity of nails', 'Blepharocheilodontic syndrome 1', 'Retinitis pigmentosa 68', 'Auditory neuropathy and optic atrophy', 'Albinism, oculocutaneous, type IV', 'Night blindness, congenital stationary, type 2A', 'Epidermolysis bullosa simplex 1B, generalized intermediate', 'Retinitis pigmentosa 92', 'Woolly hair-skin fragility syndrome', 'Microphthalmia, isolated 6', 'Nail disorder, nonsyndromic congenital, 1', 'Cataract 48', 'Ectopia lentis et pupillae', 'Exudative vitreoretinopathy 7', 'Epidermolysis bullosa, junctional 2B, severe', 'Renal hypodysplasia/aplasia 4', 'Hypogonadotropic hypogonadism 11 with or without anosmia', 'Bamforth-Lazarus syndrome', 'Macular dystrophy, retinal, 2', 'Retinitis pigmentosa 93', 'Aniridia 2', 'Marie unna hereditary hypotrichosis 1', 'Corneal dystrophy, epithelial basement membrane', 'Macular dystrophy, butterfly-shaped pigmentary, 2', 'Spinocerebellar ataxia, autosomal recessive 22', 'Perrault syndrome 6', 'Spermatogenic failure 15', 'Van der woude syndrome 2', 'Ophthalmoplegia, external, and myopia', 'Brachydactyly, type B2', 'Nephrotic syndrome, type 4', 'Deafness, autosomal dominant 21', 'Spermatogenic failure 42', 'Ciliary dyskinesia, primary, 21', 'Spermatogenic failure 80', 'Spermatogenic failure 76', 'Spermatogenic failure 58', 'Spermatogenic failure 46', 'Spermatogenic failure 18', 'Spermatogenic failure 37', 'Spermatogenic failure 33', 'Spermatogenic failure 27', 'Microphthalmia, syndromic 2', 'Hypotrichosis and recurrent skin vesicles', 'Vertebral hypersegmentation and orofacial anomalies', 'Myoclonus, familial cortical', 'Arthrogryposis multiplex congenita 6', 'Ceroid lipofuscinosis, neuronal, 11', 'Buratti-Harel syndrome', 'Keratoderma-ichthyosis-deafness syndrome, autosomal recessive', 'Lissencephaly 3', 'Spastic paraplegia 23', 'Microphthalmia, isolated, with coloboma 5', 'Ataxia, posterior column, with retinitis pigmentosa', 'Acrofacial dysostosis 1, Nager type', 'Ermine phenotype', 'Spinocerebellar ataxia, autosomal recessive 25', 'Acromesomelic dysplasia, Demirhan type', 'Congenital anomalies of kidney and urinary tract syndrome with or without hearing loss, abnormal ears, or developmental delay', 'Spastic paraplegia 15, autosomal recessive', 'Neuropathy, hereditary motor, with myopathic features', 'Peroxisomal fatty acyl-CoA reductase 1 disorder', 'Amelogenesis imperfecta, type IG (enamel-renal syndrome)', 'Joubert syndrome 26', '46,XX sex reversal with dysgenesis of kidneys, adrenals, and lungs', 'Charcot-Marie-Tooth disease, axonal, type 2F', 'Myasthenic syndrome, congenital, 16', 'Leukoencephalopathy, motor delay, spasticity, and dysarthria syndrome', 'Epileptic encephalopathy, early infantile, 60', 'GM2-gangliosidosis, AB variant', 'Spastic paraplegia 9B, autosomal recessive', 'Leukoencephalopathy, cystic, without megalencephaly', 'Kohlschutter-Tonz syndrome', 'Phosphoribosylaminoimidazole carboxylase deficiency', 'Pontocerebellar hypoplasia, type 1E', 'Chromosome 15q11-q13 duplication syndrome', 'Spinal muscular atrophy, distal, autosomal recessive, 5', 'Neurodevelopmental disorder with microcephaly, impaired language, and gait abnormalities, autosomal recessive', 'Epilepsy, familial adult myoclonic, 4', 'Neuronopathy, distal hereditary motor, type VB', 'Craniofacial-deafness-hand syndrome', 'Clubfoot, congenital, with or without deficiency of long bones and/or mirror-image polydactyly', 'Ciliary dyskinesia, primary, 24', 'Auriculocondylar syndrome 3', 'Creutzfeldt-Jakob disease', 'Anterior segment dysgenesis 3', 'Generalized epilepsy with febrile seizures plus, type 9', 'Gaze palsy, familial horizontal, with progressive scoliosis, 1', 'Retinitis pigmentosa 79', 'Polymicrogyria, bilateral temporooccipital', 'Mental retardation, X-linked, syndromic, 35', 'Epilepsy, progressive myoclonic, 12', 'Orofaciodigital syndrome XVIII', 'Ciliary dyskinesia, primary, 11', 'Orofaciodigital syndrome III', 'Branchiogenic-deafness syndrome', 'Epilepsy, progressive myoclonic 1A (Unverricht and Lundborg)', 'Arthrogryposis, distal, type 1A', 'Mental retardation, autosomal dominant 41', 'Hypertelorism and other facial dysmorphism, brachydactyly, genital abnormalities, mental retardation, and recurrent inflammatory episodes', 'Neurodevelopmental disorder with seizures and brain atrophy', 'Basal ganglia calcification, idiopathic, 6', 'Spastic paraplegia 32, autosomal recessive', 'Epileptic encephalopathy, early infantile, 59', 'Leber congenital amaurosis 7', 'Albinism, ocular, with late-onset sensorineural deafness', 'Cone-Rod dystrophy 5', 'Retinal dystrophy with inner retinal dysfunction and ganglion cell abnormalities', 'Albinism, oculocutaneous, type V', 'Albinism, ocular, type I', 'Charcot-Marie-Tooth disease, demyelinating, type 1H', 'Achromatopsia 7', 'SIMHA syndrome', 'Intellectual developmental disorder and retinitis pigmentosa', 'Spinal muscular atrophy, late-onset, Finkel type', 'Orofaciodigital syndrome I', 'Epilepsy, familial adult myoclonic, 1', 'Ciliary dyskinesia, primary, 2', 'Developmental and epileptic encephalopathy 70', 'Escobar syndrome', 'Neurodevelopmental disorder with cerebellar atrophy and motor dysfunction', 'Ciliary dyskinesia, primary, 33', 'Cerebellar ataxia, neuropathy, and vestibular areflexia syndrome', 'Microcephaly-micromelia syndrome', 'Mental retardation, autosomal recessive 58', 'Hyperphenylalaninemia, MILD, non-bh4-deficient', 'Ectodermal dysplasia, ectrodactyly, and macular dystrophy syndrome', 'Lacrimoauriculodentodigital syndrome-2', 'Epidermolysis bullosa dystrophica, autosomal dominant', 'Warburg micro syndrome 4', 'Speech development, delayed, with facial asymmetry, strabismus, andtransverse earlobe crease', 'Basal cell nevus syndrome', 'Microphthalmia, syndromic 5', 'Congenital heart defects, dysmorphic facial features, and intellectual developmental disorder', 'Ciliary dyskinesia, primary, 12', 'Mohr syndrome', 'Danon disease', 'Spinocerebellar ataxia 10', 'Muscle glycogenosis, X-linked', 'Premature ovarian failure 18', 'Mental retardation, autosomal recessive 57', 'Otofaciocervical syndrome 2', 'Joubert syndrome 38', 'Developmental and epileptic encephalopathy 69', 'Ciliary dyskinesia, primary, 27', 'Neurodevelopmental disorder with seizures and gingival overgrowth', 'Epilepsy, familial focal, with variable foci 4', 'Cortical dysplasia, complex, with other brain malformations 10', 'Myoclonic epilepsy, familial infantile', 'Charcot-marie-tooth disease, axonal, type 2O', 'Ectodermal dysplasia with natal teeth, Turnpenny type', 'Ciliary dyskinesia, primary, 28', 'Arthrogryposis, distal, type 3', 'Adenomatous polyposis coli', 'Peroxisome biogenesis disorder 14B', 'Spinocerebellar ataxia, autosomal recessive 29', 'Epidermolysis bullosa, junctional 4, intermediate', 'Spastic paraplegia 86, autosomal recessive', 'Ciliary dyskinesia, primary, 42', 'Tumor predisposition syndrome', 'Spondyloperipheral dysplasia', 'Exudative vitreoretinopathy 1', 'Parkinsonism with polyneuropathy', 'Leopard syndrome 3', 'Charcot-Marie-Tooth disease, axonal, type 2D', 'Blepharophimosis with ptosis, syndactyly, and short stature', 'Spondyloepimetaphyseal dysplasia, Camera-Genevieve type', 'Paroxysmal nonkinesigenic dyskinesia, 3, with or without generalized epilepsy', 'Orofaciodigital syndrome XV', 'Mend syndrome', 'Epileptic encephalopathy, early infantile, 84', 'Spastic paraplegia 37, autosomal dominant', 'Retinitis pigmentosa 12', 'Goldberg-Shprintzen syndrome', 'Spinocerebellar ataxia, autosomal recessive 16', 'Coffin-Siris syndrome 7', 'Leukodystrophy, hypomyelinating, 19, transient infantile', 'Hypotonia, infantile, with psychomotor retardation', 'Epileptic encephalopathy, early infantile, 19', 'Epileptic encephalopathy, early infantile, 32', 'Spinocerebellar ataxia 28', 'Alexander disease', 'Parkinson disease 14, autosomal recessive', 'Tessadori-van Haaften neurodevelopmental syndrome 3', 'Tuberous sclerosis-1', 'Leukodystrophy, hypomyelinating, 6', 'Antley-Bixler syndrome without genital anomalies or disordered steroidogenesis', 'Spastic paraplegia 82, autosomal recessive', 'Intellectual developmental disorder, autosomal recessive 70', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 3', 'Parkinson disease 6, autosomal recessive early-onset', 'Deafness, autosomal dominant 85', 'Palmoplantar keratoderma and congenital alopecia 2', 'Epileptic encephalopathy, early infantile, 25, with amelogenesis imperfecta', 'Spinocerebellar ataxia 11', 'Peeling skin syndrome 4', 'Peripheral cone dystrophy', 'Usher syndrome, type IIIA', 'Night blindness, congenital stationary, type 1F', 'Amyloidosis, primary localized cutaneous, 3', 'Ichthyosis hystrix, Curth-Macklin type', 'Ectodermal dysplasia 9, Hair/nail type', 'Microcornea, myopic chorioretinal atrophy, and telecanthus', 'Retinitis pigmentosa 69', 'Retinitis pigmentosa 97', 'Epidermolysis bullosa simplex 1D, generalized, intermediate or severe, autosomal recessive', 'Retinitis pigmentosa 38', 'Optic atrophy 9', 'Edict syndrome', 'Dermatopathia pigmentosa reticularis', 'Keratosis linearis with ichthyosis congenita and sclerosing keratoderma', 'Yemenite deaf-blind hypopigmentation syndrome', 'Witkop syndrome', 'Deafness, sensorineural, and male infertility', 'Cone-Rod dystrophy 18', 'Cone-Rod dystrophy 19', 'Hyperpigmentation, familial progressive', 'Macular dystrophy, vitelliform, 5', 'Acrokeratosis verruciformis', 'Palmoplantar keratoderma and woolly hair', 'Epidermodysplasia verruciformis, susceptibility to, 3', 'Spermatogenic failure 2', 'Tietz albinism-deafness syndrome', 'Spermatogenic failure 38', 'Usher syndrome, type I', 'Spermatogenic failure 56', 'Spermatogenic failure 39', 'Spermatogenic failure, X-linked, 5', 'Spermatogenic failure 34', 'Spermatogenic failure 72', 'Polymicrogyria, bilateral frontoparietal', 'Robinow syndrome, autosomal recessive 2', 'Epileptic encephalopathy, early infantile, 56', 'Hand-foot-uterus syndrome', 'Teebi-Shaltout syndrome', 'Parkinson disease 7, autosomal recessive early-onset', 'Neuropathy, distal hereditary motor, type VC', 'Microphthalmia, syndromic 8', 'Spinocerebellar ataxia 34', 'Joubert syndrome 14', 'Spermatogenic failure 77', 'Retinal dystrophy with or without extraocular anomalies', 'Basal cell nevus syndrome 2', 'Charcot-Marie-Tooth disease, axonal, type 2FF', 'Spastic paraplegia 13, autosomal dominant', 'Ciliary dyskinesia, primary, 38', 'Ciliary dyskinesia, primary, 49, without situs inversus', 'Autism susceptibility, X-linked 1', 'Corpus callosum, agenesis of, with facial anomalies and Robin sequence', 'Ciliary dyskinesia, primary, 34', 'Ulna and fibula, absence of, with severe limb deficiency', 'Exfoliation syndrome', 'Spinal muscular atrophy, distal, autosomal recessive, 2', 'Neurodevelopmental disorder with poor language and loss of hand skills', 'Developmental and epileptic encephalopathy 57', 'Schilbach-Rott syndrome', 'Leukodystrophy, hypomyelinating, 7, with or without oligodontia and/orhypogonadotropic hypogonadism', 'Developmental and epileptic encephalopathy 108', 'Intellectual developmental disorder 60 with seizures', 'Myopathy, centronuclear, 6, with fiber-type disproportion', 'Intellectual developmental disorder, autosomal dominant 71, with behavioral abnormalities', 'Ciliary dyskinesia, primary, 7', 'Charcot-Marie-Tooth disease, axonal, type 2DD', 'Alternating hemiplegia of childhood 2', 'Cone-rod dystrophy 22', 'Charcot-Marie-Tooth disease, axonal, type 2V', 'Huntington disease-like 1', 'MICROHYDRANENCEPHALY', 'Intellectual developmental disorder, autosomal recessive 48', 'Congenital disorder of glycosylation, type 2V', 'Spastic paraplegia 57, autosomal recessive', 'Alopecia-mental retardation syndrome 4', 'Xeroderma pigmentosum, complementation group A', 'Developmental and epileptic encephalopathy 17', 'Microphthalmia, isolated 5', 'Basal ganglia calcification, idiopathic, 4', 'Weyers ulnar ray/oligodactyly syndrome', 'Cherubism', 'Neuropathy, ataxia, and retinitis pigmentosa', 'Intellectual developmental disorder, autosomal dominant 5', 'Triglyceride storage disease, type I', 'Spinocerebellar ataxia 40', 'Otofaciocervical syndrome', 'Neurodevelopmental disorder with hypotonia and autistic features with or without hyperkinetic movements', 'Laryngoonychocutaneous syndrome', 'MOMO syndrome', 'Robinow syndrome, autosomal dominant 2', 'Joubert syndrome 30', 'Corneal dystrophy, congenital stromal', 'Cone dystrophy 4', 'Cataract 2, multiple types', 'Oculocutaneous albinism, type VIII', 'Prieto syndrome', 'Pontocerebellar hypoplasia, type 2F', 'Spastic paraplegia 36, autosomal dominant', 'Fibrosis of extraocular muscles, congenital, 2', 'Pfeiffer syndrome', 'Congenital hemidysplasia with ichthyosiform erythroderma and limb defects', 'Cortical dysplasia, complex, with other brain malformations 7', 'Myopathy, scapulohumeroperoneal', 'Epidermolysis bullosa simplex, Dowling-Meara type', 'Neuropathy, hereditary sensory, type IIC', 'Epidermolysis bullosa, lethal acantholytic', 'Dystonia 22, juvenile-onset', 'Neurodevelopmental disorder with impaired intellectual development, hypotonia, and ataxia', 'Neurodevelopmental disorder with cardiomyopathy, spasticity, and brain abnormalities', 'Catifa syndrome', 'Epileptic encephalopathy, early infantile, 52', 'Muscular dystrophy, Becker type', 'Neurodevelopmental disorder with or without early-onset generalized epilepsy', 'Malan syndrome', 'Ciliary dyskinesia, primary, 19', 'Acrorenal-Mandibular syndrome', 'Developmental and epileptic encephalopathy 15', 'Spastic paraplegia 19, autosomal dominant', 'Spastic tetraplegia, thin corpus callosum, and progressive microcephaly', 'Developmental and epileptic encephalopathy 14', 'Spinocerebellar ataxia 49', 'Stapes ankylosis with broad thumb and toes', 'Neurodegeneration, childhood-onset, stress-induced, with variable ataxia and seizures', 'Capillary malformation of the lower lip, lymphatic malformation of face and neck, asymmetry of face and limbs, and partial/generalized overgrowth', 'Basal ganglia calcification, idiopathic, 8, autosomal recessive', 'Microphthalmia, isolated 8', 'Spinal muscular atrophy, lower extremity-predominant, 1, autosomal dominant', 'Epilepsy, familial adult myoclonic, 3', 'Neurofacioskeletal syndrome with or without renal agenesis', 'Multiple congenital anomalies-hypotonia-seizures syndrome 1', 'Pituitary hormone deficiency, combined or isolated, 8', 'Mental retardation, autosomal dominant 44', 'Myasthenic syndrome, congenital, 18', 'Frontotemporal lobar degeneration with TDP43 inclusions', 'Retinitis pigmentosa 60', 'Retinitis pigmentosa 41', 'Spinal muscular atrophy, type I', 'Microcephaly and chorioretinopathy, autosomal recessive, 2', 'Saethre-Chotzen syndrome', 'Dyskinesia, seizures, and intellectual developmental disorder', 'Spastic paraplegia 87, autosomal recessive', 'Joubert syndrome 7', 'Myotonia congenita, autosomal dominant', 'Epileptic encephalopathy, early infantile, 24', 'Spastic paraplegia 55, autosomal recessive', 'Spastic ataxia, Charlevoix-Saguenay type', 'Nail-Patella syndrome', 'Cree mental retardation syndrome', 'Stickler syndrome, type IV', 'Charcot-Marie-Tooth disease, axonal, type 2X', 'Neurodevelopmental disorder with spastic quadriplegia and brain abnormalities with or without seizures', 'Neurodevelopmental disorder with microcephaly, seizures, and brain atrophy', 'Dystonia 33', 'Ciliary dyskinesia, primary, 32', 'Mental retardation, autosomal recessive 39', 'Spastic paraplegia 38, autosomal dominant', '46,xx sex reversal 4', 'Renal hypodysplasia/aplasia 3', 'Auriculocondylar syndrome 4', 'Neurodevelopmental disorder with seizures, spasticity, and complete or partial agenesis of the corpus callosum', 'Lichtenstein-Knorr syndrome', 'Fibrosis of extraocular muscles, congenital, 1', 'Neurodevelopmental disorder with severe motor impairment and absent language', 'Spinocerebellar ataxia 12', 'Spastic ataxia 9, autosomal recessive', 'Ciliary dyskinesia, primary, 9, with or without situs inversus', 'Neurodevelopmental disorder with dysmorphic facies and distal limb anomalies', 'Alzahrani-Kuwahara syndrome', 'Autism susceptibility, X-linked 3', 'Retinal degeneration with nanophthalmos, cystic macular degeneration,and angle closure glaucoma', 'Joubert syndrome 24', 'Tooth agenesis, selective, 3', 'Ectodermal dysplasia 14, hair/tooth type with or without hypohidrosis', 'Pelizaeus-Merzbacher disease', 'Cataract 50 with or without glaucoma', 'Woolly hair, autosomal dominant', 'Cornea plana 2', 'Pityriasis rubra pilaris', 'Epidermolysis bullosa simplex 2A, generalized severe', 'Retinal degeneration, late-onset, autosomal dominant', 'Hypertrichosis terminalis, generalized, with or without gingival hyperplasia', 'Myopia, high, with cataract and vitreoretinal degeneration', '46,xy sex reversal 6', '46,xy sex reversal 7', 'Dystonia 6, torsion', 'Spermatogenic failure 54', 'Spermatogenic failure 51', 'Intellectual developmental disorder with dysmorphic facies and behavioral abnormalities', 'Down syndrome', 'Stickler syndrome, type II', 'Corpus callosum, agenesis of, with facial anomalies and cerebellar ataxia', 'Spastic paraplegia 47, autosomal recessive', 'Intellectual developmental disorder, autosomal recessive 44', 'Cleft, median, of upper lip with polyps of facial skin and nasal mucosa', 'Faciodigitogenital syndrome, autosomal recessive', 'Acrofacial dysostosis syndrome of rodriguez', 'Branchial arch abnormalities, choanal atresia, athelia, hearing loss, and hypothyroidism syndrome', \"Epilepsy, rolandic, with paroxysmal exercise-induced dystonia and writer's cramp\", 'Mitochondrial form of axonal Charcot-Marie-Tooth disease-1', 'Orofaciodigital syndrome XIV', '3MC syndrome 2', 'Stickler syndrome, type VI', 'Developmental and epileptic encephalopathy 33', 'Retinitis pigmentosa 72', 'Ceroid lipofuscinosis, neuronal, 7', 'Marden-Walker syndrome', 'Epileptic encephalopathy, early infantile, 43', 'Odontotrichoungual-Digital-Palmar syndrome', 'Deafness, cataract, impaired intellectual development, and polyneuropathy', 'Poretti-Boltshauser syndrome', 'Mental retardation, anterior maxillary protrusion, and strabismus', 'Temtamy preaxial brachydactyly syndrome', 'Melnick-Needles syndrome', 'Spastic paraplegia 81, autosomal recessive', 'Dystonia 11, myoclonic', 'Birt-Hogg-Dube syndrome', 'Epilepsy, idiopathic generalized, susceptibility to, 15', 'Zimmermann-Laband syndrome 3', 'Neuronopathy, distal hereditary motor, type VA', 'Cortical dysplasia, complex, with other brain malformations 9', 'Developmental and epileptic encephalopathy 26', 'Spinocerebellar ataxia, autosomal recessive 14', 'Intellectual developmental disorder, autosomal dominant 30', 'Spondyloepiphyseal dysplasia, sensorineural hearing loss, intellectual developmental disorder, and Leber congenital amaurosis', 'Charcot-Marie-Tooth disease, demyelinating, type 1I', 'Rodrigues blindness', 'Neurodevelopmental disorder with microcephaly, arthrogryposis, and structural brain anomalies', '46XY sex reversal 1', 'Waardenburg syndrome, type 4C', 'Mental retardation, autosomal dominant 1', 'Spastic paraplegia, intellectual disability, nystagmus, and obesity', 'Leukodystrophy, progressive, early childhood-onset', 'Chiari malformation type II', 'Retinal cone dystrophy 3B', 'Cone-rod dystrophy and hearing loss', 'Achromatopsia 3', 'Leber congenital amaurosis with early-onset deafness', 'Senior-Loken syndrome 3', 'Cerebellofaciodental syndrome', 'Carpenter syndrome 2', 'Arthrogryposis, distal, type 5D', 'Trichothiodystrophy 9, nonphotosensitive', 'Spinocerebellar ataxia 20', 'Duchenne muscular dystrophy', 'Spastic ataxia 3, autosomal recessive', 'Frontonasal dysplasia 3', 'Spastic paraplegia 12, autosomal dominant', 'Spinocerebellar ataxia 15', 'Ceroid lipofuscinosis, neuronal, 13', 'Mullerian aplasia and hyperandrogenism', 'Ichthyosis, congenital, autosomal recessive 9', 'Cerebellar dysfunction, impaired intellectual development, and hypogonadotropic hypogonadism', 'Neurodegeneration with brain iron accumulation 6', 'Dentatorubral-pallidoluysian atrophy', 'Myopathy, congenital proximal, with minicore lesions', 'Dystonia 26, myoclonic', 'Spinocerebellar ataxia 17', 'Camptodactyly syndrome, Guadalajara, type III', 'Brown-Vialetto-Van Laere syndrome 1', 'Developmental and epileptic encephalopathy 6B, non-Dravet', 'Hypogonadotropic hypogonadism 12 with or without anosmia', 'Brachycephaly, deafness, cataract, microstomia, and mental retardation', 'Chromosome 16p13.2 deletion syndrome', 'Pontocerebellar hypoplasia, type 7', '46, XY sex reversal 11', 'Coenzyme Q10 deficiency, primary, 9', 'Spinocerebellar ataxia 23', 'Palmoplantar keratoderma with congenital alopecia', 'Mental retardation, autosomal recessive 38', 'Ichthyosis with erythrokeratoderma', 'Neurodevelopmental disorder with microcephaly, seizures, and cortical atrophy', 'Neurodevelopmental disorder with motor and speech delay and behavioral abnormalities', 'Neuronopathy, distal hereditary motor, type IIC', 'Neurodevelopmental disorder with speech delay and variable ocular anomalies', 'Leukoencephalopathy with ataxia', 'Hereditary motor and sensory neuropathy VIA', 'Hemifacial microsomia with radial defects', 'Intellectual developmental disorder with neuropsychiatric features', 'Craniosynostosis and dental anomalies', 'Developmental and epileptic encephalopathy 23', 'Beare-Stevenson cutis gyrata syndrome', 'Orofaciodigital syndrome IX', 'Spinocerebellar ataxia 43', 'Retinitis pigmentosa 10', 'Cone-rod dystrophy 3', 'Donnai-Barrow syndrome', 'Ciliary dyskinesia, primary, 30', 'Neurodevelopmental disorder with hypotonia, dysmorphic facies, and skin abnormalities', 'Spastic paraplegia, ataxia, and mental retardation', 'Intellectual developmental disorder, autosomal recessive 43', 'Rafiq syndrome', 'Mental retardation, autosomal dominant 55, with seizures', 'Sjogren-Larsson syndrome', 'Cerebellar ataxia, mental retardation, and dysequilibrium syndrome2', 'Whistling face syndrome, recessive form', 'Optic atrophy 10 with or without ataxia, mental retardation, and seizures', 'Optic atrophy 7 with or without auditory neuropathy', 'Ichthyosis prematurity syndrome', 'Developmental and epileptic encephalopathy 97', 'Hypogonadotropic hypogonadism 3 with or without anosmia', 'Acrofrontofacionasal dysostosis 2', 'Charcot-Marie-Tooth disease, axonal, type 2E', 'Muenke syndrome', 'Intellectual developmental disorder with ocular anomalies and distinctive facial features', 'Myasthenic syndrome, congenital, 7, presynaptic', 'Indifference to pain, congenital, autosomal recessive', 'Frontonasal dysplasia 1', 'Neurodevelopmental disorder with dysmorphic facies and variable seizures', 'Neurodevelopmental disorder with hypotonia, neonatal respiratory insufficiency, and thermodysregulation', 'Epileptic encephalopathy, early infantile, 74', 'Microcephaly 29, primary, autosomal recessive', 'Beaulieu-Boycott-Innes syndrome', 'Intellectual developmental disorder, autosomal recessive 67', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 4', 'Epilepsy, familial adult myoclonic, 2', 'Spermatogenic failure, X-linked, 6', 'Microcephaly and chorioretinopathy, autosomal recessive, 1', 'Bjornstad syndrome', 'Otodental dysplasia', 'Microcephaly 20, primary, autosomal recessive', 'Ichthyosis, congenital, autosomal recessive 2', 'Epilepsy, progressive myoclonic, 8', 'Ritscher-Schinzel syndrome 4', 'Epileptic encephalopathy, early infantile, 81', 'Snijders Blok-Fisher syndrome', 'Leukoencephalopathy, brain calcifications, and cysts', 'Developmental and epileptic encephalopathy 100', 'Joubert syndrome 4', 'Neurodevelopmental disorder with progressive microcephaly, spasticity, and brain abnormalities', 'Hypotrichosis 1', 'Hypotrichosis 5', 'Branchiootic syndrome 1', 'Monilethrix', 'Retinitis pigmentosa 66', 'Usher syndrome, type IV', 'Epidermolysis bullosa simplex, generalized, with scarring and hair loss', 'Inflammatory poikiloderma with hair abnormalities and acral keratoses', 'Coloboma, ocular, autosomal recessive', 'Bietti crystalline corneoretinal dystrophy', 'Anterior segment dysgenesis 8', 'Ectodermal dysplasia 8, Hair/tooth/nail type', 'Spermatogenic failure 65', 'Spermatogenic failure 84', 'Emery-Dreifuss muscular dystrophy 1, X-linked', 'Cerebellar ataxia and hypogonadotropic hypogonadism', 'Hypogonadotropic hypogonadism 7 without anosmia', 'Intellectual developmental disorder with paroxysmal dyskinesia or seizures', 'Blepharocheilodontic syndrome 2', 'Intellectual developmental disorder with seizures and language delay', 'Neurodevelopmental disorder with hypotonia, dysmorphic facies, and skeletal anomalies, with or without seizures', 'Tessadori-van Haaften neurodevelopmental syndrome 2', 'Scapuloperoneal spinal muscular atrophy', 'Spinocerebellar ataxia, autosomal recessive 18', 'Pitt-Hopkins syndrome', 'Immunoneurologic disorder, X-linked', 'Neuronopathy, distal hereditary motor, type IID', 'Epileptic encephalopathy, early infantile, 61', 'Teebi hypertelorism syndrome 1', 'Cerebellar atrophy, visual impairment, and psychomotor retardation', 'Adrenal hyperplasia, congenital, due to 3-beta-hydroxysteroid dehydrogenase 2 deficiency', 'Coffin-Siris syndrome 9', 'Spastic paraplegia 43, autosomal recessive', 'Ciliary dyskinesia, primary, 15', 'Anonychia-Onychodystrophy with hypoplasia or absence of distal phalanges', 'Spinocerebellar ataxia, autosomal recessive 2', 'Craniofacioskeletal syndrome', 'Elejalde disease', 'Spinocerebellar ataxia, autosomal recessive 15', 'Ectodermal dysplasia 15, Hypohidrotic/hair type', 'Agenesis of corpus callosum, cardiac, ocular, and genital syndrome', 'Ciliary dyskinesia, primary, 26', 'Hydrocephalus, congenital, 2, with or without brain or eye anomalies', 'Retinitis pigmentosa with or without situs inversus', 'Cone-rod dystrophy, X-linked, 1', 'Leber congenital amaurosis 16', 'Charcot-Marie-Tooth disease, X-linked recessive, 5', 'Macular dystrophy, patterned, 1', 'Macular dystrophy, vitelliform, 3', 'Chromosome 9P deletion syndrome', 'Waardenburg syndrome, type 2E', 'PHACE association', 'Cowden syndrome 5', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 3', 'Deafness, congenital, and onychodystrophy, autosomal dominant', 'Neurodevelopmental disorder with language impairment and behavioral abnormalities', 'Epileptic encephalopathy, early infantile, 31', 'Spastic paraplegia 78, autosomal recessive', 'Microspherophakia and/or megalocornea, with ectopia lentis and with or without secondary glaucoma', 'Darier-White disease', 'Spinocerebellar ataxia 47', 'Dystonia 34, myoclonic', 'Basan syndrome', 'Epidermolysis bullosa, junctional, Non-Herlitz type', 'Optic atrophy 5', 'Usmani-Riazuddin syndrome, autosomal dominant', 'Spastic paraplegia 45, autosomal recessive', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 2', 'Spinocerebellar ataxia, autosomal recessive 4', 'Lamb-Shaffer syndrome', 'Intellectual developmental disorder with autism and dysmorphic facies', 'Retinitis pigmentosa 56', 'Chromosome 15q14 deletion syndrome', 'Developmental delay with or without dysmorphic facies and autism', 'Epilepsy, progressive myoclonic, 10', 'Episodic ataxia, type 2', 'Deafness, congenital, with inner ear agenesis, microtia, and microdontia', 'Epileptic encephalopathy, early infantile, 9', 'Spastic paraplegia 10, autosomal dominant', 'Neurodevelopmental-craniofacial syndrome with variable renal and cardiac abnormalities', 'Aarskog-Scott syndrome', 'Pallister-Hall syndrome', 'Leber congenital amaurosis 14', 'Olmsted syndrome 2', 'Developmental and epileptic encephalopathy 99', 'Developmental and epileptic encephalopathy 98', 'Macrocephaly, acquired, with impaired intellectual development', 'Fetal akinesia deformation sequence 4', 'Epileptic encephalopathy, early infantile, 67', 'Leukodystrophy, hypomyelinating, 22', 'Neurodevelopmental disorder with epilepsy and hypoplasia of the corpus callosum', 'Ciliary dyskinesia, primary, 51', 'Intellectual developmental disorder with severe speech and ambulation defects', 'Hallermann-Streiff syndrome', 'Spastic paraplegia 18, autosomal recessive', 'Mental retardation, X-linked, syndromic 14', 'Neurodevelopmental disorder with microcephaly and structural brain anomalies', 'Trigonocephaly with short stature and developmental delay', 'Spastic ataxia 8, autosomal recessive, with hypomyelinating leukodystrophy', 'Neurodevelopmental disorder with microcephaly and speech delay, with or without brain abnormalities', 'Craniofacial anomalies and anterior segment dysgenesis syndrome', 'Mosaic variegated aneuploidy syndrome 7 with inflammation and tumor predisposition', 'Epileptic encephalopathy, early infantile, 6 (Dravet syndrome)', 'Neuropathy, hereditary motor and sensory, type VIC, with optic atrophy', 'Kosaki overgrowth syndrome', 'Epileptic encephalopathy, early infantile, 87', 'Mental retardation, X-linked, syndromic 33', 'Hypotonia, infantile, with psychomotor retardation and characteristic facies 3', 'Cone-rod dystrophy 24', 'Epileptic encephalopathy, early infantile, 37', 'Mental retardation, X-linked, syndromic, Martin-Probst type', 'Congenital anomalies of kidney and urinary tract 3', 'Warburg-Cinotti syndrome', 'Neurodevelopmental disorder with microcephaly, hypotonia, and variable brain anomalies', 'Ichthyosis, cyclic, with epidermolytic hyperkeratosis', 'Chromosome 8q21.11 deletion syndrome', 'Ectodermal dysplasia 11A, hypohidrotic/hair/tooth type, autosomal dominant', 'Ectodermal dysplasia 13, Hair/tooth type', 'Spinocerebellar ataxia 2', 'Ectodermal dysplasia 4, Hair/nail type', 'Macular dystrophy with central cone involvement', 'Keratosis palmoplantaris striata I', 'Pachyonychia congenita 3', 'Palmoplantar keratoderma, Nagashima type', 'Intellectual developmental disorder 59', 'Cataract 21, multiple types', '46,XX sex reversal 2', 'Microcephaly, progressive, with seizures and cerebral and cerebellar atrophy', 'Neurodevelopmental disorder with microcephaly and movement abnormalities', 'Persistent hyperplastic primary vitreous, autosomal recessive', 'Neurodevelopmental disorder, nonprogressive, with spasticity and transient opisthotonus', 'Develomental and epileptic encephalopathy 94', 'Multiple myeloma', 'Leber congenital amaurosis, type II', 'Neurodevelopmental disorder with or without hyperkinetic movements and seizures, autosomal recessive', 'Chromosome 3q13.31 deletion syndrome', 'Cerebellar dysfunction with variable cognitive and behavioral abnormalities', 'Intellectual disability and myopathy syndrome', 'Spinocerebellar ataxia 50', 'Chromosome 17p13.1 deletion syndrome', 'White-Kernohan syndrome', 'Spinocerebellar ataxia 13', 'Blepharophimosis-impaired intellectual development syndrome', 'Acrofrontofacionasal dysostosis 1', 'Adenylosuccinase deficiency', 'Joubert syndrome 28', 'Brachydactyly, type C', 'Retinitis pigmentosa 3', 'Episodic ataxia, type 5', 'Machado-Joseph disease', 'Ichthyosis, congenital, autosomal recessive 6', 'Peroxisome biogenesis disorder 10B', 'Neurodegeneration with brain iron accumulation 2A', 'Myopathy, X-linked, with postural muscle atrophy', 'Mental retardation, autosomal dominant 49', 'Vulto-van Silfout-de Vries syndrome', 'Keratosis follicularis spinulosa decalvans, autosomal dominant', 'Parkinson disease 15, autosomal recessive early-onset', 'Cerebellar atrophy with seizures and variable developmental delay', 'Spastic ataxia 2, autosomal recessive', 'Hypogonadotropic hypogonadism 16 with or without anosmia', 'Spastic ataxia 4, autosomal recessive', 'Lissencephaly 10', 'Axenfeld-Rieger syndrome, type 1', 'Spastic paraplegia 3, autosomal dominant', 'Coffin-Lowry syndrome', 'Myasthenia, limb-girdle, autoimmune', 'Neurodevelopmental disorder with hearing loss and spasticity', 'Cowden syndrome 6', 'Acromelic frontonasal dysostosis', 'Dystonia 30', 'Amyotrophic lateral sclerosis 15 with or without frontotemporal dementia', 'Marbach-Schaaf neurodevelopmental syndrome', 'Richieri-Costa/guion-Almeida syndrome', 'Seckel syndrome 5', 'Congenital anomalies of kidney and urinary tract 2', 'Neurodevelopmental disorder with facial dysmorphism, absent language, and pseudo-Pelger-Huet anomaly', 'Leukoencephalopathy, progressive, with ovarian failure', 'Spinocerebellar ataxia, autosomal recessive 10', 'Developmental and epileptic encephalopathy 93', 'Frontotemporal dementia and/or amytrophic lateral sclerosis 7', 'Nystagmus 4, congenital, autosomal dominant', 'Zimmermann-Laband syndrome 2', 'Zechi-Ceide syndrome', 'Holoprosencephaly 5', 'Chromosome 1q41-q42 deletion syndrome', 'Lissencephaly 6, with microcephaly', 'Ichthyosis, congenital, autosomal recessive 1', 'Trichothiodystrophy 4, nonphotosensitive', 'Neurodevelopmental disorder with microcephaly, impaired language, epilepsy, and gait abnormalities, autosomal dominant', 'Cancer, alopecia, pigment dyscrasia, onychodystrophy, and keratoderma', 'Chilton-Okur-Chung neurodevelopmental syndrome', 'Mesomelia-Synostoses syndrome', 'Mental retardation and distinctive facial features with or without cardiac defects', 'Weaver syndrome', 'Leukodystrophy, hypomyelinating, 2', 'Holoprosencephaly 9', 'Popliteal pterygium syndrome', 'Hypotrichosis 12', 'Bryant-Li-Bhoj neurodevelopmental syndrome 1', 'Wagner vitreoretinopathy', 'Neurodevelopmental disorder with or without variable movement or behavioral abnormalities', 'Cone-Rod dystrophy 20', 'Epidermolysis bullosa simplex with mottled pigmentation', 'Foveal hypoplasia 2', 'Waardenburg syndrome, type 2F', 'Breasts and/or nipples, aplasia or hypoplasia of, 2', 'Cutaneous telangiectasia and cancer syndrome, familial', 'Mental retardation and microcephaly with pontine and cerebellar hypoplasia', 'Pitt-Hopkins like syndrome 1', 'Holoprosencephaly 3', 'Nablus mask-like facial syndrome', 'Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 1', 'Brachyphalangy, polydactyly, and tibial aplasia/hypoplasia', 'Spastic paraplegia 48, autosomal recessive', 'Neurodegeneration with ataxia, dystonia, and gaze palsy, childhood-onset', 'Epileptic encephalopathy, early infantile, 42', 'Neurodevelopmental disorder with behavioral abnormalities, absent speech, and hypotonia', 'Neurodevelopmental disorder with ataxia, hypotonia, and microcephaly', 'Epileptic encephalopathy, early infantile, 4', 'Spastic paraplegia 17', 'Spastic paraplegia 51, autosomal recessive', 'Hypogonadotropic hypogonadism 22 with or without anosmia', 'Kufor-Rakeb syndrome', 'Spastic paraplegia 6, autosomal dominant', 'Cognitive impairment with or without cerebellar ataxia', 'Parkinson disease 19a, juvenile-onset', 'Radio-Tartaglia syndrome', 'Testicular tumor, somatic', 'Developmental and epileptic encephalopathy 28', 'Lethal congenital contracture syndrome 9', 'Macroglobulinemia, Waldenstrom, somatic', 'Mental retardation, x-linked syndromic, Christianson type', 'Neurodevelopmental disorder with cataracts, poor growth, and dysmorphic facies', 'Corneal dystrophy, posterior polymorphous, 1', 'Chromosome 16q12 duplication syndrome', 'Spinocerebellar ataxia 29, congenital nonprogressive', 'Microphthalmia, syndromic 1', 'Neuropathy, hereditary sensory and autonomic, type IC', 'Interstitial lung disease 1', 'CHOROIDEREMIA', 'Warburg micro syndrome 2', 'Menke-Hennekam syndrome 1', 'Mental retardation, x-linked syndromic, Turner type', 'Jalili syndrome', 'Nemaline myopathy 7', 'Complement component 4B deficiency', 'Cousin syndrome', 'Fraser syndrome', 'Neurodevelopmental disorder with brain anomalies and with or without vertebral or cardiac anomalies', 'Hemifacial microsomia', 'Amyotrophic lateral sclerosis 27, juvenile', 'Arthrogryposis multiplex congenita, neurogenic, with myelin defect', 'Epilepsy, X-linked 2, with or without impaired intellectual development and dysmorphic features', 'Corpus callosum, agenesis of, with abnormal genitalia', 'Dystonia 28, childhood-onset', 'Spastic paraplegia 80, autosomal dominant', 'Mehmo syndrome', 'Spinocerebellar ataxia, autosomal recessive 13', 'Ectodermal dysplasia 7, Hair/nail type', 'Developmental and epileptic encephalopathy 48', 'Macrophthalmia, colobomatous, with microcornea', 'Corneal opacification with other ocular anomalies', 'Epidermolysis bullosa, junctional 5A, intermediate', 'Epilepsy, familial temporal lobe, 1', 'Hypotrichosis 8', '46,XY sex reversal 10', 'Intellectual developmental disorder with hypertelorism and distinctive facies', 'Chromosome 1p36 deletion syndrome', 'Mental retardation, X-linked 98', 'Ayme-Gripp syndrome', 'Mental retardation, X-linked, syndromic, Snyder-Robinson type', 'Periventricular nodular heterotopia 9', 'Floating-Harbor syndrome', 'Spastic paraplegia 35, autosomal recessive', 'Restrictive dermopathy 1', 'Epileptic encephalopathy, early infantile, 13', 'Ciliary dyskinesia, primary, 22', 'Pachyonychia congenita 2', 'Hiatt-Neu-Cooper neurodevelopmental syndrome', 'Basilicata-Akhtar syndrome', 'Optic disc anomalies with retinal and/or macular dystrophy', 'Nasopalpebral lipoma-coloboma syndrome', 'Spinocerebellar ataxia 5', 'Parenti-Mignot neurodevelopmental syndrome', 'Ciliary dyskinesia, primary, 5', 'Gallbladder disease 4', 'Tolchin-Le Caignec syndrome', 'Parkinson disease, juvenile, type 2', 'Mental retardation, x-linked syndromic, Lubs type', 'Spastic paraplegia 50, autosomal recessive', 'Optic atrophy 1', 'Robinow syndrome, autosomal recessive', 'Galloway-Mowat syndrome 2, X-linked', 'Scalp-ear-nipple syndrome', 'Spinocerebellar ataxia 1', 'Hengel-Maroofian-Schols syndrome', 'Hay-Wells syndrome', 'Pachygyria, microcephaly, developmental delay, and dysmorphic facies, with or without seizures', 'Spinocerebellar ataxia, autosomal recessive 17', 'Neurodevelopmental disorder with gait disturbance, dysmorphic facies and behavioral abnormalities, X-linked', 'Alazami-Yuan syndrome', 'Basal ganglia calcification, idiopathic, 5', 'Neuropathy, hereditary motor and sensory, type VIB', 'Genitourinary and/or/brain malformation syndrome', 'Hereditary motor and sensory neuropathy, type IIC', 'Tuberous sclerosis-2', 'Duane-Radial ray syndrome', 'Hypotrichosis 7', 'Anterior segment dysgenesis 5, multiple subtypes', 'Cone-Rod dystrophy 2', 'Albinism, oculocutaneous, type II', 'Ectodermal dysplasia/skin fragility syndrome', 'Waardenburg syndrome, type 2A', 'Trichothiodystrophy 8, nonphotosensitive', 'Developmental and epileptic encephalopathy 105 with hypopituitarism', 'Denys-Drash syndrome', 'Spastic paraplegia 52, autosomal recessive', 'Microcephaly with or without chorioretinopathy, lymphedema, or mental retardation', 'Achromatopsia 2', 'Craniofacial dyssynostosis with short stature', 'Ectodermal dysplasia 12, Hypohidrotic/hair/tooth/nail type', 'Epilepsy, idiopathic generalized, susceptibility to, 9', 'Thrombophilia, X-linked, due to factor IX defect', 'Ichthyosis, hystrix-like, with deafness', 'Mandibulofacial dysostosis with alopecia', 'Cri-Du-Chat syndrome', 'Intellectual developmental disorder, autosomal recessive 45', 'Developmental delay with variable neurologic and brain abnormalities', 'Adams-Oliver syndrome 2', 'Urbach-Wiethe disease', 'Moyamoya disease 4 with short stature, hypergonadotropic hypogonadism,and facial dysmorphism', 'Coffin-Siris syndrome 1', 'Leber congenital amaurosis 8', 'Megalencephaly-capillary malformation-polymicrogyria syndrome, somatic', 'Neurodevelopmental disorder with midbrain and hindbrain malformations', 'Orofaciodigital syndrome XI', 'Spastic paraplegia 4, autosomal dominant', 'Short stature, hearing loss, retinitis pigmentosa, and distinctive facies', 'Spondylomegaepiphyseal dysplasia with upper limb mesomelia, punctatecalcifications, and deafness', 'Cleft lip/palate-ectodermal dysplasia syndrome', 'Simosa craniofacial syndrome', 'Intellectual developmental disorder, autosomal recessive 75, with neuropsychiatric features and variant lissencephaly', 'Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract', 'Ichthyosis, congenital, autosomal recessive 11', 'Mental retardation, autosomal dominant 18', 'Pseudohypoparathyroidism, type II', 'Peeling skin with leukonychia, acral punctate keratoses, cheilitis, and knuckle pads', 'Neurofibromatosis, type II', 'Joubert syndrome 3', 'Spinocerebellar ataxia 42, early-onset, severe, with neurodevelopmental deficits', 'Neurodevelopmental disorder with poor growth and skeletal anomalies', 'Van den Ende-Gupta syndrome', 'Robinow syndrome, autosomal dominant 1', 'Marshall syndrome', 'Otopalatodigital syndrome, type II', 'Olmsted syndrome 1', 'Mental retardation, autosomal dominant 34', 'Brachycephaly, trichomegaly, and developmental delay', 'Waardenburg syndrome, type 1', 'Dentici-Novelli neurodevelopmental syndrome', 'Constricting bands, congenital', 'Spastic paraplegia 46, autosomal recessive', 'Complement component c1s deficiency', 'Global developmental delay, lung cysts, overgrowth, and wilms tumor', 'Chromosome 16p12.2-p11.2 deletion syndrome, 7.1- to 8.7-mb', 'Warburg micro syndrome 3', 'Joubert syndrome 5', 'Cerebrooculonasal syndrome', 'Treacher Collins syndrome 1', 'ENDOCRINE-CEREBROOSTEODYSPLASIA', 'Chromosome xq27.3-q28 duplication syndrome', 'Intellectual developmental disorder, X-linked, syndromic, Hackman-Di Donato type', 'Skin creases, congenital symmetric circumferential, 1', 'Neurodevelopmental disorder with coarse facies and mild distal skeletal abnormalities', 'Anterior segment dysgenesis 2', 'Holoprosencephaly 7', 'Retinitis pigmentosa 2, X-linked', 'Hypogonadotropic hypogonadism 23 without anosmia', 'Developmental and epileptic encephalopathy 89', 'Hypertension, essential', 'Spastic paraplegia 75, autosomal recessive', 'Teebi hypertelorism syndrome 2', 'Spastic paraplegia 26, autosomal recessive', 'Membranoproliferative glomerulonephritis, X-linked', 'Clouston syndrome', 'KBG syndrome', 'Arthrogryposis, distal, type 5', 'Albinism, oculocutaneous, type IA', 'Frontofacionasal dysplasia', 'Spastic paraplegia 79, autosomal recessive', 'Adult syndrome', 'Elsahy-Waters syndrome', 'Neurodevelopmental disorder with cerebral atrophy and variable facial dysmorphism', 'Auriculocondylar syndrome 1', 'Spinal and bulbar muscular atrophy, X-linked 1', 'Myasthenia gravis', 'Intellectual developmental disorder, autosomal dominant 38', 'Ohdo syndrome, X-linked', 'Facial dysmorphism, lens dislocation, anterior segment abnormalities, and spontaneous filtering blebs', 'Epileptic encephalopathy, early infantile, 49', \"Van Esch-O'Driscoll syndrome\", 'Leber congenital amaurosis 15', 'Liang-Wang syndrome', 'Mental retardation, X-linked, syndromic 34', 'CK syndrome', 'Popliteal pterygium syndrome, Bartsocas-Papas type 1', 'Ablepharon-Macrostomia syndrome', 'Spinocerebellar ataxia 21', 'Oculodentodigital dysplasia', 'Charcot-Marie-Tooth disease, axonal, type 2Z', 'Intellectual developmental disorder, autosomal recessive 61', 'Multiple synostoses syndrome 1', 'Bosma arhinia microphthalmia syndrome', 'Optic atrophy with or without deafness, ophthalmoplegia, myopathy, ataxia, and neuropathy', 'Ichthyotic keratoderma, spasticity, hypomyelination, and dysmorphic facial features', 'Doors syndrome', 'Ectodermal dysplasia 11B, hypohidrotic/hair/tooth type, autosomal recessive', 'Mental retardation, autosomal dominant 29', 'Chromosome 6q11-q14 deletion syndrome', 'Leber congenital amaurosis 9', 'Ectodermal dysplasia and immunodeficiency 1', 'Cerebellar, ocular, craniofacial, and genital syndrome', 'Microphthalmia, isolated, with coloboma 9', 'Neurodevelopmental disorder with dysmorphic facies, sleep disturbance, and brain abnormalities', 'Chromosome 16p13.3 duplication syndrome', 'Knobloch syndrome, type 1', 'Chloramphenicol toxicity', 'Charcot-Marie-Tooth neuropathy, X-linked dominant, 1', 'Orofacial cleft 15', 'Joubert syndrome 10', 'Keratitis-Ichthyosis-Deafness syndrome, autosomal dominant', 'Pallister-Killian syndrome', 'Immunodeficiency 50', 'Intellectual developmental disorder, X-linked, syndrome, snijders Blok type', 'Epileptic encephalopathy, early infantile, 64', 'Blepharophimosis, epicanthus inversus, and ptosis', 'Chondrodysplasia with platyspondyly, distinctive brachydactyly, hydrocephaly, and microphthalmia', 'Schopf-Schulz-Passarge syndrome', 'Retinitis pigmentosa 73', 'Mental retardation, X-linked 99', 'Hypotonia, ataxia, and delayed development syndrome', 'Opitz-Kaveggia syndrome', 'Neurodevelopmental disorder with impaired language and ataxia and with or without seizures', 'Myelolymphatic insufficiency', 'VACTERL association, X-linked', 'Chromosome 2p16.1-p15 deletion syndrome', 'Nephrogenic syndrome of inappropriate antidiuresis', 'Congenital disorder of glycosylation, type IIm', 'Chromosome 17q12 deletion syndrome', 'Scapuloperoneal myopathy, X-linked dominant', 'Holoprosencephaly 13, X-linked', 'Intellectual developmental disorder, autosomal dominant 65', 'Wieacker-Wolff syndrome, female-restricted', 'Myopathy, X-linked, with excessive autophagy', 'Brachial amelia, cleft lip, and holoprosencephaly', 'Developmental and epileptic encephalopathy 90', 'Chromosome 5p13 duplication syndrome', 'Cornelia de Lange syndrome 2', 'Exudative vitreoretinopathy 6', 'Skin creases, congenital symmetric circumferential, 2', 'Myopathy, reducing body, X-linked, early-onset, severe', 'Choreoathetosis, hypothyroidism, and neonatal respiratory distress', 'Frontonasal dysplasia 2', 'Wieacker-Wolff syndrome', 'Trichothiodystrophy 5, nonphotosensitive', 'Mycosis fungoides', 'Orofaciodigital syndrome XIX', 'Branchiootorenal syndrome 1', 'Cardioneuromyopathy with hyaline masses and nemaline rods', 'Chromosome 6pter-p24 deletion syndrome', 'Robin sequence, distinctive facial appearance, and brachydactyly', 'Fragile site 16q22', 'Leukodystrophy, hypomyelinating, 24', 'Mental retardation, X-linked 99, syndromic, female-restricted', 'Myeloproliferative syndrome, transient', 'Brunner syndrome', 'Developmental and epileptic encephalopathy 2', 'Ritscher-Schinzel syndrome 2', 'Autism, susceptibility to, 3', 'Corpus callosum, agenesis of, with mental retardation, ocular coloboma,and micrognathia', 'Linear skin defects with multiple congenital anomalies 1', 'Panbronchiolitis, diffuse', 'Larsen-Like syndrome', 'Silver-Russell syndrome 2', 'Odontoonychodermal dysplasia', 'Burkitt lymphoma', 'Lacrimoauriculodentodigital syndrome-1', 'Curry-Jones syndrome', 'Spondyloepiphyseal dysplasia tarda, X-linked', 'Developmental delay with variable intellectual disability and dysmorphic facies', 'Terminal osseous dysplasia', 'Tonne-Kalscheuer syndrome', 'Chromosome 16p11.2 deletion syndrome, 593-kb', 'Thrombophilia 13, X-linked, due to factor VIII defect', 'Ectrodactyly, ectodermal dysplasia, and cleft lip/palate syndrome1', 'Neuroocular syndrome', 'Ectrodactyly, ectodermal dysplasia, and cleft lip/palate syndrome 3', 'Aicardi syndrome', 'Oculoauricular syndrome', 'Ectodermal dysplasia 1, hypohidrotic, X-linked', 'Rapp-Hodgkin syndrome', 'Varicose veins', 'Sturge-Weber syndrome', 'Mental retardation, X-linked 94', 'Simpson-Golabi-Behmel syndrome, type 2', 'Ischemic stroke, susceptibility to', 'Tetrasomy 15q26', 'Mental retardation, X-linked, syndromic 32', 'Chromosome 4q21 deletion syndrome', 'Developmental and epileptic encephalopathy 1', 'Ventricular fibrillation, familial, 1', 'Lipodystrophy, partial, acquired, with low complement component C3, with or without glomerulonephritis', 'Myopathy, centronuclear, X-linked', 'Dandy-Walker syndrome', 'Okt4 epitope deficiency', 'Mullerian duct aplasia, unilateral renal agenesis, and cervicothoracicsomite anomalies', 'Diabetes mellitus, insulin-dependent, 15', 'OEIS complex', 'Arts syndrome', 'Barber-Say syndrome', 'Spondyloepimetaphyseal dysplasia, X-linked, with mental deterioration', 'Allan-Herndon-Dudley syndrome', 'Properdin deficiency, X-linked', 'Gomez-Lopez-Hernandez syndrome', 'Combined immunodeficiency, X-linked', 'Adrenoleukodystrophy', 'Otopalatodigital syndrome, type I', 'Developmental and epileptic encephalopathy 85, with or without midline brain defects', 'Borjeson-Forssman-Lehmann syndrome', 'Osteosclerosis - ichthyosis - premature ovarian failure', 'Preaxial hallucal polydactyly', 'Chromosome 22q11.2 deletion syndrome, distal', 'Granulomas, congenital cerebral', 'Hypogonadotropic hypogonadism 1 with or without anosmia', 'Proteinuria, low molecular weight, with hypercalciuric nephrocalcinosis', 'Incontinentia pigmenti', 'Ring chromosome 14 syndrome', 'Opitz GBBB syndrome', 'Psoriasis 1, susceptibility to', 'Asperger syndrome, susceptibility to, 2', 'Asperger syndrome, susceptibility to, 1', 'IFAP syndrome with or without BRESHECK syndrome', 'Encephalocraniocutaneous lipomatosis', 'Renpenning syndrome', 'Frontometaphyseal dysplasia', 'Craniofrontonasal syndrome', 'Diabetes mellitus, insulin-dependent, 10', 'Diabetes mellitus, insulin-dependent, 6', 'Autism, susceptibility to, 8', 'Autism susceptibility 1', 'Mental retardation, X-linked, syndromic, Chudley-Schwartz type', 'Barrett esophagus', 'Mental retardation, X-linked, syndromic, Cabezas type', 'McCune-Albright syndrome, somatic, mosaic', 'Aneurysm, intracranial berry, 2', 'Osteoarthritis susceptibility 1', 'Lujan-Fryns syndrome', 'Fragile X mental retardation syndrome', 'Focal cortical dysplasia of taylor', 'Mental retardation, X-linked, syndromic 17', 'Pettigrew syndrome', 'Oculocerebrocutaneous syndrome', 'Lymphoma, non-hodgkin, familial', 'MASA syndrome', 'Focal segmental glomerulosclerosis 3, susceptibility to', 'Chromosome Xq26.3 duplication syndrome', 'Myelodysplastic syndrome', 'Pelvic dysplasia - arthrogryposis of lower limbs', 'Neurocutaneous melanosis, somatic', 'Developmental dysplasia of the hip 1', 'Gout, hprt-related', 'Bartter syndrome, type 5, antenatal, transient', 'Branched-Chain ketoacid dehydrogenase kinase deficiency', 'Pulmonary alveolar proteinosis, acquired', 'Intellectual developmental disorder, X-linked 110', 'Linear skin defects with multiple congenital anomalies 2', 'CHOLANGIOCARCINOMA', 'Mental retardation, X-linked, syndromic 13', 'Mental retardation with optic atrophy, facial dysmorphism, microcephaly,and short stature', 'Wilson-Turner syndrome', 'Spinocerebellar ataxia, X-linked 1', 'Charcot-Marie-Tooth peroneal muscular atrophy, X-linked, with aplasia', 'Chondrodysplasia punctata 1, X-linked recessive', 'Acquired angioedema', 'Focal dermal hypoplasia', 'Mental retardation, X-linked, syndromic, Nascimento type', 'Mohr-Tranebjaerg syndrome', 'Angel-Shaped phalangoepiphyseal dysplasia', 'Amyotrophy, monomelic', 'Diabetes mellitus, insulin-dependent, 20', 'Mandibulofacial dysostosis with macroblepharon and macrostomia', 'Spinal muscular atrophy, distal, X-linked 3', 'Multiple sclerosis, susceptibility to', 'Hypouricemia, familial renal, due to tubular hypersecretion', 'Centralopathic epilepsy', 'Specific language impairment 1', 'Specific language impairment 2', 'Chromosome 16p12.1 deletion syndrome, 520kb', 'Pancreatic cancer, susceptibility to, 2', 'Diaphragmatic hernia, congenital', 'Perifolliculitis capitis abscedens et suffodiens, familial', 'Bulimia nervosa, susceptibility to, 1', 'Microphthalmia with cyst, bilateral facial clefts, and limb anomalies', 'Alcohol dependence', 'Carney-Stratakis syndrome', 'Leukemia, chronic lymphocytic', 'Hemifacial atrophy, progressive', 'Cubitus valgus with mental retardation and unusual facies', 'Leukemia, acute monocytic', 'B-CELL CLL/LYMPHOMA 2', 'Alopecia areata 1', 'Hypomelanosis of Ito', 'Myopia 7', 'Alar cleft, isolated', 'Renal cell carcinoma, nonpapillary', 'Corpus callosum, partial agenesis of, X-linked', 'Brachydactyly-Syndactyly syndrome', 'Hypothyroidism, central, and testicular enlargement', 'Hydrocephalus due to congenital stenosis of aqueduct of sylvius', 'Wildervanck syndrome', 'Leukemia, acute lymphocytic, susceptibility to, 1', 'Chromosome 22q13 duplication syndrome', 'Mental retardation, X-linked 72', 'Autism, susceptibility to, X-linked 6', 'Scarf syndrome', 'Palatopharyngeal incompetence', 'Carabelli anomaly of maxillary molar teeth', 'Orofacial cleft 10', 'Immunodeficiency 33', 'Corneal dystrophy, fuchs endothelial, 6', 'Androgen insensitivity syndrome', 'Intellectual developmental disorder, X-linked 108', 'Brugada syndrome 8', 'Waisman syndrome', 'Fragile X tremor/ataxia syndrome', 'Helicobacter pylori infection, susceptibility to', 'Developmental and epileptic encephalopathy 8', 'Neurodegeneration with brain iron accumulation 5', 'Gastric cancer, somatic', 'Potocki-Shaffer syndrome', 'Raynaud-Claes syndrome', 'Systemic lupus erythematosus, susceptibility to, 6', 'Scholte syndrome', 'Mental retardation, X-linked, associated with fragile site fraxe', 'Xq21 deletion syndrome', 'Mental retardation, X-linked, syndromic 11', 'Mental retardation, X-linked, syndromic, Hedera type', 'Intellectual developmental disorder, X-linked 30', 'Orofaciodigital syndrome VIII', 'Mental retardation, X-linked, with cerebellar hypoplasia and distinctive facial appearance', 'Multiple enchondromatosis, Maffucci type', 'Intellectual developmental disorder, X-linked 82', 'Mental retardation, X-linked 104', 'Polymicrogyria, bilateral perisylvian', 'Arteriovenous malformation of the brain, somatic', 'Shukla-Vernon syndrome', 'Charcot-Marie-Tooth disease, X-linked recessive, 3', 'Appendicitis, proneness to', 'Mental retardation, X-linked 1', 'Adrenal insufficiency, congenital, with 46XY sex reversal, partial or complete', 'Chromosome xp11.3 deletion syndrome', 'Keipert syndrome', 'Becker nevus syndrome', 'Cataract, ataxia, short stature, and mental retardation', 'Myopathy, distal, 7, adult-onset, X-linked', 'Hhhh syndrome', 'Spastic paraplegia 2, X-linked', 'Inflammatory bowel disease 13', 'Inflammatory bowel disease 19', 'Torticollis, keloids, cryptorchidism, and renal dysplasia', 'Partington syndrome', 'Dysplasia epiphysealis hemimelica', 'Hirschsprung disease with type D brachydactyly', 'Mental retardation, X-linked 106', 'Epilepsy, X-linked, with variable learning disabilities and behavior disorders', 'Gastric lymphoma, primary', 'Lipoprotein glomerulopathy', 'Tracheoesophageal fistula with or without esophageal atresia', 'Deafness, X-linked 5', 'Follicular lymphoma, susceptibility to, 1', 'Paroxysmal nocturnal hemoglobinuria', 'Nephrolithiasis, type I', 'Retinoschisis 1, X-linked, juvenile', 'Chromosome xp11.23-p11.22 duplication syndrome', 'Celiac disease, epilepsy and cerebral calcification syndrome', 'Mental retardation, X-linked 103', 'Teratocarcinoma-Derived growth factor 1', 'Spastic paraplegia 16, X-linked', 'Woods syndrome', 'Siderius X-linked mental retardation syndrome', 'Mental retardation, X-linked 63', 'Mental retardation, X-linked 84', 'Atrial fibrillation, familial, 5', 'LYMPHANGIOLEIOMYOMATOSIS', 'Breast, unilateral giant', 'Ectodermal dysplasia with facial dysmorphism and acral, ocular, and brain anomalies, somatic mosaic', 'Mental retardation, X-linked 93', 'Thumbs, congenital clasped', 'Mental retardation, X-linked 101', 'Keratosis follicularis spinulosa decalvans, X-linked', 'Hydrocephalus, endocardial fibroelastosis, and cataracts', 'Cerebral palsy, spastic quadriplegic, 2', 'Chromosome 10q22.3-q23.2 deletion syndrome', 'Nephrogenic diabetes insipidus - intracranial calcification', 'Cowden syndrome 4', '46XX sex reversal 1', 'Familial scaphocephaly syndrome, Mcgillivray type', 'Mental retardation, X-linked 45', 'Charcot-Marie-Tooth disease, X-linked recessive, 2', 'Facioscapulohumeral muscular dystrophy 3, digenic', 'Mental retardation, X-linked 21', 'Insulinoma tumor suppressor gene locus', 'Sick sinus syndrome 3', 'Maxillonasal dysplasia, Binder type', 'Mental retardation, X-linked 9', 'Hypertrichosis, congenital generalized', 'SCHIZENCEPHALY', 'Autism, susceptibility to, X-linked 4', 'Ciliary dyskinesia, primary, 36, X-linked', 'Cystic fibrosis, modifier of, 1', 'Retinitis pigmentosa, X-linked, and sinorespiratory infections, withor without deafness', 'Hypothyroidism, congenital, nongoitrous, 9', 'Exudative vitreoretinopathy 2, X-linked', 'Reifenstein syndrome', 'Macrodactyly, somatic', 'Metacarpal 4-5 fusion', 'Nance-Horan syndrome', 'Parkinsonism with spasticity, X-linked', 'Mental retardation, X-linked, with or without seizures, arx-related', 'Retinitis pigmentosa 23', 'Atypical mycobacteriosis, familial, X-linked 2', 'Spinocerebellar ataxia, X-linked 5', 'Bazex syndrome', 'Charcot-Marie-Tooth disease, X-linked dominant, 6', 'Spastic paraplegia 34, X-linked', 'Facioscapulohumeral muscular dystrophy 2', 'Immunodeficiency 74, COVID19-related, X-linked', 'Esophageal cancer, somatic', 'Colorectal cancer, susceptibility to, 3', 'Dystonia 3, torsion, X-linked', 'Mental retardation, X-linked 89', 'Mental retardation, X-linked 100', 'Cerebellar degeneration-related autoantigen 3', 'Coats disease', 'Brachydactylous dwarfism, Mseleni type', 'Mental retardation, X-linked 105', 'Myelopathy, htlv-1-associated', 'Chondrosarcoma, extraskeletal myxoid', 'Chondrosarcoma', 'Mental retardation, X-linked 96', 'Intellectual developmental disorder, X-linked 77', 'Norrie disease', 'Osteosarcoma', 'Precocious puberty, central, 2', 'Amelogenesis imperfecta, type IE', 'Prostate cancer/brain cancer susceptibility', 'Arthrogryposis - hyperkeratosis, lethal form', 'Spatial visualization, aptitude for', 'Coxsackievirus B3 susceptibility', 'Palmoplantar keratoderma, mutilating, with periorificial keratotic plaques, X-linked', 'Premature ovarian failure 2A', 'Tooth agenesis, selective, X-linked, 1', 'Mental retardation, X-linked 23', 'Mental retardation, X-linked 53', 'Mental retardation, X-linked 81', 'Mental retardation, X-linked 46', 'Bornholm eye disease', 'Mental retardation, X-linked 58', 'Deafness, X-linked 7', 'Paget disease, extramammary', 'Autoimmune thyroid disease, susceptibility to, 3', 'Nystagmus, myoclonic', 'Major affective disorder 2', 'Complement component 9 deficiency', 'Melanocytic nevus syndrome, congenital', 'Motion sickness', 'Cognitive function 1, social', 'Premature ovarian failure 6', '46XY sex reversal 3', 'Premature ovarian failure 7', 'Faciomandibular myoclonus, nocturnal', 'Ichthyosis, X-linked', 'Syndromic X-linked intellectual disability 7', 'X-LINKED intellectual disability, Abidi type', 'X-LINKED intellectual disability, Shrimpton type', 'Intellectual disability, Wolff type', 'Facioscapulohumeral muscular dystrophy 4, digenic', 'Radius, aplasia of, with cleft lip/palate', 'Blue cone monochromacy', 'Cone-Rod dystrophy, X-linked, 3', 'Glaucoma - sleep apnea', 'Major depressive disorder', 'Diaphragmatic hernia 3', 'Hernia, anterior diaphragmatic', 'Corneal dystrophy, lisch epithelial', 'Deafness, X-linked 1', '46,xx sex reversal 3', 'Deafness, X-linked 3', 'Goiter, multinodular 2', 'Colorblindness, partial, protan series', 'Ptosis, hereditary congenital 2', 'Macular degeneration, X-linked atrophic', 'Colorblindness, deutan', 'Hypospadias 1, X-linked', 'Hypospadias 2, X-linked', 'Corneal dystrophy, endothelial, X-linked', 'Deafness, X-linked 4', 'Nystagmus 6, congenital, X-linked', 'Deafness, X-linked 6', 'Night blindness, congenital stationary, type 1A', 'Nystagmus 5, congenital, X-linked', 'Azoospermia, obstructive, with nephrolithiasis', 'Deafness, cataract, retinitis pigmentosa, and sperm abnormalities', 'Spermatogenic failure, X-linked 2', 'Myxoid liposarcoma', 'Angioma serpiginosum, X-linked', 'Deafness, X-linked 2', 'Rhabdomyosarcoma 2, alveolar', 'Spermatogenic failure, X-linked, 3', 'MEGALOCORNEA', 'Rhabdomyosarcoma, embryonal, 2', 'Cervical cancer', 'Mesothelioma, malignant', 'Alopecia, androgenetic, 1', 'Ewing sarcoma', 'Histiocytoma, angiomatoid fibrous, somatic', 'Sarcoma, synovial', 'Alveolar soft part sarcoma', 'Nevus comedonicus, somatic', 'Pilomatrixoma, somatic', 'Keratosis, seborrheic, somatic', 'Epidermal nevus, somatic', 'Renal cell carcinoma, xp11-associated', 'Precocious puberty, male', 'Leiomyoma, uterine', 'Vitiligo-Associated multiple autoimmune disease susceptibility 1', 'Preterm premature rupture of the membranes', 'Orofacial cleft 11', 'Macular degeneration, age-related, 7', 'Macular degeneration, age-related, 11', 'Nasopharyngeal carcinoma', 'Focal segmental glomerulosclerosis 4, susceptibility to', 'Preeclampsia/eclampsia 4', 'Nasopharyngeal carcinoma', 'HAIRY EARS, Y-LINKED', 'Hairy nose tip', 'Myopia 8', 'Myopia 9', 'Myopia 10', 'Strabismus, susceptibility to', 'Glaucoma 1, open angle, O', 'Glaucoma 1, open angle, G', 'Emphysema, hereditary pulmonary', 'Pulmonary disease, chronic obstructive', 'Hypertrichosis, anterior cervical', 'RETINITIS PIGMENTOSA, Y-LINKED', 'Basal cell carcinoma, susceptibility to, 1', 'Danubian endemic familial nephropathy', 'Caudal duplication anomaly', 'Testicular microlithiasis', 'Macular degeneration, age-related, 6', 'Familial breast-ovarian cancer-1', 'Natal teeth - intestinal pseudoobstruction - patent ductus', 'Spermatogenic failure 68', 'Microcephaly - albinism - digital anomalies']\n", + "['Lysosomal acid lipase deficiency', 'Interstitial lung and liver disease', 'Hydrops, lactic acidosis, and sideroblastic anemia', 'Bile acid synthesis defect, congenital, 3', 'Triokinase and FMN cyclase deficiency syndrome', 'Mitochondrial DNA depletion syndrome 16 (hepatic type)', 'Galactosemia', 'Immunodeficiency 69, mycobacteriosis', 'Cholestasis, progressive familial intrahepatic, 10', 'Bile acid conjugation defect 1', 'Bile acid synthesis defect, congenital, 1', 'Anemia, congenital dyserythropoietic, type Ia', 'Sea-Blue histiocyte disease', 'Cholestasis, progressive familial intrahepatic, 5', 'Anemia, sideroblastic, 3, pyridoxine-refractory', 'Bile acid synthesis defect, congenital, 2', 'Combined oxidative phosphorylation deficiency 9', 'Bile acid synthesis defect, congenital, 4', 'Combined oxidative phosphorylation deficiency 30', 'Infantile liver failure syndrome 1', 'Tyrosinemia, type I', 'Liver failure, infantile, transient', 'Anemia, dyserythropoietic congenital, type IV', 'Pearson marrow-pancreas syndrome', 'Niemann-Pick disease, type A', 'Citrullinemia, type II, neonatal-onset', 'Mitochondrial DNA depletion syndrome 3 (hepatocerebral type)', 'Mitochondrial complex IV deficiency, nuclear type 4', 'Neutropenia, severe congenital, 5, autosomal recessive', 'Sitosterolemia 1', 'Renal tubular acidosis, distal, with hemolytic anemia', 'Niemann-pick disease, type B', 'Propionic acidemia', 'Mitochondrial DNA depletion syndrome 15 (hepatocerebral type)', 'Sclerosing cholangitis, neonatal', 'Combined oxidative phosphorylation deficiency 34', 'Cholestasis, progressive familial intrahepatic, 3', 'Fanconi-Bickel syndrome', 'Cholestasis, progressive familial intrahepatic, 12', 'Methylmalonic aciduria, vitamin B12-responsive, cblB type', 'Wolman disease', 'Leukocyte adhesion deficiency, type III', 'Bile acid synthesis defect, congenital, 5', 'Mitochondrial complex III deficiency, nuclear type 3', 'Immunodeficiency 32B, monocyte and dendritic cell deficiency, autosomal recessive', 'Congenital disorder of glycosylation, type Ib', 'Osteopetrosis, autosomal recessive 8', 'Mitochondrial complex III deficiency, nuclear type 10', 'Glycogen storage disease XII', 'Hemophagocytic lymphohistiocytosis, familial, 1', 'Immunodeficiency 27A, mycobacteriosis, AR', 'Omenn syndrome', 'Congenital disorder of glycosylation, type Ih', 'Transaldolase deficiency', 'Hyperbilirubinemia, shunt, primary', 'Immunodeficiency 87 and autoimmunity', 'Congenital disorder of glycosylation, type IIaa', 'Growth retardation, impaired intellectual development, hypotonia, and hepatopathy', 'Heme oxygenase-1 deficiency', 'Wilson disease', 'Anemia, congenital dyserythropoietic, type Ib', 'Thrombocytopenia, anemia, and myelofibrosis', 'Mitochondrial DNA depletion syndrome 6 (hepatocerebral type)', 'Orotic aciduria', 'Cholestasis, progressive familial intrahepatic, 8', 'Hemochromatosis, neonatal', 'Combined oxidative phosphorylation deficiency 19', 'Anemia, dyserythropoietic congenital, type III', 'Congenital disorder of glycosylation, type IIO', 'Combined oxidative phosphorylation deficiency 16', 'Thalassemia-beta, dominant inclusion-body', 'Phosphoenolpyruvate carboxykinase deficiency, cytosolic', 'Osteootohepatoenteric syndrome', 'Autoinflammation with infantile enterocolitis', 'Erythroleukemia, familial, susceptibility to', 'Congenital disorder of glycosylation, type IIK', 'Complement hyperactivation, angiopathic thrombosis, and protein-losing enteropathy', 'Cholestasis, progressive familial intrahepatic 1', 'Hypertriglyceridemia, transient infantile', 'Bleeding disorder, platelet-type, 16', 'Hyperuricemia, pulmonary hypertension, renal failure, and alkalosis syndrome', 'Letterer-Siwe disease', 'Exocrine pancreatic insufficiency, dyserythropoietic anemia, and calvarialhyperostosis', 'Anemia, hypochromic microcytic, with iron overload 2', 'Hemophagocytic lymphohistiocytosis, familial, 2', 'Methylmalonic aciduria, vitamin B12-responsive, cblA type', 'Dehydrated hereditary stomatocytosis 2', 'Lecithin:cholesterol acyltransferase deficiency', 'Cholestasis, progressive familial intrahepatic, 7, with or without hearing loss', 'Immunodeficiency 47', 'Ghosal hematodiaphyseal dysplasia', 'Hemophagocytic lymphohistiocytosis, familial, 4', 'Spherocytosis, type 5', 'Hemolytic anemia, nonspherocytic, due to hexokinase deficiency', 'Anemia, X-linked, with or without neutropenia and/or platelet abnormalities', 'Lysinuric protein intolerance', 'Rajab interstitial lung disease with brain calcifications', 'Hemophagocytic lymphohistiocytosis, familial, 5', 'Glycogen storage disease IV', 'HMG-CoA synthase-2 deficiency', 'Hypobetalipoproteinemia, familial, 1', 'Mitochondrial complex I deficiency, nuclear type 11', 'Osteopetrosis, autosomal recessive 1', 'Combined oxidative phosphorylation deficiency 42', 'Combined oxidative phosphorylation deficiency 40', 'Osteopetrosis, autosomal recessive 4', 'Gallbladder disease 1', 'Cholestasis-Lymphedema syndrome', 'Hemolytic anemia due to glutathione synthetase deficiency', 'Combined oxidative phosphorylation deficiency 12', 'Anemia, dyserythropoietic congenital, type II', 'Glycogen storage disease IXc', 'Cholestasis, progressive familial intrahepatic, 6', 'Mitochondrial complex III deficiency, nuclear type 6', 'Reticuloendotheliosis, X-linked', 'Glycogen storage disease VI', 'Majeed syndrome', 'Combined oxidative phosphorylation deficiency 52', 'Proteasome-Associated autoinflammatory syndrome 3', 'Congenital disorder of glycosylation, type IIP', 'Polyglucosan body myopathy 1 with or without immunodeficiency', 'Focal segmental glomerulosclerosis 1', 'Cholestasis, progressive familial intrahepatic 2', 'Bleeding disorder, platelet-type, 19', 'Bleeding disorder, platelet-type, 17', 'Citrullinemia, type II, adult-onset', 'Amegakaryocytic thrombocytopenia, congenital, 2', 'Immunodeficiency 46', 'Congenital disorder of glycosylation, type IIw', 'Juvenile polyposis syndrome', 'Gaucher disease, atypical', 'Mitochondrial trifunctional protein deficiency', 'Hyperlipoproteinemia, type ID', 'Bile acid malabsorption, primary, 2', 'Osteopetrosis, autosomal recessive 3', 'Cholestasis, progressive familial intrahepatic, 11', 'Pyridoxamine 5-prime-phosphate oxidase deficiency', 'Hyperbiliverdinemia', 'Portal hypertension, noncirrhotic, 2', 'Hemolytic anemia, nonspherocytic, due to glucose phosphate isomerasedeficiency', 'Protoporphyria, erythropoietic, 1', 'Prolidase deficiency', '3-Hydroxy-3-Methylglutaryl-Coa lyase deficiency', 'Hypermethioninemia due to adenosine kinase deficiency', 'Hypermethioninemia with deficiency of S-adenosylhomocysteine hydrolase', 'Monosomy 7 myelodysplasia and leukemia syndrome 2', 'Polycythemia vera', 'Immunodeficiency 22', 'Fanconi anemia, complementation group V', 'Osteopetrosis, autosomal recessive 5', 'Mitochondrial complex III deficiency, nuclear type 1', 'Infections, recurrent, with encephalopathy, hepatic dysfunction, and cardiovascular malformations', 'Cholestasis, intrahepatic, of pregnancy 3', 'Immunodeficiency 40', 'Infantile liver failure syndrome 3', 'Carnitine palmitoyltransferase I deficiency', 'Argininosuccinic aciduria', 'Lymphoproliferative syndrome 1', 'Hemochromatosis, type 2B', 'Thrombocytopenia 6', 'Isovaleric acidemia', 'Pyogenic sterile arthritis, pyoderma gangrenosum, and acne', 'Anemia, hypochromic microcytic, with iron overload 1', 'Spherocytosis, type 2', 'Thanatophoric dysplasia, glasgow variant', 'Combined oxidative phosphorylation deficiency 37', 'Diarrhea 13', 'Fructose intolerance, hereditary', 'Mitochondrial complex I deficiency, nuclear type 20', 'Infantile-onset multisystem neurologic, endocrine, and pancreatic disease 2', 'Autoinflammatory-pancytopenia syndrome', 'Mitochondrial complex III deficiency, nuclear type 5', 'Cyanosis, transient neonatal', 'Pulmonary fibrosis and/or bone marrow failure syndrome, telomere-related, 7', 'Combined oxidative phosphorylation deficiency 14', 'Arthrogryposis, renal dysfunction, and cholestasis 1', 'Fanconi renotubular syndrome 4 with maturity-onset diabetes of the young', 'Osteopetrosis, autosomal recessive 2', 'Overhydrated hereditary stomatocytosis', 'Carnitine deficiency, systemic primary', 'Fumarase deficiency', 'Combined low LDL and fibrinogen', 'Gaucher disease, type I', 'Osteopetrosis, autosomal dominant 3', 'Hemochromatosis, type 4', 'Elliptocytosis 1', 'Werner syndrome', 'Pyruvate kinase deficiency of red cells', '3-methylglutaconic aciduria, type V', 'Hemophagocytic lymphohistiocytosis, familial, 3', 'Mevalonic aciduria', 'Combined immunodeficiency and megaloblastic anemia with or without hyperhomocysteinemia', 'Hyperparathyroidism, neonatal severe', 'Cardiomyopathy, familial restrictive, 6', 'Mitochondrial complex IV deficiency, nuclear type 3', 'Thrombotic thrombocytopenic purpura, hereditary', 'Anemia, sideroblastic, 2, pyridoxine-refractory', 'Lymphoproliferative syndrome, X-linked, 1', 'Mitochondrial complex IV deficiency, nuclear type 1', 'ATRANSFERRINEMIA', 'Gray platelet syndrome', 'Niemann-pick disease, type C1', 'Immunodeficiency 91 and hyperinflammation', 'Gaucher disease, type III', 'Dehydrated hereditary stomatocytosis 1 with or without pseudohyperkalemia and/or perinatal edema', 'Dyserythropoiesis, congenital, with ultrastructurally normal erythroblastheterochromatin', 'Spherocytosis, type 1', 'Liver disease, severe congenital', 'Anemia, sideroblastic, 5', 'Transcobalamin II deficiency', 'Stormorken syndrome', 'Copper deficiency, familial benign', 'Seckel syndrome 10', 'Spherocytosis, type 4', 'Combined oxidative phosphorylation deficiency 41', 'Hemochromatosis, type 5', 'Trichohepatoenteric syndrome 1', 'Hardikar syndrome', 'Mitochondrial DNA depletion syndrome 4A (Alpers type)', 'Autoinflammation with episodic fever and lymphadenopathy', 'Cholestasis, intrahepatic, of pregnancy, 1', 'Cholestasis, progressive familial intrahepatic, 9', 'Aicardi-Goutieres syndrome 9', 'Methylmalonic aciduria and homocystinuria, Cblf type', 'Congenital disorder of glycosylation, type IIl', 'T-cell lymphoma, subcutaneous panniculitis-like', 'Celiac disease, susceptibility to, 1', 'Splenoportal vascular anomalies', 'Glycogen storage disease Ia', 'Megaloblastic anemia due to dihydrofolate reductase deficiency', 'Abdominal obesity-metabolic syndrome 4', 'Combined oxidative phosphorylation deficiency 10', 'Encephalomyopathy, mitochondrial, due to voltage-dependent anion channel deficiency', 'Trimethylaminuria', 'Thrombocytopenia 5', 'Erythrocytosis, familial, 8', 'Osteopetrosis, autosomal recessive 9', 'Thrombocytopenia with beta-thalassemia, X-linked', 'Proteasome-associated autoinflammatory syndrome 5', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 4A', 'Mcleod syndrome', 'Shwachman-Diamond syndrome 1', 'Sickle cell anemia', 'Medium chain 3-ketoacyl-coa thiolase deficiency', 'Peroxisome biogenesis disorder 8A (Zellweger)', 'Hypermanganesemia with dystonia 1', 'Lymphoproliferative syndrome 2', 'Phosphoenolpyruvate carboxykinase 2, mitochondrial', 'Hepatitis, fulminant viral, susceptibility to', 'Congenital disorder of glycosylation, type IR', 'Dihydropyrimidinuria', 'Distal renal tubular acidosis 3, with or without sensorineural hearing loss', 'RAS-associated autoimmune lymphoproliferative syndrome type IV, somatic', 'Lymphatic malformation 7', 'Dihydrolipoamide dehydrogenase deficiency', 'Congenital disorder of glycosylation, type It', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 1', 'Diamond-Blackfan anemia 16', 'Fibrosis, neurodegeneration, and cerebral angiomatosis', 'Fanconi anemia, complementation group T', 'Bone marrow failure syndrome 6', 'Neuroblastoma, susceptibility to', 'Combined oxidative phosphorylation deficiency 36', 'Mitochondrial trifunctional protein deficiency 2', 'Biliary, renal, neurologic, and skeletal syndrome', 'Congenital disorder of glycosylation, type IIj', 'Autoimmune lymphoproliferative syndrome, type III', 'Mandibular hypoplasia, deafness, progeroid features, and lipodystrophy syndrome', 'Cirrhosis, familial', 'Macrothrombocytopenia and granulocyte inclusions with or without nephritis or sensorineural hearing loss', 'Dyskeratosis congenita, autosomal dominant, 1', 'Anemia, sideroblastic, autosomal dominant', 'Glucose/galactose malabsorption', 'Hemochromatosis, type 1', 'Bone marrow failure syndrome 2', 'Diarrhea 7, protein-losing Enteropathy type', 'Neutropenia, severe congenital, 4, autosomal recessive', 'Iron-Refractory iron deficiency anemia', 'Bernard-Soulier syndrome, type A2, autosomal dominant', 'Chylomicron retention disease', 'Immunodeficiency 98 with autoinflammation, X-linked', 'Immunodeficiency 44', 'Myopathy, lactic acidosis, and sideroblastic anemia 2', 'Neutropenia, severe congenital, 1, autosomal dominant', 'Gaucher disease, type II', 'Cryohydrocytosis', 'Dyskeratosis congenita, autosomal dominant 2', 'Harderoporphyria', 'Specific granule deficiency 2', 'Platelet glycoprotein IV deficiency', 'Gaucher disease, perinatal lethal', 'Immunodeficiency 97 with autoinflammation', 'Eosinophilia, familial', 'Rajab interstitial lung disease with brain calcifications 2', 'Methylmalonic aciduria due to methylmalonyl-coa mutase deficiency', 'Pyloric stenosis, infantile hypertrophic 1', 'Triosephosphate isomerase deficiency', 'Cholestasis, benign recurrent intrahepatic, 2', 'Radioulnar synostosis with amegakaryocytic thrombocytopenia 2', 'Type I hyperlipoproteinemia', 'Intrinsic factor deficiency', 'Hemolytic uremic syndrome, atypical, susceptibility to, 4', 'Morbid obesity and spermatogenic failure', 'Hemolytic uremic syndrome, atypical, susceptibility to, 2', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 1', 'Bleeding disorder, platelet-type, 24, autosomal dominant', 'Diamond-Blackfan anemia 19', 'Immunodeficiency 82 with systemic inflammation', 'Mitchell-Riley syndrome', 'Porphyria, congenital erythropoietic', 'Thrombocytopenia 9', 'Gilbert syndrome', 'Glycogen storage disease type IXb', 'Citrullinemia, classic', 'Combined oxidative phosphorylation deficiency 1', 'Mitochondrial complex I deficiency, nuclear type 39', 'Diabetes mellitus, permanent neonatal 4', 'Hemolytic anemia, G6PD deficient (favism)', 'Autoinflammation with pulmonary and cutaneous vasculitis', 'Shwachman-Diamond syndrome 2', 'Developmental and epileptic encephalopathy 50', 'Glutaric aciduria III', 'Glycogen storage disease Ib', 'Red cell phospholipid defect with hemolysis', 'Analbuminemia', 'Rh-null disease, amorph type', 'Hemolytic uremic syndrome, atypical, susceptibility to, 6', 'Anemia, nonspherocytic hemolytic, possibly due to defect in porphyrinmetabolism', 'Patent ductus venosus', 'Enterokinase deficiency', 'Galactose epimerase deficiency', 'Johanson-Blizzard syndrome', 'Platelet disorder, undefined', 'Transient erythroblastopenia of childhood', 'Bleeding disorder, platelet-type, 21', 'Cholestasis, progressive familial intrahepatic 4', 'Congenital disorder of glycosylation, type IIr', 'Nephronophthisis 19', 'Methylmalonic aciduria and homocystinuria, Cblj type', 'Corticosteroid-binding globulin deficiency', 'Aplasia cutis congenita with intestinal lymphangiectasia', 'Immunodeficiency 56', 'Thrombocytopenic purpura, autoimmune', 'Bernard-Soulier syndrome', 'Lipodystrophy, congenital generalized, type 3', 'Mitochondrial complex IV deficiency, nuclear type 12', 'Mitochondrial myopathy, infantile, transient', 'Peroxisome biogenesis disorder 13A (Zellweger)', 'Lipodystrophy, congenital generalized, type 4', '3-hydroxyisobutyric aciduria', 'Platelet signal processing defect', 'Pseudo-Torch syndrome 2', 'Inflammatory bowel disease (infantile ulcerative colitis) 31', 'Ornithine transcarbamylase deficiency, hyperammonemia due to', 'Short-Rib thoracic dysplasia 10 with or without polydactyly', 'Pseudohypoaldosteronism, type I, autosomal dominant', 'Diarrhea 1, secretory chloride, congenital', 'Fanconi renotubular syndrome 1', 'Acyl-Coa dehydrogenase, medium-chain, deficiency of', 'Hyperzincemia with functional zinc depletion', 'Agammaglobulinemia 8B, autosomal recessive', 'Diarrhea 12, with microvillus atrophy', 'Infantile sialic acid storage disease', 'Immunodysregulation, polyendocrinopathy, and enteropathy, X-linked', 'Myopathy, lactic acidosis, and sideroblastic anemia 1', 'Wolfram syndrome, mitochondrial form', 'Thrombocytopenia with elevated serum IgA and renal disease', 'Ichthyosis, leukocyte vacuoles, alopecia, and sclerosing cholangitis', 'Polycystic liver disease 1 with or without kidney cysts', 'Immunodeficiency 48', 'Acetophenetidin sensitivity', 'Ceroid storage disease', 'von Willebrand disease, type 3', 'Dohle bodies and leukemia', 'Hemochromatosis, type 3', 'Amegakaryocytic thrombocytopenia, congenital', 'Thrombocythemia 1', 'Interleukin 1 receptor antagonist deficiency', 'Neutrophilia, hereditary', '3-Hydroxyacyl-Coa dehydrogenase deficiency', 'Neurodevelopmental disorder with microcephaly, seizures, and neonatal cholestasis', 'Pseudohypoaldosteronism, type I, autosomal recessive', 'Hemolytic uremic syndrome, atypical, susceptibility to, 3', 'Anemia, hemolytic, Rh-null, Regulator type', 'Congenital disorder of glycosylation, type IIe', 'Ovalocytosis, hereditary hemolytic, with defective erythropoiesis', 'Diamond-Blackfan anemia 12', 'Prekallikrein deficiency', 'Immunodeficiency 64', 'Hemolytic uremic syndrome, atypical, susceptibility to, 1', 'Thrombocytopenia 10', 'Aicardi-Goutieres syndrome 4', 'Immunodeficiency 7, TCR-alpha/beta deficient', 'Renal-Hepatic-Pancreatic dysplasia 2', 'Farber lipogranulomatosis', 'Cinca syndrome', 'Glycosylphosphatidylinositol deficiency', 'Apparent mineralocorticoid excess', 'Immunodeficiency 52', 'Combined oxidative phosphorylation deficiency 47', 'Amino aciduria with mental deficiency, dwarfism, muscular dystrophy,osteoporosis, and acidosis', 'Congenital disorder of glycosylation, type IID', 'Mitochondrial complex I deficiency, nuclear type 32', 'Diamond-Blackfan anemia 3', 'Phosphoglycerate dehydrogenase deficiency', 'Bone marrow failure syndrome 4', 'Combined malonic and methylmalonic aciduria', 'Hyperammonemia due to carbonic anhydrase VA deficiency', 'Lymphoproliferative syndrome, X-linked, 2', 'Galactosialidosis', 'Peroxisome biogenesis disorder 3B', 'Pseudo-Torch syndrome 3', 'Diarrhea 4, malabsorptive, congenital', 'Diamond-Blackfan anemia 18', 'Congenital short bowel syndrome', 'Infantile liver failure syndrome 2', 'Carnitine palmitoyltransferase II deficiency, infantile', 'Homocystinuria-megaloblastic anemia, cblg Complementation type', 'Band-Like calcification with simplified gyration and polymicrogyria', 'Methylmalonyl-Coa epimerase deficiency', 'Ataxia-Pancytopenia syndrome', 'Lactase deficiency, congenital', 'Asplenia, isolated congenital', 'Autoinflammation with arthritis and dyskeratosis', 'Renal tubulopathy, diabetes mellitus, and cerebellar ataxia', 'Berry aneurysm, cirrhosis, pulmonary emphysema, and cerebral calcification', 'Niemann-pick disease, type C2', 'Immunodeficiency 63 with lymphoproliferation and autoimmunity', 'Mitochondrial complex I deficiency, nuclear type 13', 'Sideroblastic anemia with B-cell immunodeficiency, periodic fevers, and developmental delay', 'Hemoglobin-Delta locus', 'Arthrogryposis, renal dysfunction, and cholestasis 2', 'Autoimmune lymphoproliferative syndrome', 'Blue rubber bleb nevus', 'Homocystinuria-megaloblastic anemia, cbl E type', 'Dyskeratosis congenita, autosomal dominant 3', 'Reynolds syndrome', 'Combined oxidative phosphorylation deficiency 4', 'Coenzyme Q10 deficiency, primary, 3', 'Autoimmune lymphoproliferative syndrome, type IIA', 'Megaloblastic anemia, folate-responsive', 'Apolipoprotein C-II deficiency', 'Erythroderma, lethal congenital', 'Methylmalonic aciduria and homocystinuria, Cblc type', 'Diarrhea 10, protein-losing enteropathy type', 'B-cell expansion with NFKB and T-cell anergy', 'Pancreatitis, hereditary', 'Hypercholanemia, familial', '3-Methylcrotonyl-CoA carboxylase 2 deficiency', 'Axial osteomalacia', 'Aicardi-Goutieres syndrome 6', 'Combined oxidative phosphorylation deficiency 43', 'Camurati-Engelmann disease', 'Thrombocytopenia, X-linked, with or without dyserythropoietic anemia', 'Hemangioma-Thrombocytopenia syndrome', 'Vasculitis, autoinflammation, immunodeficiency, and hematologic defects syndrome', 'Combined oxidative phosphorylation deficiency 8', 'Uridine 5-prime monophosphate hydrolase deficiency, hemolytic anemiadue to', 'Retinitis pigmentosa and erythrocytic microcytosis', 'Mitochondrial complex III deficiency, nuclear type 9', 'Diamond-Blackfan anemia 20', 'Porphyria, acute hepatic', 'Leukoencephalopathy, progressive, infantile-onset, with or without deafness', 'Glutaric acidemia I', 'Folate malabsorption, hereditary', 'Mitochondrial complex I deficiency, nuclear type 25', 'Periodic fever, immunodeficiency, and thrombocytopenia syndrome', 'Carbamoyl phosphate synthetase I deficiency, hyperammonemia due to', 'Aicardi-Goutieres syndrome 7', 'Mitochondrial DNA depletion syndrome 9 (encephalomyopathic type with methylmalonic aciduria)', 'Immunodeficiency 16', 'Combined oxidative phosphorylation deficiency 23', 'Combined oxidative phosphorylation deficiency 18', 'Storage pool platelet disease', 'Glutathione synthetase deficiency', 'Renal-hepatic-pancreatic dysplasia 1', 'Bile acid synthesis defect, congenital, 6', 'Coronary artery disease, autosomal dominant 2', 'Myeloperoxidase deficiency', 'Dyskeratosis congenita, autosomal recessive, 2', 'Methemoglobinemia due to deficiency of methemoglobin reductase', 'Osteopetrosis, autosomal recessive 7', 'Neutropenia, severe congenital, 6, autosomal recessive', 'Holocarboxylase synthetase deficiency', 'Erythroderma, congenital, with palmoplantar keratoderma, hypotrichosis, and hyper-ige', 'Inflammatory bowel disease, immunodeficiency, and encephalopathy', 'Cerebroretinal microangiopathy with calcifications and cysts 2', 'Hypophosphatasia, adult', 'Gracile syndrome', 'Factor XI deficiency', 'Hemolytic uremic syndrome, atypical, susceptibility to, 5', 'Epilepsy, progressive myoclonic, 4, with or without renal failure', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 4', 'Combined oxidative phosphorylation deficiency 53', 'Diabetes mellitus, permanent neonatal 1', 'Erythrocytosis 6', 'Chondroitin-6-Sulfaturia, defective cellular immunity, nephrotic syndrome', 'Elliptocytosis-3', 'Immunodeficiency 71 with inflammatory disease and congenital thrombocytopenia', 'Tangier disease', 'Isobutyryl-CoA dehydrogenase deficiency', 'Mitochondrial complex III deficiency, nuclear type 11', 'AMED syndrome, digenic', 'Osteosclerotic metaphyseal dysplasia', 'Amyloidosis, familial visceral', 'Congenital disorder of glycosylation, type IIh', 'Coenzyme Q10 deficiency, primary, 1', 'Lipoyltransferase 1 deficiency', 'Orthostatic hypotension 2', 'Hypophosphatasia, infantile', 'SPLENOMEGALY SYNDROME WITH SPLENIC GERMINAL CENTER HYPOPLASIA ANDREDUCED CIRCULATING T-HELPER CELLS', 'Chylomicronemia, familial, due to circulating inhibitor of lipoproteinlipase', 'Hypophosphatemic rickets, autosomal dominant', 'Kenny-caffey syndrome, type 2', 'Juvenile polyposis/hereditary hemorrhagic telangiectasia syndrome', 'Alagille syndrome 2', 'Glycogen storage disease VII', 'Dyskeratosis congenita, autosomal recessive 1', 'Argininemia', 'Mitochondrial DNA depletion syndrome 17', 'Mitochondrial complex IV deficiency, nuclear type 20', 'Premature aging syndrome, Okamoto type', 'Acrodermatitis enteropathica, Zinc-Deficiency type', '3-Methylglutaconic aciduria with deafness, encephalopathy, and leigh-like syndrome', 'Myopathy with exercise intolerance, Swedish type', 'Bone marrow failure syndrome 3', 'Chronic granulomatous disease 5, autosomal recessive', 'Ichthyosiform erythroderma, corneal involvement, and deafness', 'Hyperlipoproteinemia, type V', 'Peripheral neuropathy with variable spasticity, exercise intolerance, and developmental delay', 'Bare lymphocyte syndrome, type II', 'Mitochondrial myopathy, episodic, with optic atrophy and reversible leukoencephalopathy', 'Fanconi anemia, complementation group G', 'Immunodeficiency, common variable, 8, with autoimmunity', 'Macrocytosis, familial', 'THIOPURINE S-METHYLTRANSFERASE DEFICIENCY', 'Autoinflammation, immune dysregulation, and eosinophilia', '5-@oxoprolinase deficiency', 'Riboflavin deficiency', 'Diamond-Blackfan anemia-like', 'Mitochondrial DNA depletion syndrome 8A (encephalomyopathic type with renal tubulopathy)', 'Immune defect due to absence of thymus', 'Hemoglobin H disease', 'Immunodeficiency 92', 'Erythrocytosis, familial, 5', 'Erythrocytosis 7', 'Chronic atrial and intestinal dysrhythmia', 'Microcephaly, Amish type', 'Wt limb-blood syndrome', 'Glycogen storage disease Ic', 'Nephrotic syndrome, type 7', 'Forsythe-Wakeling syndrome', 'Diamond-Blackfan anemia 4', 'Blue diaper syndrome', 'Diamond-Blackfan anemia 17', 'Diamond-Blackfan anemia 6', 'Stomatin-deficient cryohydrocytosis with neurologic defects', 'Fanconi anemia, complementation group E', 'NEPHROSIALIDOSIS', 'Pyruvate carboxylase deficiency', 'Hypervalinemia or hyperleucine-isoleucinemia', 'Myelodysplasia and leukemia syndrome with monosomy 7', 'Mirage syndrome', 'Cardiofaciocutaneous syndrome 3', 'Gracile bone dysplasia', 'Adenosine triphosphate, elevated, of erythrocytes', 'Fanconi renotubular syndrome 3', 'Bleeding disorder, platelet-type, 15', 'Immunodeficiency 54', 'Combined oxidative phosphorylation deficiency 11', 'Mitochondrial complex IV deficiency, nuclear type 10', 'Peroxisome biogenesis disorder 5A (Zellweger)', 'Plasminogen activator inhibitor-1 deficiency', 'Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-negative, NK cell-negative, due to adenosine deaminase deficiency', 'Immunodeficiency, X-linked, with hyper-IgM', 'Neuraminidase deficiency', 'Mitochondrial complex I deficiency, nuclear type 29', 'Polycystic kidney disease 3', 'N-acetylglutamate synthase deficiency', '3-Methylglutaconic aciduria with cataracts, neurologic involvement, and neutropenia', 'Pituitary adenoma 4, ACTH-secreting, somatic', 'Glycogen storage disease, type IXa1', 'Immunodeficiency 105, severe combined', 'Sucrase-isomaltase deficiency, congenital', 'Fallot complex with severe mental and growth retardation', 'Chediak-Higashi syndrome', 'Athrombia, essential', 'DUBIN-JOHNSON syndrome', 'Vascular malformation, primary intraosseous', 'Combined oxidative phosphorylation deficiency 17', 'Mitochondrial complex IV deficiency, nuclear type 22', 'Lipodystrophy, familial partial, type 5', 'Myopathy, distal, Tateyama type', 'Myeloproliferative/lymphoproliferative neoplasms, familial (multiple types), susceptibility to', 'Meckel syndrome, type 7', 'Combined oxidative phosphorylation deficiency 2', 'Combined oxidative phosphorylation deficiency 31', 'Calvarial doughnut lesions with bone fragility', 'Anemia, congenital dyserythropoietic, type IIIb, autosomal recessive', 'Fanconi anemia', 'Preeclampsia/eclampsia 1', 'Renal tubular acidosis, proximal, with ocular abnormalities and mentalretardation', 'Diamond-Blackfan anemia 7', 'Autoinflammation, panniculitis, and dermatosis syndrome', 'Thrombocytopenia 2', 'Mitochondrial DNA depletion syndrome 5 (encephalomyopathic with or without methylmalonic aciduria)', 'Fanconi anemia, complementation group F', 'Nephrotic syndrome, type 1', 'Chanarin-Dorfman syndrome', 'Diabetes mellitus, neonatal, with congenital hypothyroidism', 'Porphyria cutanea tarda', '3-Methylcrotonyl-CoA carboxylase 1 deficiency', 'Immunodeficiency 31C', 'Combined oxidative phosphorylation deficiency 48', 'Hyperchlorhidrosis, isolated', 'Combined oxidative phosphorylation deficiency 46', 'Cystic fibrosis', 'Autoimmune polyendocrine syndrome, type II', 'COACH syndrome 3', 'Hawkinsinuria', 'Arteriosclerosis, severe juvenile', 'Elliptocytosis 2', 'Mitochondrial complex I deficiency, nuclear type 7', 'Fanconi anemia, complementation group D1', 'Congenital disorder of glycosylation, type Ix', 'STING-associated vasculopathy, infantile-onset', 'Autoimmune lymphoproliferative syndrome, type V', 'Fanconi anemia, complementation group C', 'Sengers syndrome', 'Mitochondrial complex III deficiency, nuclear type 7', 'Immunodeficiency 21', 'Mullerian derivatives, persistence of, with lymphangiectasia and postaxial polydactyly', 'Immunoosseous dysplasia, Schimke type', 'Microcephaly, congenital cataract, and psoriasiform dermatitis', 'Bleeding disorder, platelet-type, 25', 'Malignant hyperthermia, susceptibility to, 1', 'Hypophosphatemic bone disease', 'Fructose-1,6-bisphosphatase deficiency', 'Hutchinson-Gilford progeria syndrome', 'Erythrocytosis, familial, 1', 'Autoinflammatory syndrome, familial, with or without immunodeficiency', 'Severe combined immunodeficiency with sensitivity to ionizing radiation', 'PERSISTENT POLYCLONAL B-CELL LYMPHOCYTOSIS', 'Platelet disorder, familial, with associated myeloid malignancy', 'ACERULOPLASMINEMIA', 'Thrombocytopenia 4', 'Biliary atresia, extrahepatic', 'Agammaglobulinemia 9, autosomal recessive', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 2', 'Proteasome-associated autoinflammatory syndrome 4', 'Ectodermal dysplasia and immunodeficiency 2', 'Malonyl-CoA decarboxylase deficiency', 'Coenzyme Q10 deficiency, primary, 2', 'Kearns-Sayre syndrome', 'Hypercholanemia, familial 2', 'Mitochondrial DNA depletion syndrome 18', 'Lipodystrophy, familial partial, type 3', 'Congenital disorder of glycosylation, type Ia', 'Lymphoproliferative syndrome 3', 'Diamond-Blackfan anemia 9', 'Thrombophilia due to protein S deficiency, autosomal recessive', 'Von willebrand disease, type 2', 'Mitochondrial complex I deficiency, nuclear type 6', 'Mitochondrial complex IV deficiency, nuclear type 7', 'Mitochondrial complex IV deficiency, nuclear type 13', 'Von willebrand disease, X-linked form', 'Combined oxidative phosphorylation deficiency 55', 'Mitochondrial DNA depletion syndrome 19', 'Neurodevelopmental disorder with dysmorphic facies and ischiopubic hypoplasia', 'Familial apolipoprotein gene cluster deletion syndrome', 'Meckel syndrome 3', 'Hyaline fibromatosis syndrome', 'Pseudo-Von willebrand disease', 'Encephalopathy, ethylmalonic', 'Pseudohypoaldosteronism, type IIE', 'Autoinflammatory syndrome, familial, X-linked, Behcet-like 2', 'Corticosterone methyloxidase type I deficiency', 'Nephronophthisis 11', 'HDL deficiency, familial, 1', 'Renal tubular acidosis III', 'Pseudohypoaldosteronism, type IIC', 'Combined oxidative phosphorylation deficiency 5', 'Nephronophthisis 16', 'Pancreatic and cerebellar agenesis', 'Mucopolysaccharidosis-Plus syndrome', 'Tatsumi factor deficiency', 'Splenomegaly, cytopenia, and vision loss', 'Hypophosphatemic rickets, autosomal recessive', 'Factor V deficiency', 'Oslam syndrome', 'Immunodeficiency 41 with lymphoproliferation and autoimmunity', 'Mitochondrial complex I deficiency, nuclear type 1', '3-methylglutaconic aciduria, type VIII', 'Homozygous 11p15-p14 deletion syndrome', 'Epiphyseal chondrodysplasia, Miura type', 'D-bifunctional protein deficiency', 'Acetyl-CoA carboxylase deficiency', 'GM1-gangliosidosis, type II', 'Lipodystrophy, familial partial, type 2', 'Atelis syndrome 2', 'Congenital disorder of glycosylation, type Ic', 'Diabetes mellitus, ketosis-prone', 'Renal tubular acidosis, distal, with nephrocalcinosis, short stature, mental retardation, and distinctive facies', 'Pyropoikilocytosis, hereditary', 'Senior-Loken syndrome 9', 'Neutrophilic dermatosis, acute febrile', 'Peroxisome biogenesis disorder 6A (Zellweger)', 'Erythrocytosis, familial, 4', 'Hyperparathyroidism, neonatal self-limited primary, with hypercalciuria', 'Bleeding disorder, platelet-type, 8', 'Diabetes insipidus, nephrogenic, 2', 'Autoimmune lymphoproliferative syndrome, type IIB', 'Thiamine-Responsive megaloblastic anemia syndrome', 'Renal tubular acidosis, proximal', 'Mitochondrial complex I deficiency, nuclear type 5', 'Body mass index quantitative trait locus 20', 'Hypercholesterolemia, autosomal recessive', 'Spinocerebellar ataxia, autosomal recessive 21', 'Portal hypertension, noncirrhotic', 'Congenital disorder of glycosylation, type Il', 'Immunodeficiency 94 with autoinflammation and dysmorphic facies', 'Hemochromatosis, type 2A', 'Primordial dwarfism-immunodeficiency-lipodystrophy syndrome', 'Thrombocythemia 3', 'Bartter syndrome, type 1, antenatal', 'Glanzmann thrombasthenia 2', 'Giant platelet syndrome with thrombocytopenia', 'Diamond-Blackfan anemia 1', 'Homocystinuria due to cystathionine beta-synthase deficiency', 'Mitochondrial pyruvate carrier deficiency', 'Coumarin resistance', 'Leukocyte nuclear appendages, hereditary prevalence of', 'Giant neutrophil leukocytes', 'Hemopoietic proliferation', 'Car factor deficiency', 'Antithrombin, familial hemorrhagic diathesis due to', 'Platelet factor 3 deficiency', 'Pechet factor deficiency', 'HYPERHEPARINEMIA', 'Long-Chain 3-hydroxyacyl-coa dehydrogenase deficiency', 'Thrombocythemia 2', 'Mitochondrial phosphate carrier deficiency', 'Glanzmann thrombasthenia', 'Congenital disorder of glycosylation, type IIB', 'Cystinosis, nephropathic', 'Cryoglobulinemia, familial mixed', 'Intrinsic factor and R binder, combined congenital deficiency of', 'Immunodeficiency 60', 'Combined oxidative phosphorylation deficiency 38', 'Fish-Eye disease', 'Mitochondrial complex I deficiency, nuclear type 34', 'Diamond-Blackfan anemia 5', 'Carnitine palmitoyltransferase II deficiency, lethal neonatal', 'Short stature with microcephaly and distinctive facies', 'Mitochondrial complex IV deficiency, nuclear type 6', 'Cerebroretinal microangiopathy with calcifications and cysts 1', 'Gaucher disease, type IIIC', 'Diarrhea 9', 'Anemia, sideroblastic, X-linked', 'Mitochondrial complex IV deficiency, nuclear type 5, (French-Canadian)', 'Granulomatous disease, chronic, autosomal recessive, cytochrome b-positive, type II', 'Granulomatous disease, chronic, autosomal recessive, cytochrome b-positive, type I', 'Thrombocytopenia 3', 'Hemolytic uremic syndrome, atypical, 8, with rhizomelic short stature', 'Mitochondrial complex I deficiency, nuclear type 35', 'Hypothyroidism, congenital, nongoitrous, 6', 'Proteasome-associated autoinflammatory syndrome 1 and digenic forms', 'Fabry disease', 'Pancreatic beta cell agenesis with neonatal diabetes mellitus', 'Malignant hyperthermia, susceptibility to, 4', 'Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-positive, NK cell-positive', 'Pseudohypoaldosteronism, type IB3, autosomal recessive', 'Cardiac valvular defect, developmental', 'Immunodeficiency due to purine nucleoside phosphorylase deficiency', 'Erythrocytosis, familial, 2', 'Hypertriglyceridemia 2', 'Epileptic encephalopathy, early infantile, 82', 'Lymphedema, hereditary, III', 'Bartter syndrome, type 2', 'Polycystic kidney disease 2', 'Diamond-Blackfan anemia 8', 'Radioulnar synostosis with amegakaryocytic thrombocytopenia', 'Mitochondrial complex III deficiency, nuclear type 8', 'Lymphangiectasia, intestinal', 'Autoinflammatory syndrome, familial, Behcet-like', 'Factor VIII deficiency', 'Pancreatic agenesis and congenital heart defects', 'Scott syndrome', 'Diamond-Blackfan anemia 13', 'Hypophosphatemic rickets, autosomal recessive, 2', 'Krabbe disease', 'Fanconi anemia, complementation group R', 'Peroxisome biogenesis disorder 4B', 'Tubulointerstitial kidney disease, autosomal dominant, 4', 'Atherosclerosis susceptibility', 'Primary release disorder of platelets', 'Nephrolithiasis/osteoporosis, hypophosphatemic, 2', 'Immunodeficiency, common variable, 2', 'GRANULOMATOUS DISEASE, CHRONIC, AUTOSOMAL RECESSIVE, CYTOCHROME b-NEGATIVE', 'Microcephaly, epilepsy, and diabetes syndrome 2', 'Hypogonadotropic hypogonadism 18 with or without anosmia', 'Multiple acyl-CoA-dehydrogenase deficiency', 'Thrombocytopenia, Paris-Trousseau type', 'Trichohepatoenteric syndrome 2', 'Mitochondrial complex I deficiency, nuclear type 3', 'Hypokalemic alkalosis, familial, with specific renal tubulopathy', 'Hatipoglu immunodeficiency syndrome', 'Paget disease of bone 5, juvenile-onset', 'Diabetes mellitus, transient neonatal, 1', 'Noonan syndrome 1', 'Diamond-Blackfan anemia 21', 'Combined oxidative phosphorylation deficiency 28', 'Chromosome 5q deletion syndrome', 'Phenformin 4-hydroxylation', 'Cholestasis, benign recurrent intrahepatic 1', 'Glut1 deficiency syndrome 2', 'Afibrinogenemia, congenitalhypofibrinogenemia, congenital, included', 'Coenzyme Q10 deficiency, primary, 5', 'Combined oxidative phosphorylation deficiency 13', 'Maturity-Onset diabetes of the young, type 8, with exocrine dysfunction', 'ABETALIPOPROTEINEMIA', 'Edinburgh malformation syndrome', 'Tubulointerstitial kidney disease, autosomal dominant, 5', 'Pontocerebellar hypoplasia, hypotonia, and respiratory insufficiency syndrome, neonatal lethal', 'Thrombophilia due to histidine-rich glycoprotein deficiency', 'Platelet-Activating factor acetylhydrolase deficiency', 'Sulfhemoglobinemia, congenital', 'Vitamin d-dependent rickets, type 3', 'Glycerol kinase deficiency', 'Prune belly syndrome with pulmonic stenosis, mental retardation, anddeafness', 'Telangiectasia, hereditary hemorrhagic, type 2', 'Hyperostosis corticalis generalisata', 'Factor V and factor VIII, combined deficiency of, with normal proteinc and protein C inhibitor', 'Factor V and factor VIII, combined deficiency of', 'Wolfram syndrome 1', 'Systemic lupus erythematosus', 'Fanconi anemia, complementation group D2', 'Combined oxidative phosphorylation deficiency 3', 'Proteasome-Associated autoinflammatory syndrome 2', 'Immunodeficiency 73A with defective neutrophil chemotaxix and leukocytosis', 'Cardiomyopathy, familial hypertrophic, 4', 'Spastic paraplegia and Evans syndrome', 'Nephronophthisis 1', 'Inflammatory skin and bowel disease, neonatal, 2', 'Acth deficiency, isolated', 'Neurodevelopmental disorder with poor growth, spastic tetraplegia, and hearing loss', 'Gastrointestinal ulceration, recurrent, with dysfunctional platelets', 'Immunodeficiency 80 with or without cardiomyopathy', 'Combined oxidative phosphorylation deficiency 21', 'Methylmalonic aciduria and homocystinuria, Cbld type', 'Nephrolithiasis/osteoporosis, hypophosphatemic, 1', 'Juvenile arthritis', 'Camurati-engelmann disease, type 2', 'Pseudohypoaldosteronism, type II', 'Vitamin D hydroxylation-deficient rickets, type 1B', 'Biotinidase deficiencymultiple carboxylase deficiency, late-onset', 'Diarrhea 5, with tufting enteropathy, congenital', 'Monocarboxylate transporter 1 deficiency', 'Multiple mitochondrial dysfunctions syndrome 1', 'VEXAS syndrome, somatic', 'Glycogen storage disease 0, liver', 'Bleeding disorder, platelet-type, 11', 'Mitochondrial complex I deficiency, nuclear type 16', 'Mitochondrial complex I deficiency, nuclear type 15', 'Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-negative, NK cell-positive', 'Autoimmune disease, multisystem, infantile-onset, 1', 'Respiratory infections, recurrent, and failure to thrive with or without diarrhea', 'Peroxisome biogenesis disorder 11A (Zellweger)', 'Factor XIIIB deficiency', 'Agammaglobulinemia 3, autosomal recessive', 'Peroxisome biogenesis disorder 12A (Zellweger)', 'Immunodeficiency 19', 'Bile acid malabsorption, primary', 'Quebec platelet disorder', 'Hypercalcemia, infantile, 1', 'Liddle syndrome 3', 'Leigh syndrome', 'Whim syndrome', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 5', 'LIG4 syndrome', 'Ovalocytosis, hereditary hemolytic', 'Spherocytosis, autosomal recessive', 'Vitamin K-dependent clotting factors, combined deficiency of, 2', 'Gallbladder, agenesis of', 'Polyposis syndrome, hereditary mixed, 1', 'Dent disease 2', 'Thrombocytopenia, autosomal dominant, 7', 'Factor XIII, A subunit, deficiency of', 'Kenny-caffey syndrome, type 1', 'Immunodeficiency 109 with lymphoproliferation', 'Pseudohypoaldosteronism, type IB2, autosomal recessive', 'Neurodevelopmental disorder with poor growth, large ears, and dysmorphic facies', 'Aicardi-Goutieres syndrome 1', 'Combined oxidative phosphorylation deficiency 33', 'Supravalvular aortic stenosis', 'Griscelli syndrome, type 2', 'Malignant hyperthermia, susceptibility to, 2', 'Factor VII deficiency', 'Succinic acidemia', 'Carnitine-acylcarnitine translocase deficiency', 'Combined oxidative phosphorylation deficiency 27', 'Pigmented nodular adrenocortical disease, primary, 4', 'Osteogenesis imperfecta, type XXIII', 'Ovarian hyperstimulation syndrome', 'Felty syndrome', 'Formiminotransferase deficiency', 'Immunodeficiency 75', 'Mitochondrial complex I deficiency, nuclear type 8', 'Hypoalphalipoproteinemia, primary, 2, intermediate', 'Alpha-1-Antitrypsin deficiency', 'Bleeding disorder, platelet-type, 20', 'Hypogonadotropic hypogonadism 20 with or without anosmia', 'Aicardi-Goutieres syndrome 3', '3-hydroxyisobutryl-CoA hydrolase deficiency', 'Nephronophthisis 4', 'Peroxisome biogenesis disorder 7B', 'Pancreatic agenesis, congenital', 'Familial Mediterranean fever, AR', 'Combined oxidative phosphorylation deficiency 45', 'Congenital disorder of glycosylation, type Iw', 'Alagille syndrome 1', 'Retinitis pigmentosa 59', 'Histiocytosis-lymphadenopathy plus syndrome', 'Glyoxalase II deficiency', 'Pseudoxanthoma elasticum-like disorder with multiple coagulation factor deficiency', 'Rhizomelic chondrodysplasia punctata, type 3', 'Immunodeficiency with hyper-IgM, type 4', 'Hypophosphatemic rickets with hypercalciuria, hereditary', 'Sulfide:quinone oxidoreductase deficiency', 'Congenital disorder of glycosylation, type In', 'Glycogen storage disease II', 'Hypertriglyceridemia, familial', 'Maturity-onset diabetes of the young, type 13', 'Abdominal obesity-metabolic syndrome 3', 'Pancreatic insufficiency, combined exocrine', 'Osteochondrodysplasia, rhizomelic, with callosal agenesis, thrombocytopenia,hydrocephalus, and hypertension', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 2', 'Lipodystrophy, congenital generalized, type 2', 'Glycogen storage disease III', 'Multiple mitochondrial dysfunctions syndrome 5', 'Pontocerebellar hypoplasia, type 15', 'Myopathy, mitochondrial, lethal infantile', 'Hypermetabolism due to uncoupled mitochondrial oxidative phosphorylation 2', 'Diamond-Blackfan anemia 11', 'XFE progeroid syndrome', 'Polyposis, skin pigmentation, alopecia, and fingernail changes', 'Malignant hyperthermia, susceptibility to, 3', 'Mitochondrial complex I deficiency, nuclear type 30', 'Immunodeficiency 78 with autoimmunity and developmental delay', 'Lung disease, immunodeficiency, and chromosome breakage syndrome', 'Jejunal atresia', 'Diamond-blackfan anemia 10', 'Lymphangiectasia, pulmonary, congenital', 'VALINEMIA', 'Coproporphyria', 'Maple syrup urine disease', 'Aortic valve disease 2', 'Hepatorenocardiac degenerative fibrosis', 'Alpha-methylacetoacetic aciduria', 'Fanconi renotubular syndrome 2', 'Marbach-Rustad progeroid syndrome', 'Mitochondrial complex I deficiency, nuclear type 33', 'DEGCAGS syndrome', 'Mental retardation, enteropathy, deafness, peripheral neuropathy, ichthyosis, and keratoderma', 'Mitochondrial complex I deficiency, nuclear type 26', 'Pyruvate dehydrogenase E1-beta deficiency', 'Mitochondrial complex IV deficiency, nuclear type 2', 'Retinitis pigmentosa 89', 'Hyperornithinemia-hyperammonemia-homocitrullinemia syndrome', 'Deoxyribose-5-Phosphate aldolase deficiency', 'Mitochondrial complex I deficiency, nuclear type 37', 'Immunoerythromyeloid hypoplasia', 'Coronary artery disease, autosomal dominant, 1', 'Hermansky-Pudlak syndrome 2', 'Immunodeficiency 17', 'Chronic granulomatous disease, X-linked', 'Atelis syndrome 1', 'Pyruvate dehydrogenase phosphatase deficiency', 'Scid, autosomal recessive, T-Negative/b-Positive type', 'Short stature, Dauber-Argente type', 'Mitochondrial complex IV deficiency, nuclear type 11', 'Vitamin D hydroxylation-deficient rickets, type 1A', 'Mitochondrial DNA depletion syndrome 12 (cardiomyopathic type)', 'Mitochondrial complex IV deficiency, nuclear type 21', 'Paroxysmal nocturnal hemoglobinuria 2', 'Hydrops fetalis, nonimmune', 'Mitochondrial DNA depletion syndrome 13 (encephalomyopathic type)', 'Hyperglycinemia, lactic acidosis, and seizures', 'Immunodeficiency 15', 'Hyperlipidemia, familial combined, 3', 'Cartilage-hair hypoplasia', 'Spinocerebellar ataxia, autosomal recessive 30', 'Noonan syndrome 8', 'Neutropenia, severe congenital, 9, autosomal dominant', 'Holoprosencephaly 12 with or without pancreatic agenesis', 'Hypophosphatemic rickets, X-linked dominant', 'Immunodeficiency 73B with defective neutrophil chemotaxis and lymphopenia', '3-methylglutaconic aciduria, type VIIA, autosomal dominant', 'Glutathione peroxidase deficiency', 'Mitochondrial complex II deficiency, nuclear type 3', 'Scleroderma, familial progressive', 'Encephalopathy due to defective mitochondrial and peroxisomal fission 1', 'Hypogonadotropic hypogonadism 19 with or without anosmia', 'Fanconi anemia, complementation group Q', 'Donohue syndrome', 'Mitochondrial complex IV deficiency, nuclear type 16', 'Autoimmune disease, multisystem, with facial dysmorphism', 'Xanthinuria, type I', 'Hepatic lipase deficiency', 'Deafness, autosomal dominant 1', 'Sarcoidosis, susceptibility to, 1', 'Immunodeficiency 10', 'Congenital disorder of glycosylation with defective fucosylation 1', 'Bleeding disorder, platelet-type, 9', 'Al-Gazali syndrome', 'Multiple mitochondrial dysfunctions syndrome 6', 'Immunodeficiency 73C with defective neutrophil chemotaxis and hypogammaglobulinemia', 'Alcohol sensitivity, acute', 'Acatalasemia', 'Bone marrow failure syndrome 5', 'Amyotrophic lateral sclerosis 20', 'Lipodystrophy, familial partial, type 6', 'Stuve-Wiedemann syndrome 2', 'Sudden cardiac failure, infantile', 'Hypoalphalipoproteinemia, primary, 2', 'Arima syndrome', 'Wiskott-Aldrich syndrome 2', 'Peutz-Jeghers syndrome', 'Adams-Oliver syndrome 6', 'Hypercholesterolemia, familial, 1', 'Spondyloepiphyseal dysplasia, Kondo-Fu type', 'Liddle syndrome 2', 'Cardiac valvular dysplasia 2', 'Mitochondrial DNA depletion syndrome 1 (MNGIE type)', 'Anemia, nonspherocytic hemolytic, associated with abnormality of redcell membrane', 'Campomelia, Cumming type', 'Dyskeratosis congenita, autosomal dominant 6', 'Acyl-Coa dehydrogenase, short-chain, deficiency of', 'Nephronophthisis 18', 'Senior-Loken syndrome 4', 'Silver-Russell syndrome 4', 'Heinz body anemias', 'Adams-Oliver syndrome 5', 'Immunoglobulin A deficiency 1', 'Intestinal dysmotility syndrome', 'Immunodeficiency 102', 'Hyper-Igd syndrome', 'Wolfram syndrome 2', 'Von willebrand disease, type 1', 'Gitelman syndrome', 'Fanconi anemia, complementation group P', 'Dyskeratosis congenita, autosomal recessive 5', 'Mitochondrial complex V (atp synthase) deficiency, nuclear type 3', 'Lipodystrophy, familial partial, type 4', 'VITAMIN K-DEPENDENT CLOTTING FACTORS, COMBINED DEFICIENCY OF, 1', 'Vitamin D-dependent rickets type 2B with normal vitamin D receptor', 'Osteogenesis imperfecta, type XVI', 'Pseudohypoaldosteronism, type IID', 'Osteopetrosis, autosomal dominant 2', 'Paget disease of bone 3', 'Hermansky-Pudlak syndrome 6', 'Right atrial isomerism (Ivemark)', 'Mucopolysaccharidosis type IIIA', 'Hepatic venoocclusive disease with immunodeficiency', 'Adenylate kinase deficiency, hemolytic anemia due to', '6-@phosphogluconolactonase deficiency', 'Mitochondrial complex I deficiency, nuclear type 22', 'Dk phocomelia syndrome', 'Parana hard-skin syndrome', 'Hyperinsulinemic hypoglycemia, familial, 6', 'Hypertrophic osteoarthropathy, primary, autosomal recessive 2', 'GLYCINE N-METHYLTRANSFERASE DEFICIENCY', 'Neutropenia, severe congenital, 7, autosomal recessive', 'Hypoprebetalipoproteinemia, acanthocytosis, retinitis pigmentosa,and pallidal degeneration', 'Ossification of the posterior longitudinal ligament of spine', 'Pernicious anemia', 'Osteoporosis, juvenile', 'Very long-chain acyl-CoA dehydrogenase deficiency', 'Beemer lethal malformation syndrome', 'Immunodeficiency, common variable, 11', 'C1q deficiency 2', 'Mitochondrial complex I deficiency, nuclear type 9', 'Lipodystrophy, familial partial, type 1', 'Tubulointerstitial kidney disease, autosomal dominant, 2', 'Epilepsy, hearing loss, and mental retardation syndrome', 'Sandhoff disease', 'Neurodevelopmental disorder with or without autism or seizures', 'Ascites, chylous', 'Hyperoxaluria, primary, type I', 'Mitochondrial complex IV deficiency, nuclear type 15', 'Renal cysts and diabetes syndrome', 'Pulmonic stenosis', 'Encephalopathy, neonatal severe, with lactic acidosis and brain abnormalities', 'Neurodevelopmental disorder with epilepsy and hemochromatosis', 'Immunodeficiency, common variable, 1', 'Immunodeficiency 14B, autosomal recessive', 'Specific granule deficiency', 'Short-rib thoracic dysplasia 9 with or without polydactyly', 'Ichthyosis, hepatosplenomegaly, and cerebellar degeneration', 'Myelofibrosis with myeloid metaplasia, somatic', 'ABCD syndrome', 'ACTH-independent macronodular adrenal hyperplasia 2', 'Coach syndrome 2', 'Mitochondrial complex I deficiency, nuclear type 28', 'Immunodeficiency 84', 'Mucopolysaccharidosis type IIIB', 'Lipodystrophy, generalized, with mental retardation, deafness, short stature, and slender bones', 'Mitochondrial complex V (ATP synthase) deficiency nuclear type 5', 'Immunodeficiency 57', 'Familial cold autoinflammatory syndrome 2', 'Paget disease of bone 4', 'Nephrotic syndrome, type 2', 'Mitochondrial complex I deficiency, nuclear type 24', 'Sitosterolemia 2', 'Ovarian dysgenesis 8', 'Liddle syndrome 1', 'Telangiectasia, hereditary hemorrhagic, type 1', 'Imerslund-Grasbeck syndrome 2', 'Adenine phosphoribosyltransferase deficiency', 'Candidiasis, familial chronic mucocutaneous, autosomal recessive', 'Immunodeficiency 76', 'Oxoglutarate dehydrogenase deficiency', 'Pelger-Huet anomaly', 'Senior-Loken syndrome 1', 'Glycoprotein storage disease', 'Epileptic encephalopathy, early infantile, 51', 'Bone marrow failure and diabetes mellitus syndrome', 'Protoporphyria, erythropoietic, 2', 'Aural atresia, multiple congenital anomalies, and mental retardation', 'Graves disease', 'Moyamoya disease 6 with achalasia', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 3', 'von Hippel-Lindau syndrome', 'Neurodevelopmental disorder, mitochondrial, with abnormal movements and lactic acidosis, with or without seizures', 'Estrogen resistance', 'Osteogenesis imperfecta, type II', 'Hyperaldosteronism, familial, type III', 'GM1-gangliosidosis, type I', 'Obesity and hypopigmentation', 'Bone marrow failure syndrome 1', 'HYPERLEUCINE-ISOLEUCINEMIA', 'Tropical calcific pancreatitis', 'Hypogonadotropic hypogonadism 21 with or without anosmia', 'North american indian childhood cirrhosis', 'Nephronophthisis 2', 'Pulmonary hypertension, primary, 1', 'Rickets, vitamin D-resistant, type IIA', '2,4-dienoyl-CoA reductase deficiency', 'Leukotriene C4 synthase deficiency', 'Acrocephalopolydactylous dysplasia', 'Immunodeficiency 42', 'Peroxisome biogenesis disorder 11B', 'Beta-ureidopropionase deficiency', 'Combined saposin deficiency', 'Dyskeratosis congenita, X-linked', 'Immunodeficiency 12', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 6', 'Digeorge syndrome', 'Atrial septal defect 2', 'Immunodeficiency 59 and hypoglycemia', 'Heterotaxy, visceral, 4, autosomal', 'Hypoaldosteronism, congenital, due to CMO II deficiency', 'Hermansky-Pudlak syndrome 9', 'Short-Rib thoracic dysplasia 1 with or without polydactyly', 'Noonan syndrome 4', 'Erythrocytosis, familial, 3', 'Retinal arterial macroaneurysm with supravalvular pulmonic stenosis', 'Hypotonia-cystinuria syndrome', 'Hypokalemic tubulopathy and deafness', 'Lowe syndrome', 'Pulmonic stenosis, atrial septal defect, and unique electrocardiographicabnormalities', 'Hall-Riggs mental retardation syndrome', 'Mungan syndrome', 'Immunodeficiency, common variable, 6', 'Noonan syndrome 12', 'Alstrom syndrome', 'Glycogen storage disease XI', 'Immunodeficiency, common variable, 7', 'Immunodeficiency 85 and autoimmunity', 'Mitochondrial complex I deficiency, nuclear type 14', 'Polycystic kidney disease 4 with or without polycystic liver disease', 'Nephropathy, progressive tubulointerstitial, with cholestatic liverdisease', 'Peroxisome biogenesis disorder 3A (Zellweger)', 'Pontocerebellar hypoplasia, type 13', 'Perlman syndrome', 'Squalene synthase deficiency', 'OSTEOPOROSIS', 'Coenzyme Q10 deficiency, primary, 7', 'Polycystic liver disease 2', 'D-glyceric aciduria', 'Paget disease of bone 6', 'Immunodeficiency 72 with autoinflammation', 'Bangstad syndrome', 'Neurodevelopmental disorder with microcephaly, cataracts, and renal abnormalities', 'Hermansky-Pudlak syndrome 4', 'Epidermolysis bullosa dystrophica, autosomal recessive', 'Coach syndrome 1', 'Hypercholesterolemia, familial, 2', 'Cephalin lipidosis', 'Osteogenesis imperfecta, type XI', 'Dwarfism, Levi type', 'Adrenal hyperplasia, congenital, due to 17-alpha-hydroxylase deficiency', 'Lipodystrophy, congenital generalized, type 1', 'Congenital heart defects, multiple types, 7', 'Hyperlipoproteinemia, type II, and deafness', 'Hemolytic anemia due to glutathione reductase deficiency', 'Periodic fever, familial, autosomal dominant', 'Obesity, early-onset, with adrenal insufficiency and red hair', 'Gastritis, familial giant hypertrophic', 'Noonan syndrome-like disorder with or without juvenile myelomonocytic leukemia', 'Mitochondrial myopathy with lactic acidosis', 'Mucolipidosis III gamma', 'Renal tubular acidosis, distal, autosomal dominant', 'Diabetes mellitus, transient neonatal, 3', 'Myopathy, isolated mitochondrial, autosomal dominant', 'Molybdenum cofactor deficiency, complementation group C', 'Khan-Khan-Katsanis syndrome', 'Neutral lipid storage disease with myopathy', 'Ataxia-oculomotor apraxia 4', 'Iron overload, susceptibility to', 'Mucopolysaccharidosis type IVB (Morquio)', 'Larsen-like syndrome, Lethal type', 'Mandibuloacral dysplasia progeroid syndrome', 'Succinyl CoA:3-oxoacid CoA transferase deficiency', 'Gastrointestinal defects and immunodeficiency syndrome', 'Myeloproliferative disease, autosomal recessive', 'Fanconi anemia, complementation group S', 'OBESITY', 'Congenital disorder of glycosylation, type IIg', 'Hemolytic anemia due to elevated adenosine deaminase', 'Spinal muscular atrophy, type I, with congenital bone fractures', 'Rhizomelic chondrodysplasia punctata, type 2', 'Maturity-onset diabetes of the young, type 14', 'Nephrotic syndrome, type 6', 'Epileptic encephalopathy, early infantile, 53', 'Epileptic encephalopathy, early infantile, 36', 'Cranioectodermal dysplasia', 'Hyperparathyroidism, transient neonatal', 'Tumoral calcinosis, hyperphosphatemic, familial, 3', 'Mitochondrial myopathy, encephalopathy, lactic acidosis, and stroke-like episodes', 'Congenital disorder of glycosylation, type Ii', 'Cerebrotendinous xanthomatosis', 'Metabolic encephalomyopathic crises, recurrent, with rhabdomyolysis, cardiac arrhythmias, and neurodegeneration', 'Hypophosphatemic rickets and hyperparathyroidism', 'Mitochondrial complex I deficiency, nuclear type 4', 'Intellectual developmental disorder, autosomal recessive 1', 'Crigler-najjar syndrome, type II', 'Hyperbilirubinemia, conjugated, type III', 'Wiskott-Aldrich syndrome', 'Diabetes mellitus, permanent neonatal 3, with or without neurologic features', 'Autoinflammatory disease, systemic, X-linked', 'Angioedema, hereditary, 1', 'Hemoglobin-Variants for which the chain carrying the mutation isunknown or uncertain', 'Agammaglobulinemia 1, autosomal recessive', 'Hypopigmentation, organomegaly, and delayed myelination and development', 'Pulmonic stenosis and deafness', 'Combined oxidative phosphorylation deficiency 22', 'Hypobetalipoproteinemia, familial, 2', 'Perrault syndrome 5', 'Porphyria, acute intermittent', 'Cardiomyopathy, dilated, 2C', 'Mitochondrial DNA depletion syndrome 7 (hepatocerebral type)', 'Immunodeficiency 99 with hypogammaglobulinemia and autoimmune cytopenias', 'Congenital disorder of glycosylation, type IE', 'Klippel-Trenaunay-Weber syndrome', 'Anemia, autoimmune hemolytic', 'Budd-Chiari syndrome', 'Immunodeficiency 9', 'Pitt-Hopkins-Like syndrome 2', 'Congenital heart defects, multiple types, 6', 'Inflammatory skin and bowel disease, neonatal, 1', 'Inclusion body myopathy with early-onset Paget disease with or without frontotemporal dementia 2', 'Spondyloepimetaphyseal dysplasia, Shohat type', 'Immunodeficiency 43', 'Glomerulopathy with fibronectin deposits 1', 'Hyperinsulinemic hypoglycemia, familial, 8', 'Intrauterine growth retardation with increased mitomycin C sensitivity', 'Lactase persistence/nonpersistence', 'Visceral myopathy, familial, with external ophthalmoplegia', 'Tricarboxylic acid cycle, defect of', 'Glycogen storage disease of heart, lethal congenital', 'Hypogonadotropic hypogonadism 15 with or without anosmia', 'Congenital disorder of glycosylation, type IQ', '3-methylglutaconic aciduria, type I', 'Diamond-Blackfan anemia 15 with mandibulofacial dysostosis', 'Congenital disorder of glycosylation, type Iy', 'Myoclonic epilepsy associated with ragged-red fibers', 'Diarrhea 2, with microvillous atrophy', 'Pulmonary alveolar proteinosis with hypogammaglobulinemia', 'Deeah syndrome', 'Immunodeficiency, developmental delay, and hypohomocysteinemia', 'Gnathodiaphyseal dysplasia', 'Pituitary hormone deficiency, combined, 1', 'Progeroid short stature with pigmented nevi', 'Lymphedema, primary, with myelodysplasia', 'Hermansky-Pudlak syndrome 3', 'Peroxisome biogenesis disorder 8B', 'Hyperinsulinemic hypoglycemia, familial, 1', 'Hemophilia B', 'Combined oxidative phosphorylation deficiency 20', 'Immunodeficiency 53', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 4', 'Noonan syndrome-like with loose anagen hair 1', 'Tn polyagglutination syndrome', 'Geleophysic dysplasia 1', 'Hyperparathyroidism 4', 'Trichothiodystrophy 3, photosensitive', 'Hydroxykynureninuria', 'Hypereosinophilic syndrome, idiopathic', 'Hypercalcemia, infantile 2', 'Hyperbilirubinemia, familial transient neonatal', 'SULFOCYSTEINURIA', 'Peroxisome biogenesis disorder 4A (Zellweger)', 'Spinal muscular atrophy, segmental', 'Congenital disorder of glycosylation, type IIf', 'Galactosemia IV', 'Ichthyosis, congenital, autosomal recessive 4A', 'Osteochondrodysplasia, complex lethal, Symoens-Barnes-Gistelinck type', 'Angioedema, hereditary, 8', 'Combined oxidative phosphorylation deficiency 7', 'Mitochondrial complex IV deficiency, nuclear type 18', 'Hurler-Scheie syndrome', 'Kagami-Ogata syndrome', 'Nephrotic syndrome, type 15', 'Ventricular septal defect 1', 'Congenital disorder of glycosylation, type Im', 'Atrial standstill 2', 'Immunodeficiency 108 with autoinflammation', 'Aortic aneurysm, familial thoracic 4', 'Immunodeficiency-Centromeric instability-facial anomalies syndrome', 'Peroxisome biogenesis disorder 2A (Zellweger)', 'Neurodevelopmental disorder with dysmorphic facies, impaired speech and hypotonia', 'Bleeding disorder, platelet-type, 14', 'Coenzyme Q10 deficiency, primary, 4', 'Pancreatic lipase deficiency', 'Fucosidosis', 'Hypomagnesemia 7, renal, with or without dilated cardiomyopathy', 'Peroxisome biogenesis disorder 7A (zellweger)', 'Silver-Russell syndrome 5', 'Craniometadiaphyseal dysplasia', 'Osteogenesis imperfecta, type XXII', 'Fanconi anemia, complementation group L', 'Braddock-Carey syndrome 2', 'Neurologic, endocrine, and pancreatic disease, multisystem, infantile-onset', 'Mitochondrial complex I deficiency, nuclear type 18', 'Fatal familial insomnia', 'Bladder dysfunction, autonomic, with impaired pupillary reflex and secondary CAKUT', 'Lipodystrophy, partial, acquired, susceptibility to', 'Pigmented nodular adrenocortical disease, primary, 2', 'Singleton-Merten syndrome 2', 'Multiple mitochondrial dysfunctions syndrome 3', 'Hypercholesterolemia, familial, 3', 'Metabolic crises, recurrent, with variable encephalomyopathic features and neurologic regression', 'Amyotrophic lateral sclerosis 21', 'LMNA-related congenital muscular dystrophy', 'Teratoma, pineal', 'Hyperthermia, cutaneous, with headaches and nausea', 'Insulin-Like growth factor I deficiency', 'Combined oxidative phosphorylation deficiency 44', 'Lethal congenital contracture syndrome 1', 'Dyskeratosis congenita, autosomal recessive 6', 'Myoglobinuria, acute recurrent, autosomal recessive', 'Woronets trait', 'Thrombocytopenia 1', 'Central hypoventilation syndrome, congenital, 3', 'Focal segmental glomerulosclerosis 6', 'Peroxisomal acyl-CoA oxidase deficiency', 'Crigler-Najjar syndrome, type I', 'Pseudohypoaldosteronism, type IIB', 'Oculoskeletodental syndrome', 'Mitochondrial complex I deficiency, nuclear type 23', 'Trichohepatoneurodevelopmental syndrome', 'Mucopolysaccharidosis, type VI', 'Molybdenum cofactor deficiency, complementation group A', 'Hemolytic anemia with thermal sensitivity of red cells', 'Pancreatic agenesis 2', 'Mitochondrial short-chain enoyl-coa hydratase 1 deficiency', 'Cystinosis, late-onset juvenile or adolescent nephropathic', 'Arterial calcification, generalized, of infancy, 2', 'Poikiloderma with neutropenia', 'Short stature and microcephaly with genital anomalies', 'Pontocerebellar hypoplasia, type 6', 'Exudative vitreoretinopathy 4', 'Heterotaxy, visceral, 12, autosomal', 'Combined oxidative phosphorylation deficiency 24', 'Combined oxidative phosphorylation deficiency 29', 'Cranioacrofacial syndrome', 'Duodenal ulcer, hyperpepsinogenemic I', 'Nephrotic syndrome, type 3', 'Charcot-Marie-Tooth disease, type 4K', 'Thrombocytopenia-absent radius syndrome', 'Weill-Marchesani syndrome 3', 'Immunodeficiency 14', 'Dihydropyrimidine dehydrogenase deficiency', 'Familial expansile osteolysis', 'Hyperalphalipoproteinemia 1', 'Spondyloepimetaphyseal dysplasia, Krakow type', 'Mucolipidosis II alpha/beta', 'Fetal hemoglobin quantitative trait locus 1', 'Severe combined immunodeficiency, X-linked', 'Bone fragility with contractures, arterial rupture, and deafness', 'Nestor-Guillermo progeria syndrome', 'Revesz syndrome', 'Immunodeficiency, common variable, 12', 'Congenital disorder of deglycosylation 1', 'Thyrotoxic periodic paralysis, susceptibility to, 1', 'Glucocorticoid resistance', 'Cardiofacioneurodevelopmental syndrome', 'Bleeding disorder, platelet-type, 22', 'Peroxisome biogenesis disorder 1B', 'Disorganization, mouse, homolog of', 'Microcephaly, postnatal progressive, with seizures and brain atrophy', 'Combined osteogenesis imperfecta and Ehlers-Danlos syndrome 1', 'Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 1', 'Heterotaxy, visceral, 1, X-linked', 'Neurodegeneration, early-onset, with choreoathetoid movements and microcytic anemia', 'Epiphyseal dysplasia, multiple, with early-onset diabetes mellitus', 'Bruck syndrome 2', 'Deafness, nerve type, with mesenteric diverticula of small bowel andprogressive sensory neuropathy', 'Hyperinsulinemic hypoglycemia, familial, 2', 'Encephalopathy, acute, infection-induced, susceptibility to, 4', 'Multiple mitochondrial dysfunctions syndrome 2 with hyperglycinemia', 'RECON progeroid syndrome', 'Seckel syndrome 4', 'Hennekam lymphangiectasia-lymphedema syndrome 2', 'Antithrombin III deficiency', 'Rhizomelic syndrome', 'Fanconi anemia, complementation group W', 'Mitochondrial complex IV deficiency, nuclear type 23', 'Muscular dystrophy, congenital hearing loss, and ovarian insufficiency syndrome', 'Cerebrooculofacioskeletal syndrome 1', 'Spinal muscular atrophy, distal, autosomal recessive, 1', 'Hemolytic anemia, congenital, X-linked', 'Hyperlysinemia, type I', 'Plasma fibronectin deficiency', 'Galactokinase deficiency', 'Microcephaly 19, primary, autosomal recessive', 'Hermansky-Pudlak syndrome 5', 'Proprotein convertase 1/3 deficiency', 'Retinal dystrophy and microvillus inclusion disease', 'Hyperlysinuria with hyperammonemia', 'Thyrocerebroretinal syndrome', 'Mesoaxial hexadactyly and cardiac malformation', 'Immunodeficiency 36', 'Plasminogen deficiency, type I', 'Heparin cofactor II deficiency', 'Smith-Lemli-Opitz syndrome', 'Leber optic atrophy and dystonia', 'Congenital disorder of glycosylation, type IIt', 'Geleophysic dysplasia 2', 'Hypogonadotropic hypogonadism 4 with or without anosmia', 'Breath-Holding spells', 'Immunodeficiency 55', 'Ruijs-Aalfs syndrome', 'Ataxia-telangiectasia', 'Amyotrophic lateral sclerosis 4, juvenile', 'Mitochondrial DNA depletion syndrome 4B (mngie type)', 'Cutis laxa, autosomal recessive, type IC', 'Hemolytic anemia, CD59-mediated, with or without immune-mediated polyneuropathy', 'Amyotrophic lateral sclerosis 1', 'Flaujeac factor deficiency', 'Hemolytic anemia due to gamma-glutamylcysteine synthetase deficiency', 'Mitochondrial complex IV deficiency, nuclear type 19', 'Combined oxidative phosphorylation deficiency 32', 'Cleidocranial dysplasia 2', 'Osteopetrosis, autosomal dominant 1', 'Edema, familial idiopathic, prepubertal', 'Bardet-Biedl syndrome 12', 'Nephrotic syndrome, type 9', 'Pyruvate dehydrogenase e1-alpha deficiency', 'Bloom syndrome', 'Barth syndrome', 'Diabetes, permanent neonatal 2, with or without neurologic features', 'Pulmonary hemosiderosis', 'Mandibuloacral dysplasia', 'Neurodegeneration and seizures due to copper transport defect', 'Lactic acidosis, chronic adult form', 'Chromosome 14q32 duplication syndrome, 700-kb', 'Calcific aortic disease with immunologic abnormalities, familial', 'Chromosome 15q25 deletion syndrome', 'Dyskeratosis congenita, digenic', 'Mannose-Binding lectin deficiency', 'Ovarian dysgenesis 1', 'Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy, 2', 'Polycystic kidneys', 'Mitochondrial complex I deficiency, nuclear type 19', 'Polycystic kidney disease 5', 'Dyskeratosis congenita, autosomal recessive, 3', 'Amyotrophic lateral sclerosis 23', 'Hypocalciuric hypercalcemia, familial, type III', 'Osteogenesis imperfecta, type XVII', 'Glucocorticoid deficiency 4 with or without mineralocorticoid deficiency', 'DUODENAL ULCER DUE TO ANTRAL G-CELL HYPERFUNCTION', 'Osteogenesis imperfecta, type XIII', 'Desmosterolosis', 'Combined oxidative phosphorylation deficiency 54', 'Hypogonadotropic hypogonadism 17 with or without anosmia', 'Short-rib thoracic dysplasia 12', 'Vascular hyalinosis', 'L-ferritin deficiency, dominant and recessive', 'Hermansky-Pudlak syndrome 10', 'Stiff-Person syndrome', 'Methemoglobinemia, Beta type', 'Short rib-polydactyly syndrome, type VI', 'Psoriasis 14, pustular', 'Congenital prothrombin deficiency', 'Lymphopenic hypergammaglobulinemia, antibody deficiency, autoimmunehemolytic anemia, and glomerulonephritis', 'Metaphyseal chondrodysplasia, Jansen type', 'Grange syndrome', 'Flynn-Aird syndrome', 'Congenital disorder of glycosylation, type Ik', 'Aortic aneurysm, abdominal', 'Osteopenia and sparse hair', 'Fanconi anemia, complementation group J', 'Hemolytic disease of fetus and newborn, RH-induced', 'Cockayne syndrome, type B', 'Developmental delay with or without intellectual impairment or behavioral abnormalities', 'Leukodystrophy, hypomyelinating, 4', 'Hyperphosphatasia with mental retardation syndrome 6', 'Fg syndrome 2', 'Transcobalamin I deficiency', 'Bleeding disorder, platelet-type, 18', 'Peroxisome biogenesis disorder 6B', 'Telangiectasia, hereditary hemorrhagic, type 5', 'Microcephaly, growth restriction, and increased sister chromatid exchange 2', 'Nephrotic syndrome, type 8', 'Hypothyroidism, congenital, nongoitrous, 8', 'Mitochondrial complex I deficiency, nuclear type 31', 'Cerebral creatine deficiency syndrome 3', 'Harel-Yoon syndrome', 'Histiocytosis, familial lipochrome', 'Cardiomyopathy, dilated, 1I', 'Temple syndrome', 'Neutropenia, severe congenital, 8, autosomal dominant', 'Macrothrombocytopenia, autosomal dominant, tubb1-related', 'Cole-Carpenter syndrome 1', 'Malignant atrophic papulosis', 'Optic atrophy 11', 'Porphyria cutanea tarda, type I', 'Deafness, congenital, and adult-onset progressive leukoencephalopathy', 'Intrauterine growth retardation, metaphyseal dysplasia, adrenal hypoplasia congenita, genital anomalies, and immunodeficiency', 'Myopathy, congenital, with fiber-type disproportion', 'Arterial calcification, generalized, of infancy, 1', 'Peroxisome biogenesis disorder 5B', 'Mucopolysaccharidosis type IIIC', 'Myoclonic epilepsy of Lafora', 'Lipodystrophy, familial partial, type 7', 'Striatonigral degeneration, infantile', 'Coenzyme Q10 deficiency, primary, 8', 'Congenital myopathy 18 due to dihydropyridine receptor defect', 'Dyskeratosis congenita, autosomal recessive 8', 'Bent bone dysplasia syndrome 2', 'Emery-Dreifuss muscular dystrophy 3, autosomal recessive', 'Congenital disorder of glycosylation, type IF', 'Chromosome 1p36.33 duplication syndrome, ATAD3 gene cluster', 'Meier-Gorlin syndrome 4', 'Immunodeficiency 67', 'Immunodeficiency 23', 'PYKNOACHONDROGENESIS', 'Protoporphyria, erythropoietic, X-linked', 'Cutis laxa, autosomal recessive, type IIB', 'Amyotrophic lateral sclerosis-parkinsonism/dementia complex 1', 'Biliary cirrhosis, primary', 'Osteogenesis imperfecta, type I', 'Ophthalmoplegic neuromuscular disorder with abnormal mitochondria', 'Diarrhea 8, secretory sodium, congenital', 'Laterality defects, autosomal dominant', 'Tuftsin deficiency', 'Epidermolysis bullosa simplex with muscular dystrophy', 'Cleft lip/palate with abnormal thumbs and microcephaly', 'Congenital disorder of glycosylation, type Ig', 'Hypertrophic osteoarthropathy, primary, autosomal recessive 1', 'Methylmalonate semialdehyde dehydrogenase deficiency', 'Interstitial pneumonitis, desquamative, familial', 'Megaloblastic anemia 1', 'Myopathy, myofibrillar, 12, infantile-onset, with cardiomyopathy', 'Body mass index quantitative trait locus 19', 'Plasmin inhibitor deficiency', 'Growth hormone deficiency, isolated, type IA', 'Neurodegeneration with brain iron accumulation 8', 'Congenital disorder of glycosylation, type IIy', 'Chondrodysplasia, Blomstrand type', 'Calcification of joints and arteries', 'Pyruvate dehydrogenase e3-binding protein deficiency', 'Macrothrombocytopenia, isolated, 2, autosomal dominant', 'Moyamoya disease 2, susceptibility to', 'Williams-Beuren syndrome', 'Congenital heart defects, multiple types, 8, with or without heterotaxy', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 6', 'Methemoglobinemia, Alpha type', 'Combined oxidative phosphorylation deficiency 25', 'Spondyloepimetaphyseal dysplasia, DI Rocco type', 'Macrocephaly/autism syndrome', 'Antiphospholipid syndrome, familial', 'Sarcoidosis, susceptibility to, 2', 'Leukodystrophy, hypomyelinating, 21', 'Hypomagnesemia 3, renal', 'Coloboma, osteopetrosis, microphthalmia, macrocephaly, albinism, and deafness', 'Psychomotor retardation, epilepsy, and craniofacial dysmorphism', 'OSTEOMESOPYKNOSIS', 'Mitochondrial DNA depletion syndrome 12A (cardiomyopathic type), autosomal dominant', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 3', 'Hypouricemia, renal, 2', 'Joubert syndrome 33', 'Lymphatic malformation 13', 'Aspartylglucosaminuria', 'Ullrich congenital muscular dystrophy 1', 'Aromatic L-amino acid decarboxylase deficiency', 'Mitochondrial complex I deficiency, nuclear type 2', 'Immunodeficiency 81', 'Multiple endocrine neoplasia, type IIB', 'Neurodegeneration, childhood-onset, with progressive microcephaly', 'Factor X deficiency', 'Immunoglobulin kappa light chain deficiency', 'Microcephaly, epilepsy, and diabetes syndrome', 'Neuropathy, hereditary motor and sensory, Okinawa type', 'Poikiloderma, hereditary fibrosing, with tendon contractures, myopathy, and pulmonary fibrosis', 'Mitochondrial complex I deficiency, nuclear type 17', 'Glucocorticoid deficiency 1', 'Pseudodiastrophic dysplasia', 'Autoimmune polyendocrinopathy syndrome , type I, with or without reversible metaphyseal dysplasia', 'Primary lateral sclerosis, adult', 'Bent bone dysplasia syndrome', 'Cranioectodermal dysplasia 2', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 5', 'Epileptic encephalopathy, early infantile, 46', 'Galloway-Mowat syndrome 3', 'Glutathioninuria', 'Congenital heart defects, multiple types, 5', 'Mulibrey nanism', 'Aicardi-Goutieres syndrome 5', 'Factor XII deficiency', 'Hamamy syndrome', 'Epileptic encephalopathy, early infantile, 75', 'Mucolipidosis III alpha/beta', 'Paget disease of bone 2, early-onset', 'Metaphyseal modeling abnormality, skin lesions, and spastic paraplegia', 'Meckel syndrome, type 6', 'Friedreich ataxia 2', 'Mitochondrial complex II deficiency', 'Fanconi renotubular syndrome 5', 'Diarrhea 6', '3-methylglutaconic aciduria, type IX', 'Mitochondrial complex III deficiency, nuclear type 4', 'Thrombophilia, hereditary, due to protein S deficiency, autosomal', 'NONDISJUNCTION', 'Chronic granulomatous disease 3, autosomal recessive', 'Singleton-Merten syndrome 1', 'Congenital heart defects, multiple types, 9', 'Joubert syndrome 8', 'WHIM syndrome 2', 'Spondyloocular syndrome', 'Cutis laxa, autosomal dominant 3', 'Myopathy, myofibrillar, 1', 'Silver-Russell syndrome 3', 'Neurodevelopmental disorder with epilepsy and brain atrophy', 'Pigmented nodular adrenocortical disease, primary, 1', 'Lethal congenital contracture syndrome 5', 'Cervical ribs, sprengel anomaly, anal atresia, and urethral obstruction', 'Noonan syndrome 9', 'Caffey disease', 'Cardiomyopathy, dilated, with woolly hair and keratoderma', 'Charcot-Marie-Tooth disease, axonal, type 2EE', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 4', 'Mitochondrial complex I deficiency, nuclear type 36', 'Primary aldosteronism, seizures, and neurologic abnormalities', 'Multiple congenital anomalies-neurodevelopmental syndrome, X-linked', 'Basal ganglia calcification, idiopathic, childhood-onset', 'Diabetes insipidus, Neurohypophyseal type', 'Maturity-onset diabetes of the young, type 10', 'Cyclic neutropenia', 'Pseudoxanthoma elasticum, forme fruste', 'Arthrogryposis, perthes disease, and upward gaze palsy', 'Factor V and factor VIII, combined deficiency of', 'Cardiomyopathy, dilated, 1L', 'Multiple sulfatase deficiency', 'Angioedema, hereditary, 3', 'Combined oxidative phosphorylation deficiency 39', 'Atherosclerosis, premature, with deafness, nephropathy, diabetes mellitus,photomyoclonus, and degenerative neurologic disease', 'Bleeding disorder, platelet-type, 12', 'Growth hormone insensitivity with immune dysregulation 1, autosomal recessive', 'Vici syndrome', 'HISTIDINEMIA', 'Muscular dystrophy, Cardiac type', 'Lipase deficiency, combined', 'Myopathy, congenital, compton-north', 'Hurler syndrome', 'Mastocytosis, cutaneous', 'Greenberg skeletal dysplasia', 'Visceral myopathy 1', 'Short-Rib thoracic dysplasia 4 with or without polydactyly', 'Macrocephaly, neurodevelopmental delay, lymphoid hyperplasia, and persistent fetal hemoglobin', 'Mitochondrial complex II deficiency, nuclear type 4', 'Thrombophilia due to thrombomodulin defect', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 6', 'Combined D-2- and L-2-hydroxyglutaric aciduria', 'Short stature, microcephaly, and endocrine dysfunction', 'Fanconi-Like syndrome', 'Meconium ileus', 'Noonan syndrome 6', 'Short-Rib thoracic dysplasia 7 with or without polydactyly', 'Congenital heart defects, multiple types, 2', 'Achondrogenesis, type IB', 'Dibasic amino aciduria I', 'Malignant hyperthermia, susceptibility to, 5', 'Lipid storage myopathy due to flavin adenine dinucleotide synthetase deficiency', 'Arthropathy, progressive pseudorheumatoid, of childhood', 'Brachyolmia type 1, Hobaek type', 'Microcephaly, short stature, and impaired glucose metabolism 1', 'Alpha-methylacyl-CoA racemase deficiency', 'Osteogenesis imperfecta, type IV', 'Rhizomelic chondrodysplasia punctata, type 1', 'Diabetes mellitus, noninsulin-dependent', 'Pulmonary fibrosis, idiopathic', 'Cardiac lipidosis, familial', 'Systemic lupus erythematosus 17', 'Muscular dystrophy, limb-girdle, autosomal recessive 18', 'Trehalase deficiency', 'Esophagitis, eosinophilic, 1', 'Esophagitis, eosinophilic, 2', 'Alpha-mannosidosis', 'Muscular dystrophy, progressive pectorodorsal', 'Inflammatory bowel disease 11', 'Leukodystrophy, hypomyelinating, 13', 'Pyruvate dehydrogenase E2 deficiency', 'Hermansky-Pudlak syndrome 7', 'Noonan syndrome 10', 'Hirschsprung disease, susceptibility to, 1', 'Eiken syndrome', 'Cardiomyopathy, dilated, 2F', 'Reticular dysgenesia', 'Agammaglobulinemia 6, autosomal recessive', 'Pontocerebellar hypoplasia, type 1C', 'Thrombophilia due to deficiency of activated protein C cofactor', 'Hypoplastic left heart syndrome', 'Hypoadrenocorticism, familial', 'Cimdag syndrome', 'Lymphedema and cerebral arteriovenous anomaly', 'Bowen-Conradi syndrome', 'Heterotaxy, visceral, 2, autosomal', 'Mahvash disease', 'Bruck syndrome 1', 'Adrenal hyperplasia, congenital, due to 21-hydroxylase deficiency', 'Osteogenesis imperfecta, type VIII', 'Cardiomyopathy, dilated, 1II', 'Angiopathy, hereditary, with nephropathy, aneurysms, and muscle cramps', 'Netherton syndrome', 'Pulmonary edema of mountaineers', 'Welander distal myopathy', 'Neurodevelopmental disorder with microcephaly, hypotonia, nystagmus, and seizures', 'Osteosclerosis with ichthyosis and fractures', 'Cerebellar vermis aplasia with associated features suggesting smith-lemli-opitzsyndrome and meckel syndrome', 'Ataxia, early-onset, with oculomotor apraxia and hypoalbuminemia', 'Polycystic liver disease 3 with or without kidney cysts', 'Interstitial lung disease, nephrotic syndrome, and epidermolysis bullosa, congenital', 'Diamond-Blackfan anemia 14 with mandibulofacial dysostosis', 'Encephalopathy, acute, infection-induced, susceptibility to, 9', 'Encephalopathy, progressive, with or without lipodystrophy', 'Craniodiaphyseal dysplasia, autosomal dominant', 'Developmental and epileptic encephalopathy 44', 'Meier-Gorlin syndrome 2', 'Hypothyroidism, congenital, nongoitrous, 2', 'Pituitary hormone deficiency, combined, 6', 'Glycogen storage disease XIII', 'Familial cold inflammatory syndrome 1', 'Hypophosphatasia, childhood', 'Nijmegen breakage syndrome', 'Developmental and epileptic encephalopathy 62', 'Bartter syndrome, type 4A, neonatal, with sensorineural deafness', 'Immunodeficiency 89 and autoimmunity', 'Acetyl-Coa acetyltransferase-2 deficiency', 'Chromosome 1p36 deletion syndrome, proximal', 'Methionine adenosyltransferase I/III deficiency', 'Gastrointestinal stromal tumor', 'Arthrogryposis multiplex congenita 5', 'EOSINOPHILOPENIA', 'Pineal hyperplasia, insulin-resistant diabetes mellitus, and somatic abnormalities', 'Meckel syndrome 14', 'Thrombophiliavenous thromboembolism, included', 'Smith-Kingsmore syndrome', 'Hyperphenylalaninemia, BH4-deficient, A', 'Hypogonadotropic hypogonadism 26 with or without anosmia', 'Hyperinsulinemic hypoglycemia, familial, 4', 'Mental retardation, autosomal recessive 27', 'Faciocardiomelic syndrome', 'Myasthenic syndrome, congenital, 11, associated with acetylcholine receptor deficiency', 'Surfactant metabolism dysfunction, pulmonary, 4', 'Microcephaly, growth deficiency, seizures, and brain malformations', 'Schindler disease, type I', 'Meier-Gorlin syndrome 5', 'Distichiasis with congenital anomalies of the heart and peripheral', 'Peroxisome biogenesis disorder 10A (Zellweger)', 'Cortisone reductase deficiency 2', 'Hypotonia, infantile, with psychomotor retardation and characteristic facies 2', 'Anemia, sideroblastic, and spinocerebellar ataxia', 'Intestinal pseudoobstruction, neuronal, chronic idiopathic, X-linked', 'Neurodevelopmental disorder with progressive spasticity and brain white matter abnormalities', 'Hyperinsulinemic hypoglycemia, familial, 7', 'Epileptic encephalopathy, early infantile, 86', 'Neuropathy, hereditary sensory and autonomic, type III', 'Ciliary dyskinesia, primary, 16', 'Myopathy with extrapyramidal signs', 'Mucopolysaccharidosis, type II', 'Leiomyomatosis, diffuse, with alport syndrome', 'Phenylketonuria', 'Branchial arch syndrome, X-linked', 'Developmental and epileptic encephalopathy 96', 'Globulin anomaly involving beta (2a)-globulin', 'Cardiac-Urogenital syndrome', 'Amyotrophic lateral sclerosis 12 with or without frontotemporal dementia', 'Lambert syndrome', 'Chromosome 16p13.3 deletion syndrome', 'Porphyria variegata', 'Immunodeficiency 25', 'Maturity-onset diabetes of the young, type 11', 'C syndrome', 'Glycosylphosphatidylinositol biosynthesis defect 25', 'ACCES syndrome', 'Rod-cone dystrophy, sensorineural deafness, and Fanconi-type renal dysfunction', 'Amyotrophic lateral sclerosis 18', 'Celiac artery stenosis from compression by median arcuate ligamentof diaphragm', 'Neurodevelopmental disorder with epilepsy, cataracts, feeding difficulties, and delayed brain myelination', 'Cardiomyopathy, familial hypertrophic, 8', 'Short stature, onychodysplasia, facial dysmorphism, and hypotrichosis', 'Intrauterine growth retardation, metaphyseal dysplasia, adrenal hypoplasiacongenita, and genital anomalies', 'Diabetes insipidus, nephrogenic, X-linked', 'Macrocephaly, alopecia, cutis laxa, and scoliosis', 'Leukodystrophy, hypomyelinating, 18', 'Mucopolysaccharidosis IVA', 'Cerebral cavernous malformations 1', 'Xanthomatosis, susceptibility to', 'Immunodeficiency 62', 'Thyroid hormone metabolism, abnormal, 2', 'Microcephaly 23, primary, autosomal recessive', 'Cerebroretinal microangiopathy with calcifications and cysts 3', 'Cardiac valvular dysplasia, X-linked', 'Pseudoxanthoma elasticum', 'Pseudopseudohypoparathyroidism', 'Avascular necrosis of femoral head, primary, 1', 'Heterotaxy, visceral, 7, autosomal', 'Short stature, facial dysmorphism, and skeletal anomalies with or without cardiac anomalies', 'Sertoli cell-only syndrome', 'Lymphatic malformation 9', 'Platelet prostacyclin receptor defect', 'Thyroid hormone resistance, generalized, autosomal recessive', 'Diaphyseal medullary stenosis with malignant fibrous histiocytoma', 'Alpha-Fetoprotein, hereditary persistence of', 'Alpha-Fetoprotein deficiency', 'Congenital disorder of glycosylation, type Id', 'GM1-gangliosidosis, type III', 'Conotruncal heart malformations', 'Hepatic adenomas, familial', 'Combined oxidative phosphorylation deficiency 15', 'Microcephaly, cerebellar hypoplasia, and cardiac conduction defect syndrome', 'Thrombophilia, hereditary, due to protein C deficiency, autosomaldominant', 'Neuronopathy, distal hereditary motor, type VIIB', 'Ondontochondrodysplasia 2 with hearing loss and diabetes', 'Immunodeficiency 32A', 'Diarrhea 11, malabsorptive, congenital', 'Molybdenum cofactor deficiency, complementation group B', 'Myeloproliferative disorder, chronic, with eosinophilia', 'Micromelic bone dysplasia with cloverleaf skull', 'Inclusion body myopathy with early-onset Paget disease without frontotemporal dementia 3', 'Pseudohypoparathyroidism, type IB', 'Aortic valve disease 3', 'Secretory component deficiency', 'Aortic aneurysm, familial thoracic 6', 'Fibrodysplasia ossificans progressiva', 'Polycystic liver disease 4 with or without kidney cysts', 'Yellow nail syndrome', 'Seizures, sensorineural deafness, ataxia, mental retardation, and electrolyte imbalance', 'INTERLEUKIN 1, DEFECTIVE T-CELL RESPONSE TO', 'Deafness, autosomal dominant 34, with or without inflammation', 'Epiphyseal dysplasia, multiple, 3, with or without myopathy', 'Congenital disorder of glycosylation, type IAA', 'Vasculitis, lymphocytic, nodular', 'Rhyns syndrome', 'Epilepsy, early-onset, vitamin b6-dependent', 'Growth restriction, hypoplastic kidneys, alopecia, and distinctive facies', 'ENDOVE syndrome, limb-brain type', 'Osteogenesis imperfecta, type XIV', 'Watson syndrome', 'Congenital myopathy 15', 'Hyper-IgE recurrent infection syndrome 5, autosomal recessive', 'Diastasis recti and weakness of the linea alba', 'Osteopoikilosis and dacryocystitis', 'CHIME syndrome', 'Pseudohypoparathyroidism, type IA', 'PERCHING syndrome', 'Polyendocrine-polyneuropathy syndrome', 'Hyper-IgE syndrome 2, autosomal recessive, with recurrent infections', 'Pontocerebellar hypoplasia, type 14', 'Growth hormone deficiency, isolated partial', 'Galloway-Mowat syndrome 6', 'Osteogenesis imperfecta, type V', 'Martinez-Frias syndrome', 'Congenital disorder of glycosylation with defective fucosylation 2', 'Microcephaly 22, primary, autosomal recessive', 'Osteopetrosis, autosomal recessive 6', 'Developmental delay with hypotonia, myopathy, and brain abnormalities', 'Mental retardation, skeletal dysplasia, and abducens palsy', 'Fever, familial lifelong persistent', 'Spastic tetraplegia and axial hypotonia, progressive', 'Central core disease', 'Weill-Marchesani syndrome 1', 'Methionine malabsorption syndrome', 'Osteogenesis imperfecta, type XII', 'Vasculopathy, retinal, with cerebral leukodystrophy', 'Hypertrichotic osteochondrodysplasia', 'Tyshchenko syndrome', 'Bleeding disorder, platelet-type, 13, susceptibility to', 'Immunodeficiency, common variable, 13', 'Thiamine metabolism dysfunction syndrome 5 (episodic encephalopathy type)', 'Cramps, familial adolescent', 'Leukocyte adhesion deficiency, type I', 'Disabling pansclerotic morphea of childhood', 'Agammaglobulinemia, X-linked', 'Thalassemia, beta+, silent allele', 'Intellectual developmental disorder, autosomal dominant 70', 'Pseudohypoparathyroidism, type IC', 'Pontocerebellar hypoplasia, type 2E', 'Aortic valve disease 1', 'Cardiomyopathy, dilated, 1B', 'Myopathy, congenital, nonprogressive', 'Developmental and epileptic encephalopathy 73', 'Cardiomyopathy, dilated, 2G', 'Neurodegeneration, childhood-onset, with brain atrophy', 'Cardiomyopathy, dilated, 3B', 'Epidermolysis bullosa, junctional, Herlitz type', 'Myopathy, autophagic vacuolar, infantile-onset', 'Roifman syndrome', 'Intellectual developmental disorder, autosomal recessive 60', 'Hypogonadism, male, with mental retardation and skeletal anomalies', 'Spondyloepiphyseal dysplasia with congenital joint dislocations', 'Glycogen storage disease V', 'Fibromuscular dysplasia of arteries', 'Citrulline transport defect', 'Noonan syndrome 11', 'Sialuria', 'Congenital heart defects, multiple types, 4', 'Epileptic encephalopathy, early infantile, 80', 'Short-rib thoracic dysplasia 15 with polydactyly', 'IVIC syndrome', 'Amyloidosis VI', 'Arthrogryposis, cleft palate, craniosynostosis, and impaired intellectual development', 'Tenorio syndrome', 'Portal vein, cavernous transformation of', 'Hyperthyroidism, nonautoimmune', 'Pituitary dwarfism IV', 'Spondyloarthropathy, susceptibility to, 2', 'Fanconi anemia, complementation group I', 'Anhidrosis, isolated, with normal sweat glands', 'Pheochromocytoma-Islet cell tumor syndrome', 'Lymphoblastic leukemia, acute, with lymphomatous features', 'Cardiofaciocutaneous syndrome 1', 'Lipedema', 'Combined oxidative phosphorylation deficiency 51', 'Seizures, scoliosis, and macrocephaly/microcephaly syndrome', 'Premature centromere division', 'Hajdu-Cheney syndrome', 'Neurodevelopmental disorder with seizures, microcephaly, and brain abnormalities', 'Ovarian dysgenesis 4', 'Geroderma osteodysplasticum', 'Arterial tortuosity syndrome', 'Sudden infant death syndrome', 'Ehlers-Danlos syndrome, spondylodysplastic type, 2', 'Rauch-Steindl syndrome', 'Immunodeficiency 96', 'Achondroplasia, so-called, and severe combined immunodeficiency', 'Lymphoma, hodgkin', 'PYGMY', 'Hyper-IgE recurrent infection syndrome', 'Coffin-Siris syndrome 8', 'Microphthalmia, syndromic 9', 'Williams-Beuren region duplication syndrome', 'Cutaneous photosensitivity and colitis, lethal', 'Hyperekplexia 3', 'Spinocerebellar ataxia, autosomal recessive 23', 'Polycystic kidney disease 6 with or without polycystic liver disease', 'Yunis-Varon syndrome', 'Deafness, unilateral, with delayed endolymphatic hydrops', 'Tessadori-van Haaften neurodevelopmental syndrome 1', 'Salt and pepper developmental regression syndrome', 'T-SUBSTANCE ANOMALY', 'Alport syndrome, X-linked', 'Birk-Landau-Perez syndrome', 'Orthostatic hypotensive disorder, Streeten type', 'Monocyte chemotactic disorder', 'Osteoporosis-pseudoglioma syndrome', 'Nephrotic syndrome, type 11', 'Charcot-Marie-Tooth disease, demyelinating, type 1F', 'CHOREOACANTHOCYTOSIS', 'Mental retardation, autosomal dominant 47', 'Neurodevelopmental disorder with microcephaly, cerebral atrophy, and visual impairment', 'Factor V excess with spontaneous thrombosis', 'Intellectual developmental disorder, X-linked, syndromic, with pigmentary mosaicism and coarse facies', 'Malouf syndrome', 'Cat eye syndrome', 'Nephrotic syndrome, type 22', 'Mucolipidosis IV', 'Periventricular heterotopia with microcephaly, autosomal recessive', 'Goodpasture syndrome', 'Microcephaly 21, primary, autosomal recessive', 'Hyperostosis, endosteal', 'Sucrosuria, hiatus hernia and mental retardation', 'Chromosome 3q29 deletion syndrome', 'Intellectual developmental disorder, autosomal dominant 51', 'PHEOCHROMOCYTOMA', 'Ichthyosis, congenital, autosomal recessive 4B', 'Muscle cramps, familial', 'Spondylo-megaepiphyseal-metaphyseal dysplasia', 'Central hypoventilation syndrome, congenital, 2, and autonomic dysfunction', 'Immunodeficiency, X-linked, with magnesium defect, Epstein-Barr virus infection and neoplasia', 'Hypomagnesemia, seizures, and mental retardation', 'Lissencephaly 7 with cerebellar hypoplasia', 'Loeys-Dietz syndrome 2', 'Myopathy with storage of glycoproteins and glycosaminoglycans', 'Nephrotic syndrome, type 14', 'Fraser syndrome 3', 'Trichodentoosseous syndrome', 'Familial cold autoinflammatory syndrome 4', 'Hypogonadotropic hypogonadism 9 with or without anosmia', 'Cardiomyopathy, dilated, 1E', 'Intellectual developmental disorder, autosomal dominant 33', 'Warburg micro syndrome 1', 'Ataxia, combined cerebellar and peripheral, with hearing loss and diabetes mellitus', 'Leukodystrophy, childhood-onset, remitting', 'Osteogenesis imperfecta 21', 'Cornea plana 1', 'Acanthosis nigricans with muscle cramps and acral enlargement', 'Lymphedema, hereditary, II', 'Radial heads, posterior dislocation of', 'Ehlers-Danlos syndrome, autosomal recessive, cardiac valvular form', 'Polyglucosan body neuropathy, adult form', 'Chronic recurrent multifocal osteomyelitis', 'Hypophosphatemic rickets, X-linked recessive', 'Fibrochondrogenesis 2', 'Immunodeficiency, common variable, 14', 'Sick sinus syndrome 4', 'Intellectual developmental disorder, autosomal dominant 43', 'Dimethylglycine dehydrogenase deficiency', 'Osteoporosis, childhood- or juvenile-onset, with developmental delay', 'Gastroschisisabdominal wall defects, included', 'Mitochondrial DNA depletion syndrome 2 (myopathic type)', 'Adiposis dolorosa', 'Bartter syndrome, type 3', 'Amyotrophic lateral sclerosis 5, juvenile', 'Cardiac, facial, and digital anomalies with developmental delay', 'Proximal myopathy with focal depletion of mitochondria', '3-M syndrome 3', 'Epileptic encephalopathy, early infantile, 68', 'Hypoinsulinemic hypoglycemia with hemihypertrophy', 'Intellectual developmental disorder, autosomal recessive 41', 'Cardiomyopathy, dilated, 1S', 'Hereditary leiomyomatosis and renal cell cancer', 'Heterotaxy, visceral, 5', 'Fanconi anemia, complementation group N', 'Histiocytosis, progressive mucinous', 'Congenital heart defects, hamartomas of tongue, and polysyndactyly', 'Infantile cerebellar-retinal degeneration', 'Neutropenia, severe congenital, 2, autosomal dominant', 'Neurodevelopmental disorder with hypotonia and variable intellectual and behavioral abnormalities', 'Ehlers-Danlos syndrome, kyphoscoliotic type, 2', 'Intellectual developmental disorder, autosomal dominant 45', 'Progressive familial heart block, type IB', 'Immunodeficiency with hyper-igm, type 3', 'Ehlers-Danlos syndrome, Vascular type', 'Hyperproinsulinemia', 'Alpha-2-deficient collagen disease', 'Silver-Russell syndrome 1', 'Heterotaxy, visceral, 9, autosomal, with male infertility', 'Hutterite cerebroosteonephrodysplasia syndrome', 'Central hypoventilation syndrome, congenital, 1, with or without Hirschsprung disease', 'Neurodevelopmental disorder with craniofacial dysmorphism and skeletal defects', 'Muckle-Wells syndrome', 'Myopathy, areflexia, respiratory distress, and dysphagia, early-onset', 'Myasthenic syndrome, congenital, 7B, presynaptic, autosomal recessive', 'DYSOSTEOSCLEROSIS', 'Perrault syndrome 4', 'Neuropathy, congenital hypomyelinating, 1, autosomal recessive', 'Long QT syndrome 13', 'Lymphoid interstitial pneumonia', 'Loeys-Dietz syndrome 3', 'Inflammatory bowel disease (Crohn disease) 30', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 3', 'Ehlers-Danlos syndrome, classic-like, 2', 'Immunodeficiency 68', 'Periodic fever, menstrual cycle-dependent', 'Arrhythmogenic right ventricular dysplasia, familial, 11', 'Inflammatory bowel disease 1, Crohn disease', 'Congenital disorder of glycosylation, type Ij', 'Leber congenital amaurosis, type I', 'Leukodystrophy, hypomyelinating, 11', 'Pyle disease', 'Cardiomyopathy, dilated, 1D', 'Megalocornea-Mental retardation syndrome', 'Familial Mediterranean fever, AD', 'Mental retardation, autosomal recessive 53', 'Volvulus of midgut', 'Congenital myopathy 2B, severe infantile, autosomal recessive', 'Spondyloenchondrodysplasia with immune dysregulation', 'White sponge nevus 2', 'Angioma, hereditary neurocutaneousspinal arterial venous malformations with cutaneous hemangiomas, included', 'Muscular dystrophy, congenital, merosin deficient or partially deficient', 'Congenital disorder of glycosylation, type Ip', 'Brugada syndrome 3', 'Amyotrophic lateral sclerosis, juvenile, with dementia', 'Multisystemic smooth muscle dysfunction syndrome', 'Epileptic encephalopathy, early infantile, 40', 'Parkinson disease 4', 'Takenouchi-Kosaki syndrome', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 5', 'Developmental and epileptic encephalopathy 109', 'Short QT syndrome 1', 'Eosinophil peroxidase deficiency', 'Weill-Marchesani syndrome 2, dominant', 'Short-Rib thoracic dysplasia 5 with or without polydactyly', 'Neurodevelopmental disorder with hypotonia and dysmorphic facies', 'Osteogenesis imperfecta, type XVIII', 'Epistaxis, hereditary', 'Neurodegeneration with brain iron accumulation 4', 'Thyrotoxic periodic paralysis, susceptibility to, 2', 'Neuropathy, hereditary sensory and autonomic, type I, with cough and gastroesophageal reflux', 'Venous malformations, multiple cutaneous and mucosal', 'Developmental and epileptic encephalopathy 102', 'Bethlem myopathy 1', 'Ehlers-Danlos syndrome, kyphoscoliotic type, 1', 'Inosine phosphorylase deficiency, immune defect due to', 'Renal glucosuria', 'Achondrogenesis, type II', 'Gastric adenocarcinoma and proximal polyposis of the stomach', 'Cardiomyopathy, familial hypertrophic, 6', 'Friedreich ataxia 1', 'Marinesco-Sjogren syndrome', 'Nemaline myopathy 3', 'Endocardial fibroelastosis and coarctation of abdominal aorta', 'Mucopolysaccharidosis VII', 'Neurodegeneration with ataxia and late-onset optic atrophy', 'Short QT syndrome 2', 'Rabin-Pappas syndrome', 'Nephronophthisis 3', 'Cardiac conduction disease with or without dilated cardiomyopathy', 'Nephronophthisis 13', 'Yao syndrome', 'Aneurysm, intracranial berry, 12', 'Lessel-Kreienkamp syndrome', 'Ehlers-Danlos syndrome, arthrochalasia type, 1', 'Spondyloepiphyseal dysplasia with punctate corneal dystrophy', 'Pontocerebellar hypoplasia, type 9', 'Alveolar capillary dysplasia with misalignment of pulmonary veins', 'Metaphyseal chondrodysplasia, Pena type', 'Cutis laxa, autosomal recessive, type IB', 'Aortic aneurysm, familial thoracic 10', 'Neurodevelopmental disorder with or without seizures and gait abnormalities', 'Polycystic ovary syndrome 1', 'Rheumatoid arthritis', 'Popliteal cyst', 'Ciliary discoordination due to random ciliary orientation', 'Arrhythmogenic right ventricular dysplasia, familial, 9', 'Microcephaly, developmental delay, and brittle hair syndrome', 'Neural tube defects, folate-sensitive', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 1', 'Maturity-onset diabetes of the young, type III', 'Ritscher-Schinzel syndrome 1', 'Magnesium, elevated red cell', 'Zinc, elevated plasma', 'AMOBARBITAL, DEFICIENT N-HYDROXYLATION OF', 'Acetylation, slow', 'Neuronal intestinal dysplasia, type B', 'Sodium-Potassium-Atpase activity of red cell', 'HYPOASCORBEMIA', 'Paraoxonase 1', 'Drug metabolism, altered, CES1-related', 'Charcot-Marie-Tooth disease, axonal, type 2K', 'Polysaccharide, storage of unusual', 'Short stature, rhizomelic, with microcephaly, micrognathia, and developmental delay', 'Aortic aneurysm, familial thoracic 8', 'Surfactant metabolism dysfunction, pulmonary, 1', 'Neutrophil actin dysfunction', 'Arrhythmogenic right ventricular dysplasia, familial, 10', 'Immunodeficiency 93 and hypertrophic cardiomyopathy', 'Myopathy with myalgia, increased serum creatine kinase, and with or without episodic rhabdomyolysis', 'Pulmonary hypertension, primary, 4', 'Atrial fibrillation, familial, 3', 'Noonan syndrome 7', 'Osteogenesis imperfecta, type VII', 'Cerebral amyloid angiopathy, APP-related', 'Cardiomyopathy, familial hypertrophic 27', 'Spinal muscular atrophy with progressive myoclonic epilepsy', 'Cardiomyopathy, dilated, 1P', 'Nephronophthisis 12', 'Oocyte maturation defect 2', 'Telangiectasia, hereditary hemorrhagic, type 4', 'Spinal arachnoiditis', 'Purpura simplex', 'Plasma clot retraction factor, deficiency of', 'Brugada syndrome 1', 'Neurocardiofaciodigital syndrome', 'Arthrogryposis multiplex congenita with whistling face', 'Filaminopathy, autosomal dominant', 'Spondylocostal dysostosis, autosomal recessive 1', 'Hyperprolactinemia', 'Acute promyelocytic leukemia', 'Mosaic variegated aneuploidy syndrome 1', 'Spinal muscular atrophy, distal, autosomal recessive, 4', 'Thrombophilia due to protein C deficiency, autosomal recessive', 'Boudin-Mortier syndrome', 'Aneurysm, intracranial berry, 1', 'Noonan syndrome 2', 'Visceral myopathy 2', 'MEDULLOBLASTOMA', 'Amyotrophic lateral sclerosis with polyglucosan bodies', 'Meckel syndrome, type 10', 'Ethanolaminosis', 'Immunodeficiency with hyper-igm, type 2', 'Corneal hypesthesia with retinal abnormalities, sensorineural deafness,unusual facies, persistent ductus arteriosus, and mental retardation', 'Hypocalcemia, autosomal dominant 2', 'Agammaglobulinemia 4, autosomal recessive', 'Intellectual developmental disorder with or without peripheral neuropathy', 'Senior-Loken syndrome 8', 'Roifman-Chitayat syndrome', 'Long QT syndrome 3', 'Neurodegeneration, childhood-onset, with cerebellar atrophy', 'Atrial fibrillation, familial, 13', 'Factor VII and factor VIII, combined deficiency of', 'Infundibulopelvic dysgenesis', 'Diaphragmatic hernia 4, with cardiovascular defects', 'Glutamate monosodium sensitivity', 'Prader-Willi syndrome', 'Salla disease', 'Cerebral sclerosis similar to pelizaeus-merzbacher disease', 'Neutropenia, nonimmune chronic idiopathic, of adults', 'Amyotrophic lateral sclerosis 9', 'Congenital arthrogryposis with anterior horn cell disease', 'Neuropathy, hereditary sensory and autonomic, type V', 'Shashi-Pena syndrome', 'Fingerprint body myopathy', 'Striatonigral degeneration, infantile, mitochondrial', 'Thyroid hormonogenesis, genetic defect in, 1', 'Erythrocyte lactate transporter defect', 'Pseudouridinuria and mental defect', 'Thyrotropin-Releasing hormone deficiency', 'Lymphoblastic transformation, intrinsic defect in', 'Lymphoblastic transformation, inhibition of', 'Lymphokine deficiency', 'Galloway-Mowat syndrome 8', 'Agammaglobulinemia 10, autosomal dominant', 'Polycystic lipomembranous osteodysplasia with sclerosing leukoencephalopathy 2', 'Hyper-IgE recurrent infection syndrome 3, autosomal recessive', 'Combined oxidative phosphorylation deficiency 57', 'Contractures, congenital, torticollis, and malignant hyperthermia', 'Long QT syndrome 6', 'Ichthyosis, congenital, autosomal recessive 5', 'Ogden syndrome', 'Bryant-Li-Bhoj neurodevelopmental syndrome 2', 'Myoglobinuria, autosomal dominant', 'Undritz anomaly', 'Left ventricular noncompaction 8', 'Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies', 'Lymphatic malformation 8', 'Meckel syndrome, type 4', 'Cystinuria', 'Spastic paralysis, infantile-onset ascending', 'Choanal atresia and lymphedema', 'Immunodeficiency 77', 'Bardet-Biedl syndrome 19', 'Winchester syndrome', 'Coronary artery dissection, spontaneous', 'Cockayne syndrome A', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 2', 'Cleft-Limb-Heart malformation syndrome', 'Mental retardation, autosomal dominant 7', 'Thyroid hormonogenesis, genetic defect in, 5', 'Hooft disease', 'Cardiomyopathy, dilated, 2H', 'Hemorrhagic destruction of the brain, subependymal calcification,and cataracts', 'Kaposi sarcoma, susceptibility to', 'Hypoparathyroidism, familial isolated', 'Corneal dystrophy, fuchs endothelial, 2', 'Temple-Baraitser syndrome', 'Developmental delay, hypotonia, and impaired language', 'Bardet-Biedl syndrome 1', 'Dysostosis multiplex, Ain-Naz type', 'Abdominal obesity-metabolic syndrome quantitative trait locus 2', 'Abdominal obesity-metabolic syndrome 1', 'Intellectual developmental disorder with muscle tone abnormalities and distal skeletal defects', 'Ventricular tachycardia, catecholaminergic polymorphic, 5, with or without muscle weakness', 'Joubert syndrome 6', 'Immunodeficiency-110 with lymphoproliferation', 'Amyotrophic lateral sclerosis and/or frontotemporal dementia 1', 'Xeroderma pigmentosum, complementation group G', 'Angioedema, hereditary, 5', 'Neurodevelopmental disorder with spastic quadriplegia, optic atrophy, seizures, and structural brain anomalies', 'Angioedema, hereditary, 6', 'Brugada syndrome 2', 'Paganini-Miozzo syndrome', 'Mannosidosis, beta', 'Lymphatic malformation 11', 'Immunodeficiency 18', 'Myopathy, myofibrillar, 7', 'Immunodeficiency 11B with atopic dermatitis', 'Emery-Dreifuss muscular dystrophy 4, autosomal dominant', 'Atrial septal defect 1', 'Renal tubular acidosis, distal, with progressive nerve deafness', 'Faundes-Banka syndrome', 'Dwarfism, low-birth-weight type, with unresponsiveness to growth hormone', 'Spondylocostal dysostosis 5', 'Combined oxidative phosphorylation deficiency 35', 'Contractural arachnodactyly, congenital', 'Heterotaxy, visceral, 8, autosomal', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 6', 'Cardiac arrhythmia, ankyrin-B-related', 'Glycosylphosphatidylinositol biosynthesis defect 11', 'Vissers-Bodmer syndrome', 'Congenital disorder of glycosylation, type IIa', 'Dentin dysplasia with sclerotic bones', 'Hypocalciuric hypercalcemia, familial, type II', 'Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy, 1', 'Arrhythmogenic right ventricular dysplasia, familial, 5', 'Neuropathy, hereditary sensory and autonomic, type VI', 'Epileptic encephalopathy, early infantile, 29', 'Vertebral anomalies and variable endocrine and T-cell dysfunction', 'Sensory ataxic neuropathy, dysarthria, and ophthalmoparesis', 'Chromosome 19q13.11 deletion syndrome, proximal', 'Aortic aneurysm, familial thoracic 12', 'Glycosylphosphatidylinositol biosynthesis defect 18', 'Meier-Gorlin syndrome 6', 'Fructose and galactose intolerance', 'Brugada syndrome 4', 'ACTH-independent macronodular adrenal hyperplasia', 'Immunodeficiency, ovarian dysgenesis, and pulmonary fibrosis', 'Hennekam lymphangiectasia-lymphedema syndrome 3', 'Lymphatic malformation 4', 'Sick sinus syndrome 2', 'Wolf-Hirschhorn syndrome', 'Meckel syndrome, type 5', 'Neurodevelopmental disorder with hypotonia and cerebellar atrophy, with or without seizures', 'Meckel syndrome 1', 'Metachromatic leukodystrophy', 'Nephronophthisis 14', 'Aortic aneurysm, familial thoracic 7', 'UV-sensitive syndrome 2', 'Leukodystrophy, hypomyelinating, 3', 'Hypohidrosis with abnormal palmar dermal ridges', 'Myopathy, sarcoplasmic body', 'Esophageal ring, lower', 'Joubert syndrome 9', 'Carnitine deficiency, myopathic', 'Leukodystrophy, hypomyelinating, 15', 'Muscular dystrophy, limb-girdle, type 2A', 'Hyperferritinemia with or without cataract', 'Pancreas, annular', 'Drug metabolism, poor, cyp2d6-relateddrug metabolism, ultrarapid, cyp2d6-related, included', 'Tinea imbricata, susceptibility to', 'Glomuvenous malformations', 'Collagenosis, familial reactive perforating', 'White sponge nevus 1', 'Progesterone resistance', 'GONADOBLASTOMA', 'Amyloidosis, cutaneous bullous', 'Neurodevelopmental disorder with seizures, hypotonia, and brain imaging abnormalities', 'Kabuki syndrome 1', 'Holoprosencephaly 11', 'Hyper-IgE recurrent infection syndrome 4, autosomal recessive', 'Meckel syndrome, type 2', 'Neurodevelopmental disorder with dystonia and seizures', 'Fundus albipunctatus', 'Deafness, sensorineural, Autosomal-Mitochondrial type', 'Vertebral fusion, posterior lumbosacral, with blepharoptosis', 'Neurodevelopmental disorder with dysmorphic features, spasticity, and brain abnormalities', 'Autoimmune disease, multisystem, infantile-onset, 2', 'Long QT syndrome 1', 'Amyotrophic lateral sclerosis 22 with or without frontotemporal dementia', 'Cardiac conduction defectsudden cardiac death, included', 'Neurodevelopmental disorder with progressive microcephaly, spasticity, and brain anomalies', 'Maturity-onset diabetes of the young, type 4', 'Maturity-onset diabetes of the young, type VII', 'Coarctation of aorta', 'Myotonic dystrophy 1', 'Atrophoderma vermiculata', 'Heterotaxy, visceral, 6, autosomal', 'Retinitis pigmentosa 44', 'Neutropenia, lethal congenital, with eosinophilia', 'Immunodeficiency 86, mycobacteriosis', 'King-Denborough syndrome', 'Visceral neuropathy, familial, 2, autosomal recessive', 'Neuropathy, hereditary sensory and autonomic, type VII', 'Pierson syndrome', 'Heterotopia, periventricular, X-linked dominant', 'Migraine with or without aura, susceptibility to, 12', 'Cataracts, hearing impairment, nephrotic syndrome, and enterocolitis 1', 'Superior transverse scapular ligament, calcification of, familial', 'Charcot-Marie-Tooth disease, axonal, type 2P', 'Amyotrophic lateral sclerosis 6, with or without frontotemporal dementia', 'Amyotrophic lateral sclerosis, susceptibility to, 25', 'Long QT syndrome 5', 'Sjogren syndrome', 'Congenital disorder of glycosylation, type IIN', 'Alopecia areata 2', 'Lymphatic malformation 2', 'Pulmonary fibrosis and/or bone marrow failure syndrome, telomere-related, 9', 'Emery-Dreifuss muscular dystrophy 5, autosomal dominant', 'Yuan-Harel-Lupski syndrome', 'Hemangiomas, cavernous, of face and supraumbilical midline raphe', 'Short-Rib thoracic dysplasia 6 with or without polydactyly', 'Cardiomyopathy, familial hypertrophic, 29, with polyglucosan bodies', 'Lymphatic malformation 10', 'Seckel syndrome 2', 'Leukemia, acute, ?x-linked', 'Wrinkly skin syndrome', 'Multiple endocrine neoplasia 1', 'Arterial dissection with lentiginosis', 'Hypogonadotropic hypogonadism 2 with or without anosmia', 'D-2-hydroxyglutaric aciduria 2', 'Structural heart defects and renal anomalies syndrome', 'Amyotrophic lateral sclerosis, susceptibility to, 24', 'Cold-Induced sweating syndrome 2', 'Beckwith-Wiedemann syndrome', 'Myasthenic syndrome, congenital, 22', 'Brachydactyly, type A1, C', 'Long QT syndrome 12', 'Costello syndrome', 'Migraine without aura, susceptibility to, 4', 'Carey-Fineman-Ziter syndrome', 'Platelet responsiveness to adrenaline, depressed', 'Muscular dystrophy, limb-girdle, type 2W', 'Luo-Schoch-Yamamoto syndrome', 'Developmental and epileptic encephalopathy 101', 'Peroxisome biogenesis disorder 1A (Zellweger)', 'Carnitine palmitoyltransferase II deficiency, myopathic, stress-induced', 'Aortic aneurysm, familial thoracic 9', 'Fanconi anemia, complementation group B', 'Pa polymorphism of alpha-2-globulin', 'Spondylometaphyseal dysplasia, axial', 'Intellectual developmental disorder, autosomal dominant 68', 'Neutropenia, chronic familial', 'Uruguay faciocardiomusculoskeletal syndrome', 'N-acetylaspartate deficiency', 'Complement factor H deficiency', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 4', 'Hypogonadotropic hypogonadism 8 with or without anosmia', 'Potocki-Lupski syndrome', 'Osteogenesis imperfecta, type III', 'Migraine with or without aura, susceptibility to, 3', 'Migraine with or without aura, susceptibility to, 11', 'Migraine with or without aura, susceptibility to, 5', 'Migraine with or without aura, susceptibility to, 1', 'Migraine, familial typical, susceptibility to, 2', 'Migraine with or without aura, susceptibility to, 10', 'Pituitary hormone deficiency, combined, 4', 'Atrial fibrillation, familial, 9', 'Heyn-Sproul-Jackson syndrome', 'Maturity-onset diabetes of the young, type IX', 'Maturity-onset diabetes of the young 6', 'Developmental delay, language impairment, and ocular abnormalities', 'Hypoparathyroidism, familial isolated 2', 'Krabbe disease, atypical, due to saposin A deficiency', 'Cutis laxa, autosomal recessive, type IIIB', 'Immunodeficiency 8', 'Multicentric carpotarsal osteolysis syndrome', 'Cardiomyopathy, dilated, 1O', 'AMME complex', 'Intellectual developmental disorder with hypotonia, impaired speech, and dysmorphic facies', 'Methemoglobinemia and ambiguous genitalia', 'Dystonia, juvenile-onset', 'Marfanoid habitus with situs inversus', 'Okur-Chung neurodevelopmental syndrome', 'Cardiomyopathy, familial restrictive, 3', 'Hypouricemia, hypercalcinuria, and decreased bone density', 'Bronchiectasis with or without elevated sweat chloride 1', 'Bronchiectasis with or without elevated sweat chloride 2', 'Developmental and epileptic encephalopathy 31B, autosomal recessive', 'Neurodevelopmental disorder with hyperkinetic movements and dyskinesia', 'Premature aging syndrome, Penttinen type', 'Sinoatrial node dysfunction and deafness', 'Noonan syndrome-like disorder with loose anagen hair 2', 'Septooptic dysplasia', 'Cardiomyopathy, familial hypertrophic, 28', 'Menkes disease', 'Pili torti, early-onset', 'Long QT syndrome 9', 'Cardiomyopathy, dilated, 1G', \"O'donnell-Luria-Rodan syndrome\", 'Immunodeficiency, X-linked, with deficiency of 115,000 dalton surfaceglycoprotein', 'Buschke-Ollendorff syndrome', 'Phosphoserine aminotransferase deficiency', 'Erythermalgia, primary', 'Atrial fibrillation, familial, 10', 'Immunodeficiency 95', 'Mucopolysaccharidosis, type IIID', 'Faciocardiomelic dysplasia, lethal', 'Gastroesophageal reflux', 'Spondyloepimetaphyseal dysplasia, sponastrime type', 'Myopathy, vacuolar, with CASQ1 aggregates', 'Takayasu arteritis', 'Short QT syndrome 7', 'Cardiomyopathy, dilated, 1K', 'Charcot-Marie-Tooth disease, dominant intermediate B', 'Adams-Oliver syndrome 1', 'Macular edema, cystoid', 'Hyperphosphatasia with mental retardation syndrome 2', 'Pancreatic cancer', 'Microcephaly 26, primary, autosomal dominant', 'Agammaglobulinemia 7, autosomal recessive', 'Heterotaxy, visceral, 11, autosomal, with male infertility', 'MUSCULAR DYSTROPHY-DYSTROGLYCANOPATHY (CONGENITAL WITHOUT MENTAL RETARDATION), TYPE B, 4', 'Summitt syndrome', 'Arthrogryposis, distal, type 1C', 'Congenital myopathy 22B, severe fetal', 'Diabetes mellitus, transient neonatal 2', 'Primary lateral sclerosis, juvenile', 'Myopathy, granulovacuolar lobular, with electrical myotonia', 'Cutis laxa, autosomal recessive, type IIIA', 'Cardiomyopathy, dilated, 1X', 'Myopathy, distal, infantile-onset', 'Emery-Dreifuss muscular dystrophy 2, autosomal dominant', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 2', 'Braddock-Carey syndrome 1', 'Carbimazole sensitivity', 'Immunodeficiency due to defect in mapbp-interacting protein', 'Cutaneous mastocytosis, conductive hearing loss, and microtia', 'Myasthenic syndrome, congenital, 17', 'Arthrogryposis, distal, type 7', 'Long QT syndrome 2', 'Granulomatous disease with defect in neutrophil chemotaxis', 'Congenital disorder of glycosylation, type IIq', 'Intellectual developmental disorder, autosomal recessive 73', 'Ehlers-Danlos syndrome, spondylodysplastic type, 1', 'Arthrogryposis multiplex congenita 3, myogenic type', 'Heart block, congenital', 'Dystrophia myotonica 2', 'Papilloma of choroid plexus', 'Leukodystrophy, hypomyelinating, 14', 'Cardiomyopathy, dilated, 1DD', 'Glucocorticoid deficiency 3', 'Sudden infant death with dysgenesis of the testes syndrome', 'Hypertrophic osteoarthropathy, primary, autosomal dominant', 'Verheij syndrome', 'Thymic-Renal-Anal-Lung dysplasia', 'Vacuolar neuromyopathy', 'Cardiomyopathy, dilated, 1M', 'Moyamoya disease 5', 'Brugada syndrome 9', 'Left ventricular noncompaction 10', 'Bardet-Biedl syndrome 20', 'Dent disease 1', 'Cole-Carpenter syndrome 2', 'Meier-Gorlin syndrome 8', 'Cataract 22, multiple types', 'Epidermolysis bullosa pruriginosa', 'Familial dysalbuminemic hyperthyroxinemia', 'Long QT syndrome 8', 'Ventricular tachycardia, catecholaminergic polymorphic, 1, with or without atrial dysfunction and/or dilated cardiomyopathy', 'Angioedema, hereditary, 4', 'Turnpenny-Fry syndrome', 'Jervell and Lange-Nielsen syndrome 2', 'Cardiomyopathy, familial hypertrophic 1', 'Ribbing disease', 'Anus, imperforate', 'Wolff-Parkinson-White syndrome', 'Neurodevelopmental disorder with poor growth and behavioral abnormalities', 'Fructosuria, essential', 'Congenital myopathy 21 with early respiratory failure', 'Growth retardation, developmental delay, coarse facies, and earlydeath', 'Epidermodysplasia verruciformis, susceptibility to, 1', 'Congenital myopathy 5 with cardiomyopathy', 'Camptodactyly with muscular hypoplasia, skeletal dysplasia, and abnormalpalmar creases', 'Fatty liver disease, nonalcoholic, susceptibility to, 2', 'Fatty liver disease, nonalcoholic, susceptibility to, 1', 'Cenani-Lenz syndactyly syndrome', 'Hyperalphalipoproteinemia 2', 'C5 deficiency', 'Immunodeficiency 58', 'IgA NEPHROPATHY, SUSCEPTIBILITY TO, 1', 'Nevoid hypermelanosis, linear and whorled', 'Leber congenital amaurosis 13', 'Osteoglophonic dysplasia', 'Cardiomyopathy, dilated, 1U', 'Camptodactyly, tall stature, and hearing loss syndrome', 'Cardiomyopathy, dilated, 1nn', 'Tetra-Amelia with ectodermal dysplasia and lacrimal duct abnormalities', 'Inflammatory bowel disease 28, early onset, autosomal recessive', 'Blau syndrome', 'Ataxia with isolated vitamin E deficiency', 'CHOPS syndrome', 'Intellectual developmental disorder, autosomal recessive 5', 'Carboxypeptidase N deficiency', 'Hadziselimovic syndrome', 'Mental retardation, autosomal dominant 50', 'Mitochondrial myopathy with A defect in mitochondrial-protein transport', 'Thoracolaryngopelvic dysplasia', 'Rothmund-thomson syndrome, type 1', 'Bardet-Biedl syndrome 2', 'Hypocalciuric hypercalcemia, familial, type I', 'Agammaglobulinemia 2, autosomal recessive', 'THREONINEMIA', 'Immunodeficiency 24', 'Ventricular tachycardia, catecholaminergic polymorphic, 3', 'Holoprosencephaly 1', 'Keutel syndrome', 'Myopathy, distal, with anterior tibial onset', 'Myasthenic syndrome, congenital, 2C, associated with acetylcholine receptor deficiency', 'Moyamoya disease 1', 'N syndrome', 'Progressive familial heart block, type II', 'Congenital heart defects, multiple types, 3', 'Triglyceride storage disease, type II', 'Ventricular tachycardia, catecholaminergic polymorphic, 4', 'Atrial fibrillation, familial, 1', 'Hermansky-Pudlak syndrome 1', 'Myosclerosis, autosomal recessive', 'Leukodystrophy, hypomyelinating, 12', 'Long QT syndrome 11', 'Lissencephaly 4', 'KINSSHIP syndrome', 'B-CELL MALIGNANCY, LOW-GRADE', 'Myelocytic leukemia-like syndrome, familial, chronic', 'Immunoskeletal dysplasia with neurodevelopmental abnormalities', 'Lymphatic malformation 1', 'Cardiomyopathy, dilated, 1EE', 'Cutis laxa, autosomal recessive, type IA', 'Timothy syndrome', 'Tremor of intention, ataxia, and lipofuscinosis', 'Neurodevelopmental disorder with spastic diplegia and visual defects', 'Temporal arteritis', 'Cardiomyopathy, dilated, 2B', 'PENTOSURIA', 'Muscular atrophy, ataxia, retinitis pigmentosa, and diabetes mellitus', 'Osteochondrodysplasia', 'Neuropathy, hereditary sensory and autonomic, type II', 'Card11 immunodeficiency', 'Miller-Dieker lissencephaly syndrome', 'Mosaic variegated aneuploidy syndrome 4', 'Jervell and Lange-Nielsen syndrome 1', 'Neurodevelopmental disorder with central and peripheral motor dysfunction', 'Cardiospondylocarpofacial syndrome', 'Mental retardation with language impairment and with or without autistic features', 'RETINOBLASTOMA', 'Syncope, familial vasovagal', 'Osteogenesis imperfecta, type X', 'Ulna metaphyseal dysplasia syndrome', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 4', 'Collagenoma, familial cutaneous', 'Mannose 6-phosphate receptor recognition defect, Lebanese type', 'Amyotrophic lateral sclerosis 19', 'Peho syndrome', 'Hypertrophic neuropathy of dejerine-sottas', 'Cardiomyopathy, dilated, 1J', 'Dystonia, childhood-onset, with optic atrophy and basal ganglia abnormalities', 'Polysyndactyly with cardiac malformation', 'Myasthenic syndrome, congenital, 3C, associated with acetylcholine receptor deficiency', 'Achondrogenesis, type IA', 'Cardiomyopathy, dilated, 1GG', 'Arrhythmogenic right ventricular dysplasia, familial, 8', 'Muscular dystrophy, limb-girdle, type 2F', 'Spinal muscular atrophy, type II', 'Pycnodysostosis', 'Craniosynostosis 1', 'Striatonigral degeneration, childhood-onset', 'Amyotrophic lateral sclerosis 11', 'Bardet-Biedl syndrome 6', 'Cranial nerves, recurrent paresis of', 'Hypotonia, hypoventilation, impaired intellectual development, dysautonomia, epilepsy, and eye abnormalities', 'Geleophysic dysplasia 3', 'TARP syndrome', 'Asthma, short stature, and elevated iga', 'Alpha-Thalassemia myelodysplasia syndrome', 'Left ventricular noncompaction 1', 'Carotenemia, familial', 'Congenital heart defects and skeletal malformations syndrome', 'Oculopharyngeal muscular dystrophy', 'Ventricular tachycardia, catecholaminergic polymorphic, 2', 'Cardiomyopathy, dilated, 1A', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 2', 'Maturity-onset diabetes of the young, type 1', 'Maturity-onset diabetes of the young, type II', 'Diabetes mellitus, insulin-dependent, 2', 'Koolen-De Vries syndrome', 'Orofaciodigital syndrome XVII', 'Narcolepsy 7', 'Arthrogryposis, distal, type 4', 'Trichorhinophalangeal syndrome, type III', 'Perrault syndrome 1', 'Mitochondrial DNA depletion syndrome 11', 'Schaaf-Yang syndrome', 'Phosphoglycerate mutase, muscle, deficiency of', 'Hyperaldosteronism, familial, type II', 'Peters-plus syndrome', 'Long QT syndrome 16', 'Immunodeficiency with hyper IgM, type 5', 'Cysteine peptiduria', 'Right pulmonary artery, anomalous origin of, familial', 'Raine syndrome', 'Brain malformations with or without urinary tract defects', 'Jacobsen syndrome', 'Long QT syndrome 15', 'Combined cellular and humoral immune defects with granulomas', 'Cutis laxa, autosomal dominant 2', 'Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type B, 14', 'Retinitis pigmentosa', 'Spondylometaphyseal dysplasia, Pagnamenta type', 'Spondyloepimetaphyseal dysplasia with joint laxity, type 1, with or without fractures', 'Cardiomyopathy, dilated, 1C, with or without left ventricular noncompaction', 'Neurodevelopmental disorder with brain abnormalities, poor growth, and dysmorphic facies', 'Spondylometaphyseal dysplasia, Megarbane-Dagher-Melki type', 'Amyotrophic lateral sclerosis 2, juvenile', 'Cranioectodermal dysplasia 3', 'Short QT syndrome 3', 'Epileptic encephalopathy, early infantile, 35', 'Brachydactyly, type A2, with microcephaly', 'EPILEPSY-TELANGIECTASIA', 'Neurodevelopmental disorder with absent speech and movement and behavioral abnormalities', 'Coffin-Siris syndrome 4', 'Muscular dystrophy, limb-girdle, type 2E', 'Neurodegeneration, childhood-onset, with ataxia, tremor, optic atrophy, and cognitive decline', 'Mulchandani-Bhoj-Conlin syndrome', 'Factor IX and factor XI, combined deficiency of', 'Loeys-Dietz syndrome 6', 'Immunodeficiency, partial combined, with absence of hla determinantsand beta-2-microglobulin from lymphocytes', 'Cerebrooculofacioskeletal syndrome 4', 'Congenital disorder of glycosylation, type I/IIx', 'Growth hormone insensitivity with immune dysregulation 2, autosomal dominant', 'Sclerosteosis 2', 'Noonan syndrome 3', 'Fetal akinesia deformation sequence 3', 'Muscular dystrophy, limb-girdle, autosomal recessive 25', 'Brugada syndrome 6', 'Angioedema, hereditary, 7', 'Schinzel-Giedion midface-retraction syndrome', 'Glycogen storage disease 0, muscle', 'Retinal telangiectasia and hypogammaglobulinemia', 'Muscular dystrophy, limb-girdle, type 2D', 'Pierre Robin syndrome', 'Nail disorder, nonsyndromic congenital, 3', 'Pigmented paravenous chorioretinal atrophy', 'Breasts and/or nipples, aplasia or hypoplasia of, 1', 'Migraine with or without aura, susceptibility to, 6', 'Hypertension and brachydactyly syndrome', 'Cataract 33, multiple types', 'Immunodeficiency 37', 'Mitral valve prolapse 1', 'Meier-Gorlin syndrome 3', 'Centronuclear myopathy 5', 'Cardiomyopathy, dilated, 1V', 'Smith-Mccort dysplasia 2', 'Mass syndrome', 'Loeys-Dietz syndrome 5', 'Intellectual developmental disorder, autosomal recessive 76', 'Epidermolytic hyperkeratosis', 'Amyotrophic lateral sclerosis 10 with or without frontotemporal dementia', 'Erythrokeratodermia variabilis et progressiva 1', 'Raynaud disease', 'Arrhythmogenic right ventricular dysplasia 12', 'Ramon syndrome', 'Internal carotid arteries, hypoplasia of', 'Cardiomyopathy, familial hypertrophic, 17', 'Leukemia, acute myeloid', 'Pancreatic cancer, susceptibility to, 1', 'Cutis laxa, autosomal recessive, type IIA', 'Epidermodysplasia verruciformis, susceptibility to, 5', 'Complement component 2 deficiency', 'Cardiomyopathy, familial hypertrophic, 11', 'Progressive familial heart block, type IA', 'Aortic aneurysm, familial thoracic 11, susceptibility to', 'Ulnar agenesis and endocardial fibroelastosis', 'Inclusion body myositis', 'Myopathy, reducing body, X-linked, childhood-onset', 'Nonaka myopathy', 'Acrofacial dysostosis, Cincinnati type', 'Cutis laxa, autosomal recessive, type IID', 'Complement component 4A deficiency', 'Mental retardation, X-linked 19', 'Myasthenia, congenital, refractory to acetylcholinesterase inhibitors', 'Epileptic encephalopathy, early infantile, 66', 'Riddle syndrome', 'HSD10 mitochondrial disease', 'Erythroderma, ichthyosiform, congenital reticular', 'Cardiomyopathy, dilated, 2A', 'Immunodeficiency, common variable, 5', 'Hernia, hiatus', 'Mitral valve prolapse, myxomatous 2', 'Mitral valve prolapse, myxomatous 3', 'Cardiomyopathy, familial hypertrophic, 26', 'Charcot-Marie-Tooth disease, type 4A', 'Dicarboxylicamino aciduria', 'Microcephaly, cataracts, impaired intellectual development, and dystonia with abnormal striatum', 'Hyperphenylalaninemia, BH4-deficient, B', 'Juvenile myelomonocytic leukemia', 'Onychodystrophy, osteodystrophy, impaired intellectual development, and seizures syndrome', 'Cardiomyopathy, dilated, 1BB', 'Dystonia 4, torsion, autosomal dominant', 'Bartter syndrome, type 4B, neonatal, with sensorineural deafness', 'Mckusick-Kaufman syndrome', 'Hyperlysinemia due to defect in lysine transport into mitochondria', 'Schneckenbecken dysplasia', 'Leptin receptor deficiency', 'Myopathy, proximal, and ophthalmoplegia', 'Optic atrophy--spastic paraplegia syndrome', 'Cerebral cavernous malformations 2', 'Episodic ataxia, type 3', 'Legius syndrome', 'Congenital myopathy 20', 'Currarino syndrome', 'Refsum disease', 'Dystonia, dopa-responsive, due to sepiapterin reductase deficiency', 'Hyperinsulinemic hypoglycemia, familial, 3', 'Bardet-Biedl syndrome 13', 'Skeletal dysplasia with delayed epiphyseal and carpal bone ossification', 'Aneurysm of interventricular septum', 'Amyloidosis of gingiva and conjunctiva, with mental retardation', 'GABA-transaminase deficiency', 'Microcephaly 13, primary, autosomal recessive', 'Lymphedema, cardiac septal defects, and characteristic facies', 'Ventricular arrhythmias due to cardiac ryanodine receptor calcium release deficiency syndrome', 'Mucopolysaccharidosis, type X', 'Cardiomyopathy, dilated, 1OO', 'Galloway-mowat syndrome 1', 'TYROSINOSIS', 'Ehlers-Danlos syndrome, spondylodysplastic type, 3', 'Spastic paraplegia 9A, autosomal dominant', 'Inclusion body myopathy with early-onset paget disease with or without frontotemporal dementia 1', 'Congenital disorder of glycosylation, type Iu', 'Thrombophilia due to decreased release of tissue plasminogen', 'Scheie syndrome', 'Hyperphenylalaninemia, bh4-deficient, C', 'Leukodystrophy, hypomyelinating, 16', 'Cystic angiomatosis of bone, diffuse', 'Multiple joint dislocations, short stature, craniofacial dysmorphism, with or without congenital heart defects', 'Leukemia, acute myelocytic, with polyposis coli and colon cancer', 'Lymphatic malformation 12', 'Oocyte maturation defect 7', 'Rigid spine muscular dystrophy 1', 'Epileptic encephalopathy, early infantile, 21', 'Muscular dystrophy, limb-girdle, type 2Q', 'Carpenter syndrome 1', 'Lipomatosis, multiple symmetric, with or without peripheral neuropathy', 'Neurodegeneration, childhood-onset, with multisystem involvement due to mitochondrial dysfunction', 'Tumoral calcinosis, hyperphosphatemic, familial, 1', 'Atrial septal defect 4', 'Charcot-Marie-Tooth disease, recessive intermediate C', 'Hyperphosphatasia with mental retardation', 'Fibrinolytic defect', 'Maple syrup urine disease, mild variant', 'Glioma susceptibility 3', 'Cluster headache, familial', 'Kaufman oculocerebrofacial syndrome', 'Pacman dysplasia', 'Pontocerebellar hypoplasia, type 1D', 'Agammaglobulinemia 8, autosomal dominant', 'Stuve-Wiedemann syndrome', 'Transient bullous dermolysis of the newborn', 'Hyperekplexia 1', 'Epidermolysis bullosa dystrophica, pretibial', 'Myopathy, congenital, with fast-twitch (type II) fiber atrophy', 'HYPERLEXIA', 'Multicentric osteolysis, nodulosis, and arthropathy', 'Aneurysm, intracranial berry, 3', 'Orthostatic hypotension 1, due to DBH deficiency', 'Microcephalic osteodysplastic primordial dwarfism, type I', 'Rhabdomyolysis, susceptibility to, 1', 'Spondyloepimetaphyseal dysplasia, Strudwick type', 'Cardiac septal defects with coarctation of the aorta', 'Paragangliomas 6', 'Patent ductus arteriosus 3', 'Patent ductus arteriosus 1', 'Thyroid hormone metabolism, abnormal, 3', 'SARCOSINEMIA', 'Chondrodysplasia punctata 2, X-linked dominant', 'Amyloidosis, primary localized cutaneous, 2', 'FANCONI ANEMIA, COMPLEMENTATION GROUP U', 'Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type B, 15', 'Arrhythmogenic right ventricular dysplasia, familial, 14', 'Lymphedema-Distichiasis syndrome', 'Radiculoneuropathy, fatal neonatal', 'Intellectual developmental disorder, autosomal recessive 64', 'Microcephaly 10, primary, autosomal recessive', 'Cataract 46, juvenile-onset', 'Fg syndrome 4', 'Joint contracture, osteochondromas, and B-cell lymphoma', 'Diencephalic-mesencephalic junction dysplasia syndrome 2', 'Cardiomyopathy, familial hypertrophic, 16', 'Atrial fibrillation, familial, 18', 'Capillary malformation-arteriovenous malformation 1', 'Cardiomyopathy, familial hypertrophic, 10', 'Circumvallate placenta syndrome', 'Cyclic vomiting syndrome', 'Neurodevelopmental disorder with microcephaly, epilepsy, and hypomyelination', 'Say syndrome', 'Mental retardation, autosomal recessive 18', 'Microcephaly-Capillary malformation syndrome', 'Cohen syndrome', 'Brugada syndrome 5', 'Retinitis pigmentosa 7', 'Microcephaly, short stature, and polymicrogyria with or without seizures', 'Amyotrophic lateral sclerosis 16, juvenile', 'Spinocerebellar ataxia, autosomal recessive 1', 'Autoimmune interstitial lung, joint, and kidney disease', 'Spastic paraplegia 30, autosomal recessive', 'Hermansky-Pudlak syndrome 11', 'Restrictive dermopathy 2', 'Gamma-A-Globulin, defect in assembly of', 'Cataract 16, multiple types', 'Mismatch repair cancer syndrome 2', 'Neu-Laxova syndrome 2', 'Ventricular fibrillation, paroxysmal familial, 2', 'Arthrogryposis, distal, with impaired proprioception and touch', 'Primrose syndrome', 'Hyperparathyroidism 1', 'Deafness, sensorineural, with peripheral neuropathy and arterial disease', 'Muscular dystrophy-dystroglycanopathy (congenital with mental retardation), type B, 3', 'Complement component 3 deficiency, autosomal recessive', 'Chromosome 17q11.2 duplication syndrome, 1.4-Mb', 'Marsili syndrome', 'Methylmalonic aciduria, transient, due to transcobalamin receptor defect', 'Ehlers-Danlos syndrome, dermatosparaxis type', 'Polymicrogyria with or without vascular-type EDS', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 1', 'Schizophrenia 4', 'Atrial standstill 1', 'Retinitis pigmentosa 6', 'Osteodysplasty, precocious, of danks, mayne, and kozlowski', 'Amelia and terminal transverse hemimelia', 'Diaphanospondylodysostosis', 'Nemaline myopathy 1', 'Feingold syndrome 1', 'Lowry-Wood syndrome', 'Epilepsy, familial temporal lobe, 5', 'Zimmermann-Laband syndrome 1', 'Paramyotonia congenita', 'Lymphedema-Hypoparathyroidism syndrome', 'Rigidity and multifocal seizure syndrome, lethal neonatal', 'Glucocorticoid deficiency 2', 'Steinfeld syndrome', 'Myopathy, myofibrillar, 4', 'Fetal iodine deficiency disorder', 'Intellectual developmental disorder with cardiac arrhythmia', 'Cardiomyopathy, familial hypertrophic, 14', 'Neutropenia, severe congenital 3, autosomal recessive', 'Melkersson-Rosenthal syndrome', 'Pituitary hormone deficiency, combined or isolated, 7', 'Lethal congenital contracture syndrome 8', 'Megacystis-microcolon-intestinal hypoperistalsis syndrome 3', 'Pelvic organ prolapse', 'Premature chromatid separation trait', 'Nathalie syndrome', 'INTUSSUSCEPTION', 'Epileptic encephalopathy, early infantile, 77', 'VISS syndrome', 'Lethal congenital contracture syndrome 2', 'Shprintzen-Goldberg craniosynostosis syndrome', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 12', 'Immunodeficiency 88', 'Myopathy, centronuclear, 4', 'Neurodevelopmental disorder with epilepsy, spasticity, and brain atrophy', 'Cardiomyopathy, dilated, 2E', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 14', 'Cardiofaciocutaneous syndrome 4', 'Polycystic lipomembranous osteodysplasia with sclerosing leukoencephalopathy', 'Mental retardation, autosomal dominant 57', 'Meester-Loeys syndrome', 'Chondrodysplasia calcificans metaphysealis', 'Insulinomatosis and diabetes mellitus', 'Brachyolmia type 1, Toledo type', 'Ebstein anomaly', 'Pancreatic cancer, susceptibility to, 5', 'Amyotrophic lateral sclerosis 8', 'Occipital horn syndrome', 'Shprintzen omphalocele syndrome', 'Renal failure, progressive, with hypertension', 'Pendred syndrome', 'Microcephaly 17, primary, autosomal recessive', 'Myopathy, epilepsy, and progressive cerebral atrophy', 'Ciliary dyskinesia, primary, 25', 'Myasthenic syndrome, congenital, 4A, slow-channel', 'Multiple congenital anomalies-hypotonia-seizures syndrome 3', 'Multiple pterygium syndrome, Lethal type', 'Inflammatory bowel disease 29', 'Lenz-Majewski hyperostotic dwarfism', 'Thyroid hormone resistance, generalized, autosomal dominant', 'Zttk syndrome', 'HYDROXYPROLINEMIA', 'Aminoacylase 1 deficiency', 'Atrial fibrillation, familial, 14', 'Myofibrillar myopathy 11', 'Legg-Calve-Perthes disease', 'Patent ductus arteriosus and bicuspid aortic valve with hand anomalies', 'Muscular dystrophy, limb-girdle, autosomal recessive 26', 'Slowed nerve conduction velocity, autosomal dominant', 'Intellectual developmental disorder with poor growth and with or without seizures or ataxia', 'Neurodevelopmental, jaw, eye, and digital syndrome', 'Enhanced S-cone syndrome', 'Lissencephaly 2', 'Cardiomyopathy, dilated, 1HH', 'Hemosiderosis, pulmonary, with deficiency of gamma-A globulin', 'Tyrosine transaminase deficiency', 'Oliver-Mcfarlane syndrome', 'Combined oxidative phosphorylation deficiency 50', 'Factor VIII and factor IX, combined deficiency of', 'Arrhythmogenic right ventricular dysplasia, familial, 3', 'Baraitser-Winter syndrome 1', 'Neurodevelopmental disorder with movement abnormalities, abnormal gait, and autistic features', 'Brain small vessel disease 1 with or without ocular anomalies', 'Vacterl association with hydrocephalus', 'Muscular dystrophy, limb-girdle, type 1E', 'Cutis laxa, autosomal dominant 1', 'Myopathy, congenital with structured cores and Z-line abnormalities', 'Ichthyosis vulgaris', 'LACTIC ACIDURIA DUE TO D-LACTIC ACID', 'Internal carotid artery, spontaneous dissection of', 'Prolactin deficiency with obesity and enlarged testes', 'Cardiomyopathy, dilated, 1Z', 'Neuropathy, hereditary sensory, X-linked', 'Immunodeficiency 61', 'Snijders Blok-Campeau syndrome', 'Epileptic encephalopathy, early infantile, 30', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 1', 'Succinic semialdehyde dehydrogenase deficiency', 'Lesch-Nyhan phenotype with normal hgprt', 'Cardiomyopathy, familial hypertrophic, 2', 'Hyperphosphatasia with impaired intellectual development syndrome 4', 'Spondylocostal dysostosis 4, autosomal recessive', 'Long QT syndrome 14', 'Cardiomyopathy, dilated, 1KK', 'Muscular dystrophy, limb-girdle, autosomal recessive 10', 'Immunodeficiency-Centromeric instability-facial anomalies syndrome2', 'Telangiectasia, hereditary benign', 'Pontocerebellar hypoplasia, type 4', 'Immunodeficiency, common variable, 4', 'Angiokeratoma corporis diffusum with arteriovenous fistulas', 'Hypokalemic periodic paralysis, type 2', 'Cerebral dysgenesis, neuropathy, ichthyosis, and palmoplantar keratoderma syndrome', 'Insulin-Like growth factor I, resistance to', 'Cerebrooculofacioskeletal syndrome 3', 'Cardiomyopathy, dilated, 2D', 'Myopathy due to myoadenylate deaminase deficiency', 'Glycosylphosphatidylinositol biosynthesis defect 17', 'Lymphatic malformation 3', 'Bardet-Biedl syndrome 3', 'GLUCOGLYCINURIA', 'Multiple pterygium syndrome, X-linked', '2-Methylbutyryl-Coa dehydrogenase deficiency', 'Muscular dystrophy, congenital, 1B', 'Developmental delay, impaired speech, and behavioral abnormalities', 'Cornelia de Lange syndrome 1', 'Noonan syndrome 5', 'Neurodevelopmental disorder with microcephaly and spastic paraplegia', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 8', 'Parkinson disease 22, autosomal dominant', 'Immunodeficiency 83, susceptibility to viral infections', 'Sneddon syndrome', 'T-cell lymphopenia, infantile, with or without nail dystrophy, autosomal dominant', 'Heart, malformation of', 'Urofacial syndrome', 'Martsolf syndrome 2', 'Dermatitis, atopic', 'Ventricular extrasystoles with syncope, perodactyly, and Robin sequence', 'Zinc deficiency, transient neonatal', 'Immune deficiency, familial variable', 'Camptodactyly 1', '3-M syndrome 1', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 5', 'Peho-Like syndrome', 'Naegeli-Franceschetti-Jadassohn syndrome', 'Neurodevelopmental disorder with spasticity, seizures, and brain abnormalities', 'Immunodeficiency 38 with basal ganglia calcification', 'Phosphoserine phosphatase deficiency', 'Neuropathy, hereditary sensory, with spastic paraplegia, autosomal recessive', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 12', 'Microcephaly, primary autosomal recessive, 1', 'Myopathy, distal, with rimmed vacuoles', 'Pulmonary hypertension, primary, autosomal recessive', 'Spondylocostal dysostosis 3, autosomal recessive', 'Lysine malabsorption syndrome', 'Arthrogryposis, distal, type 2A', 'Cardiomyopathy, familial hypertrophic, 13', 'Immunodeficiency 51', 'Muscular dystrophy, congenital, due to integrin alpha-7 deficiency', 'Li-Fraumeni syndrome', 'Hypomagnesemia 4, renal', 'Bardet-Biedl syndrome 9', 'Cole disease', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 15', 'Cone-rod dystrophy 12', 'Waardenburg syndrome, type 4B', 'Oculorenocerebellar syndrome', 'Microtia, hearing impairment, and cleft palate', 'Carpal tunnel syndrome', 'Hennekam lymphangiectasia-lymphedema syndrome', 'Myopathy, tubular aggregate, 2', 'Atrial septal defect 6', 'Van Maldergem syndrome 1', 'Bethlem myopathy 2', 'Atrial septal defect with atrioventricular conduction defects', 'Ichthyosis, mental retardation, dwarfism, and renal impairment', 'Hernia, double inguinal', 'Myopathy, distal, 6, adult onset', 'Fountain syndrome', 'Sedoheptulokinase deficiency', 'Atrial fibrillation, familial, 4', 'Enchondromatosis, multiple', 'Stiff skin syndrome', 'Aortic arch anomaly with peculiar facies and mental retardation', 'Glomerulosclerosis, focal segmental, 5', 'Sinus node disease and myopia', 'Congenital lipomatous overgrowth, vascular malformations, and epidermal nevi', 'Neurodegeneration, infantile-onset, biotin-responsive', 'D-2-Hydroxyglutaric aciduria 1', 'Cataract 11, multiple types', 'Emanuel syndrome', 'Patent ductus arteriosus 2', 'Muscular dystrophy, limb-girdle, type 2Y', 'Charcot-Marie-Tooth disease, dominant intermediate A', 'Achalasia, familial esophageal', 'Frank-ter Haar syndrome', 'Nemaline myopathy 11, autosomal recessive', 'Facioscapulohumeral muscular dystrophy 1', 'Microphthalmia, syndromic 12', 'Heterotaxy, visceral, 10, autosomal, with male infertility', 'Exostoses, multiple, type I', 'Miyoshi muscular dystrophy 1', 'Diastrophic dysplasia', 'Chromosome 15q26-qter deletion syndrome', 'Diarrhea 3, secretory sodium, congenital, with or without other congenital anomalies', 'Combined osteogenesis imperfecta and Ehlers-Danlos syndrome 2', 'Hypomagnesemia 1, intestinal', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 9', 'Metaphyseal dysplasia with maxillary hypoplasia and brachydactyly', 'Blood group, cromer system', 'Behcet syndrome', 'Osseous heteroplasia, progressive', 'Xia-Gibbs syndrome', 'Multiple congenital anomalies-hypotonia-seizures syndrome 2', 'Neuronal intranuclear inclusion disease', 'Cardiomyopathy, familial hypertrophic, 15', 'Xeroderma pigmentosum, complementation group F', 'Obesity-Hypoventilation syndrome', 'Recombinant chromosome 8 syndrome', 'Al-Gazali-Bakalinova syndrome', 'Hyperuricemic nephropathy, familial juvenile, 3', 'Glomerulocystic kidney disease with hyperuricemia and isosthenuria', 'Homocystinuria due to deficiency of n(5,10)-methylenetetrahydrofolatereductase activity', 'Pseudohermaphroditism, male, with gynecomastia', 'Hydrops fetalis, nonimmune, with gracile bones and dysmorphic features', 'Leiomyoma of vulva and esophagus', 'Ververi-Brady syndrome', 'Gillespie syndrome', 'Arrhythmogenic right ventricular dysplasia, familial, 1', 'Radial aplasia, X-linked', 'Anorectal anomalies', 'Necrotizing encephalomyelopathy, subacute, of leigh, adult', 'Meier-Gorlin syndrome 1', 'Microcephaly with cervical spine fusion anomalies', 'Sacral defect with anterior meningocele', 'Hypoglossia with situs inversus', 'UV-sensitive syndrome 3', 'Creatine phosphokinase, elevated serum', 'Hypomagnesemia 2, renal', 'Polyposis of gastric fundus without polyposis coli', 'Congenital myopathy 2C, severe infantile, autosomal dominant', 'Paragangliomas 4', 'Satoyoshi syndrome', 'Immunodeficiency 101 (varicella zoster virus-specific)', 'Oculopharyngodistal myopathy 4', 'Mitochondrial complex IV deficiency, nuclear type 14', 'Gastrointestinal stromal tumor/GIST-plus syndrome, somatic or familial', 'Schimmelpenning-Feuerstein-Mims syndrome', 'Hydrocephalus, tall stature, joint laxity, and kyphoscoliosis', 'Muscular dystrophy, congenital, with or without seizures', 'Retinal arteries, tortuosity of', 'Pseudohyperkalemia, familial, 2, due to red cell leak', 'Immunodeficiency 13', 'Aortic arch interruption, facial palsy, and retinal coloboma', 'Spondyloepiphyseal dysplasia tarda, autosomal recessive', 'Miyoshi muscular dystrophy 3', 'Frontoocular syndrome', 'Deafness, neural, with atypical atopic dermatitis', 'Feingold syndrome 2', 'Spinal muscular atrophy with congenital bone fractures 2', 'Fibromuscular dysplasia, multifocal', 'Mismatch repair cancer syndrome 3', 'Blepharochalasis, superior', 'Brachyolmia type 2', 'Atrial fibrillation, familial, 7', 'Neurodevelopmental disorder with microcephaly, ataxia, and seizures', 'Saccharopinuria', 'Microcephaly 11, primary, autosomal recessive', 'Mismatch repair cancer syndrome 4', 'Congenital disorder of glycosylation, type IIc', 'Bundle branch block, familial isolated complete right', 'Cardiomyopathy, dilated, 1FF', 'Short syndrome', 'Dyskinesia, limb and orofacial, infantile-onset', 'Osteogenesis imperfecta, type IX', 'Atrial tachyarrhythmia with short pr interval', 'Pulmonary atresia with ventricular septal defect', 'Beta-aminoisobutyric acid, urinary excretion of', 'CYSTATHIONINURIA', 'Bardet-Biedl syndrome 14', 'Cerebral cavernous malformations 3', 'Choroid plexus calcification and mental retardation', 'Intellectual developmental disorder, autosomal recessive 68', 'Muscular dystrophy, limb-girdle, type 1H', 'Myopathy, myosin storage, autosomal recessive', 'Bardet-Biedl syndrome 11', 'Epidermodysplasia verruciformis, susceptibility to, 4', 'Coracoclavicular joint, anomalous', 'Ige responsiveness, atopic', 'Arrhythmogenic right ventricular dysplasia, familial, 4', 'Ventricular septal defect 3', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 5', 'Aicardi-Goutieres syndrome 2', 'Rhizomelic skeletal dysplasia with or without Pelger-Huet anomaly', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 7', 'Brain small vessel disease 2', 'Spondylocostal dysostosis with anal atresia and urogenital anomalies', 'Muscular dystrophy, limb-girdle, type 2Z', 'Charcot-Marie-Tooth disease, axonal, type 2II', 'Leukodystrophy, hypomyelinating, 26, with chondrodysplasia', 'Diaphragmatic defects, limb deficiencies, and ossification defects of skull', 'Prune belly syndrome', 'Phosphohydroxylysinuria', 'Ullrich congenital muscular dystrophy 2', 'Yoon-Bellen neurodevelopmental syndrome', 'Charcot-Marie-Tooth disease, dominant intermediate E', 'Immunodeficiency 70', 'Oculopharyngodistal myopathy 2', 'Kanzaki disease', 'Ataxia-Oculomotor apraxia 3', 'Bulbar palsy, progressive, of childhood', 'Amyotrophic lateral sclerosis 26 with or without frontotemporal dementia', 'Proteus syndrome, somatic', 'Pierpont syndrome', 'Atrial septal defect 8', 'Microcephaly, short stature, and impaired glucose metabolism 2', 'Spondyloepimetaphyseal dysplasia, Faden-Alkuraya type', 'Vesicoureteral reflux 1', 'Peripheral demyelinating neuropathy, central dysmyelination, Waardenburg syndrome, and Hirschsprung disease', 'Joubert syndrome 21', 'Spinal muscular atrophy with congenital bone fractures 1', 'Pulmonary atresia with intact ventricular septum', 'Morquio syndrome C', 'Dystonia 32', 'Dandy-Walker malformation with postaxial polydactyly', 'Cerebellar ataxia, benign, with thermoanalgesia', 'Nuchal bleb, familial', 'Nijmegen breakage syndrome-like disorder', 'Language delay and attention deficit-hyperactivity disorder/cognitive impairment with or without cardiac arrhythmia', 'Nivelon-Nivelon-Mabille syndrome', 'Neurofibromatosis-Noonan syndrome', 'Encephalopathy, progressive, early-onset, with episodic rhabdomyolysis', 'Parkinsonism-Dystonia, infantile, 1', 'Spastic paraplegia 70, autosomal recessive', 'Frontotemporal dementia and/or amyotrophic lateral sclerosis 2', 'Kilquist syndrome', 'Mandibuloacral dysplasia with type B lipodystrophy', 'Nabais Sa-de vries syndrome, type 2', 'Atrial fibrillation, familial, 11', 'Pulmonary venoocclusive disease 1', 'Total anomalous pulmonary venous return 1', 'Leukodystrophy, adult-onset, autosomal dominant', 'Chromosome 13q33-q34 deletion syndrome', 'Seckel syndrome 9', 'Leber congenital amaurosis 4', 'Hyperphenylalaninemia, BH4-deficient, D', 'Webb-Dattani syndrome', 'Combined oxidative phosphorylation deficiency 49', 'Pituitary dwarfism with large sella turcica', 'Chromosome 20q11-q12 deletion syndrome', 'Myopathy, distal, 4', 'Neurodevelopmental disorder, X-linked, with craniofacial abnormalities', 'Charge syndrome', 'Joubert syndrome 37', 'Mosaic variegated aneuploidy syndrome 2', 'Cervical vertebral bridge', 'Finger locking, recurrent, with intrauterine growth retardation andproportionate short stature', 'Metatropic dysplasia', 'Alzheimer disease', 'Macular dystrophy, corneal, 1', 'Ataxia, intention tremor, and hypotonia syndrome, childhood-onset', 'Charcot-Marie-Tooth disease, type 2J', 'Hyperkalemic periodic paralysis', 'Arteries, anomalies of', 'Hemangiopericytoma, malignant', 'Neurodegeneration with brain iron accumulation 7', 'Craniometaphyseal dysplasia, autosomal dominant', 'Meacham syndrome', 'Galloway-Mowat syndrome 7', 'Hypothyroidism, congenital, nongoitrous, 4', 'Thumb deformity', 'Exostoses, multiple, type II', 'Transposition of the great arteries, dextro-looped 1', 'Smith-Magenis syndrome', 'Intracranial hypertension, idiopathic', 'Chromosome 19q13.11 deletion syndrome, distal', 'Facial palsy, congenital, with ptosis and velopharyngeal dysfunction', 'Hypotonia, ataxia, developmental delay, and tooth enamel defect syndrome', 'Hypertrophic neuropathy and cataract', 'Cataract 17, multiple types', 'Epidermolytic hyperkeratosis 2', 'Immunodeficiency 27B', 'Kabuki syndrome 2', 'Epidermolysis bullosa simplex, Ogna type', 'Spondylometaphyseal dysplasia, type A4', 'Bardet-Biedl syndrome 22', 'Spondylosis, cervical', 'Sorbitol dehydrogenase deficiency with peripheral neuropathy', 'GLUT1 deficiency syndrome 1, infantile onset, severe', 'Hyperprolinemia, type II', 'Charcot-Marie-Tooth disease, axonal, type 2B1', 'Craniolenticulosutural dysplasia', 'Leukodystrophy, hypomyelinating, 20', 'Immunodeficiency, common variable, 3', 'Cardiomyopathy, familial hypertrophic, 3', 'Immunodeficiency 20', 'Mental retardation, autosomal recessive 30', 'Nemaline myopathy 6', 'Inflammatory bowel disease 3', 'Inflammatory bowel disease 21', 'Gombo syndrome', 'Carcinoid tumors, intestinal', 'Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type B, 1', 'Trichothiodystrophy 1, photosensitive', 'FG syndrome 3', 'Cayler cardiofacial syndrome', 'Hyperuricemia, infantile, with abnormal behavior and normal hypoxanthineguanine phosphoribosyltransferase', 'Atrioventricular septal defect, susceptibility to, 2', 'Intellectual developmental disorder with short stature and variable skeletal anomalies', 'Myoglobinuria, recurrent', 'Meckel diverticulum', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 3', 'Nephronophthisis-Like nephropathy 1', 'Cleidocranial dysplasia, recessive form', 'Spondyloepiphyseal dysplasia, Nishimura type', 'Heart-hand syndrome, Spanish type', 'Trichothiodystrophy 6, nonphotosensitive', 'Lethal congenital contracture syndrome 10', 'Diabetes mellitus, insulin-dependent-1', 'Pontine tegmental cap dysplasia', 'Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency 3', 'Porencephaly, cerebellar hypoplasia, and internal malformations', 'Chromosome 16q22 deletion syndrome', 'Mitchell syndrome', 'Mental retardation, autosomal dominant 35', 'Buerger disease', 'Neuromyotonia and axonal neuropathy, autosomal recessive', 'Noonan syndrome 14', 'Aminopterin syndrome sine aminopterin', 'Myoclonus, intractable, neonatal', 'Nemaline myopathy 5B, autosomal recessive, childhood-onset', 'Ichthyosis, congenital, autosomal recessive 3', 'Dyslexia, susceptibility to, 8', 'Neurodevelopmental disorder with hypotonia, impaired speech, and behavioral abnormalities', 'Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 3', '3-M syndrome 2', 'Joubert syndrome 18', 'Cardiomyopathy, familial restrictive, 1', 'Neurodegeneration, childhood-onset, hypotonia, respiratory insufficiency and brain imaging abnormalities', 'SPONDYLOLISTHESIS', 'OMPHALOCELE', 'Omphalocele due to duplication of 1p31.3', 'Aland island eye disease', 'Parathyroid carcinoma', 'Muscular dystrophy, limb-girdle, autosomal dominant 2', 'Microcephaly 27, primary, autosomal dominant', 'Blount disease, adolescent', 'Epileptic encephalopathy, early infantile, 55', 'Charcot-Marie-Tooth disease, dominant intermediate D', 'Glycogen storage disease XV', 'Tetralogy of Fallot and glaucoma', 'Neurodevelopmental disorder with alopecia and brain abnormalities', 'Lacrimal duct defect', 'Sprengel deformity', 'Lung agenesis, congenital heart defects, and thumb anomalies syndrome', 'Cataract, juvenile, with microcornea and glucosuria', 'Hunter-Macdonald syndrome', 'Polyposis, intestinal, with multiple exostoses', 'Rippling muscle disease', 'Hypoglycemia of infancy, leucine-sensitive', 'Rothmund-Thomson syndrome', 'Spinal intradural arachnoid cysts', 'Phosphoglycerate kinase 1 deficiency', 'Myopathy, distal 3', 'Boucher-Neuhauser syndrome', 'Short-Rib thoracic dysplasia 11 with or without polydactyly', 'Desbuquois dysplasia 1', 'Neurodevelopmental disorder with dysmorphic facies and thin corpus callosum', 'Hypercalciuria, absorptive, susceptibility to', 'Developmental and epileptic encephalopathy 58', 'Schwartz-jampel syndrome, type 1', 'Atrioventricular dissociation', 'Cerebrooculofacioskeletal syndrome 2', 'Myopathy, myofibrillar, 6', 'Myopathy, distal, 5', 'Congenital disorder of glycosylation, type IIz', 'Proteinuria, chronic benign', 'Focal segmental glomerulosclerosis 2', 'Gillessen-Kaesbach-Nishimura syndrome', 'Spondyloepimetaphyseal dysplasia with joint laxity, type 3', 'Brain abnormalities, neurodegeneration, and dysosteosclerosis', 'Intellectual developmental disorder with hypotonia and behavioral abnormalities', 'Glycosylphosphatidylinositol biosynthesis defect 15', 'Retinal cone dystrophy 3A', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 14', 'Kleeblattschaedel syndrome', 'Retinal dystrophy, iris coloboma, and comedogenic acne syndrome', 'Indolylacroyl glycinuria with mental retardation', 'Short stature with nonspecific skeletal abnormalities', 'Oculopharyngodistal myopathy 1', 'Benign chronic pemphigus', 'Urticaria, familial localized heat', 'Annular erythema', 'Urticaria, aquagenic', 'Erythema palmare hereditarium', 'Myasthenic syndrome, congenital, 1A, slow-channel', 'Arrhythmogenic right ventricular dysplasia, familial, 13', 'Epileptic encephalopathy, early infantile, 78', 'IgA NEPHROPATHY, SUSCEPTIBILITY TO, 2', 'Sick sinus syndrome 1', 'Familial cold autoinflammatory syndrome 3', 'Immunodeficiency 35', 'Hypertension, early-onset, autosomal dominant, with severe exacerbationin pregnancy', 'METACHONDROMATOSIS', 'Facial dysmorphism, immunodeficiency, livedo, and short stature', 'Thoracomelic dysplasia', 'Chromosome Xq13 duplication syndrome', 'Cardiomyopathy, dilated, 1Y', 'Ciliary dyskinesia, primary, 43', 'Complement factor B deficiency', 'Cataracts, growth hormone deficiency, sensory neuropathy, sensorineural hearing loss, and skeletal dysplasia', 'Paragangliomas 5', 'Spondyloepimetaphyseal dysplasia, Isidor-Toutain type', 'Congenital cataracts, hearing loss, and neurodegeneration', 'Myasthenic syndrome, congenital, 4B, fast-channel', 'Episodic ataxia, type 4', 'Spinal dysplasia, Anhalt type', 'Hydrocephalus, normal pressure, 1', 'Ichthyosis, split hairs, and amino aciduria', 'Intellectual developmental disorder with language impairment and early-onset DOPA-responsive dystonia-parkinsonism', 'Scoliosis, idiopathic, susceptibility to, 1', 'Isotretinoin embryopathy-like syndrome', 'Treacher-Collins syndrome 4', 'Tumor predisposition syndrome 2', 'Dystonia 2, torsion, autosomal recessive', 'Huntington disease-like 2', 'Intellectual developmental disorder, autosomal recessive 24', 'Short stature, idiopathic familial', 'Brugada syndrome 7', 'Gurrieri syndrome', 'Spinocerebellar ataxia, autosomal recessive 20', 'Amelia, autosomal recessive', 'Asparagine synthetase deficiency', 'Radial-Renal syndrome', 'Mononeuropathy of the median nerve, mild', 'Intellectual developmental disorder with macrocephaly, seizures, and speech delay', 'URIDINE-CYTIDINEURIA', 'Onychotrichodysplasia and neutropenia', 'Ehlers-Danlos syndrome, periodontal type, 2', 'Cardiomyopathy, familial hypertrophic, 12', 'Immunodeficiency 65, susceptibility to viral infections', 'Bardet-Biedl syndrome 8', 'Anus, imperforate', 'Auriculocondylar syndrome 2', 'Cerebral amyloid angiopathy, itm2b-related, 1', 'Kaya-Barakat-Masson syndrome', 'RAPADILINO syndrome', 'Myasthenic syndrome, congenital, 25, presynaptic', 'Polyhydramnios, megalencephaly, and symptomatic epilepsy', 'Neuroblastoma, susceptibility to, 2', 'Intellectual developmental disorder with gastrointestinal difficulties and high pain threshold', 'Carney complex variant', 'Hyperoxaluria, primary, type III', 'Pyloric atresia', 'Developmental and epileptic encephalopathy 107', 'Anauxetic dysplasia 3', 'Muscular dystrophy, limb-girdle, type 2C', 'Carey-Fineman-Ziter syndrome 2', 'Spinocerebellar ataxia 48', 'Dworschak-Punetha neurodevelopmental syndrome', 'Congenital myopathy 13', 'Ceroid lipofuscinosis, neuronal, 9', 'Respiratory distress syndrome in premature infants', 'Dwarfism with tall vertebrae', 'Osteogenesis imperfecta congenita, microcephaly, and cataracts', 'Spondylocostal dysostosis 6, autosomal recessive', 'Triphalangeal thumbs and dislocation of patella', 'Epileptic encephalopathy, early infantile, 39', 'Opsismodysplasia', 'Carney complex, type 1', 'Vesicoureteral reflux 3', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 5', 'Cardiomyopathy, dilated, 1R', 'Tumoral calcinosis, hyperphosphatemic, familial, 2', 'Nephronophthisis 15', 'Congenital myopathy 10B, mild variant', 'Charcot-Marie-Tooth disease, axonal, type 2T', 'Au-Kline syndrome', 'Fetal encasement syndrome', 'Chondrodysplasia punctata, autosomal dominantchondrodysplasia punctata due to vitamin K deficiency, included', 'Holoprosencephaly with fetal akinesia/hypokinesia sequence', 'Hemangiomas of small intestine', 'Epileptic encephalopathy, early infantile, 76', 'Cystinosis, adult nonnephropathic', 'Epileptic encephalopathy, infantile or early childhood, 2', 'CARNOSINEMIA', 'Microcephaly 16, primary, autosomal recessive', 'Visceral neuropathy, familial, autosomal recessive', 'Hirschsprung disease with ulnar polydactyly, polysyndactyly of bigtoes, and ventricular septal defect', 'Deafness, congenital, with vitiligo and achalasia', 'Vater associationvacterl association, included', 'Myofibrillar myopathy 10', 'Mental and growth retardation with amblyopia', 'Cowchock syndrome', 'Candidiasis, familial chronic mucocutaneous, autosomal dominant', 'Roussy-Levy hereditary areflexic dystasia', 'Myopathy, myofibrillar, fatal infantile hypertonic, alpha-B crystallin-related', 'Duodenal atresia', 'Loeys-Dietz syndrome 1', 'Iga nephropathy, susceptibility to, 3', 'Spondylometaphyseal dysplasia, corner Fracture type', 'Atrial fibrillation, familial, 2', 'Surfactant metabolism dysfunction, pulmonary, 2', 'Tubulointerstitial kidney disease, autosomal dominant, 1', 'Colorectal cancer, hereditary nonpolyposis, type 5', 'Chondrocalcinosis 1', 'Heart-hand syndrome, Slovenian type', 'Encephalopathy, acute, infection-induced, susceptibility to, 3', 'Stevenson-Carey syndrome', 'Ehlers-Danlos syndrome with platelet dysfunction from fibronectin abnormality', 'Myasthenic syndrome, congenital, 1B, fast-channel', 'Mowat-Wilson syndrome', 'Leopard syndrome 1', 'Camptodactyly-Arthropathy-Coxa vara-pericarditis syndrome', 'Muscular dystrophy-dystroglycanopathy (congenital with or without impaired intellectual development), type B, 5', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions,autosomal dominant, 6', 'Atrial fibrillation, familial, 6', 'Hyperphosphatasia with mental retardation syndrome 3', 'Prepapillary vascular loops', 'Venular insufficiency, systemic', 'Spondyloepiphyseal dysplasia, Maroteaux type', 'Chromosome 18q deletion syndrome', 'Cohen-Gibson syndrome', 'Vertebral, cardiac, renal, and limb defects syndrome 1', 'Osteomas of mandible', 'Bardet-Biedl syndrome 18', 'T-CELL IMMUNODEFICIENCY, CONGENITAL ALOPECIA, AND NAIL DYSTROPHY', 'Thoracic dysostosis, isolated', 'Cerebral cavernous malformations 4', 'Immunodeficiency 66', 'Hirschsprung disease, susceptibility to, 5', 'Aganglionosis, total intestinal', 'Spinocerebellar degeneration and corneal dystrophy', 'Diabetes and deafness, maternally inherited', 'Pubic bone dysplasia', 'Carpal displacement', 'Monophalangy of great toe', 'Double nail for fifth toe', 'Pachydermodactyly, familial', 'Toe, misshapen', 'Toe, fifth, number of phalanges in', 'Palmaris longus muscle, absence of', 'Toes, relative length of first and second', 'Myopathy, myofibrillar, 3', 'AURICULOOSTEODYSPLASIA', 'Thumb agenesis, short stature, and immunodeficiency', 'Acromegaloid changes, cutis verticis gyrata, and corneal leukoma', 'MICROCEPHALY-CARDIOMYOPATHY', 'Glaucoma 3, primary congenital, E', 'Exostoses of heel', 'Corneal dystrophy, fuchs endothelial, 3', 'Vertebral, cardiac, renal, and limb defects syndrome 3', 'Corneal dystrophy, fuchs endothelial, 1', 'Mitochondrial DNA depletion syndrome 14 (encephalocardiomyopathic type)', 'Immunodeficiency 49', 'Split-Hand/foot malformation 3', 'Long QT syndrome 10', 'Epilepsy, idiopathic generalized, susceptibility to, 18', 'Atrial fibrillation, familial, 15', 'Lumbar stenosis, familial', 'Scheuermann disease', 'Nephronophthisis-like nephropathy 2', 'MEGALENCEPHALY', 'Cardiomyopathy, familial hypertrophic, 7', 'Brachydactyly, type e, with atrial septal defect, type II', 'DERMATOLEUKODYSTROPHY', 'Helix syndrome', 'Agammaglobulinemia 5, autosomal dominant', 'Epilepsy, focal, with speech disorder and with or without mental retardation', 'Knobloch syndrome 2', 'Smith-Mccort dysplasia 1', 'Panhypopituitarism, X-linked', 'Camptomelic syndrome, Long-Limb type', 'Aromatase excess syndrome', 'Hermansky-Pudlak syndrome 8', 'Right ventricular hypoplasia, isolated', 'Pontocerebellar hypoplasia, type 17', 'Frontotemporal dementia and/or amytrophic lateral sclerosis 8', 'Erythema nodosum, familial', 'Tibial torsion, bilateral medial', 'Platyspondylic lethal skeletal dysplasia, Torrance type', 'Diaphragmatic hernia 2', 'Hypersulfaturia', 'Myasthenic syndrome, congenital, 5', 'Intellectual developmental disorder, X-linked, syndromic, Pilorge type', 'Costocoracoid ligament, congenitally short', 'Immunodeficiency 15A', 'Mitochondrial complex I deficiency, nuclear type 10', 'Intellectual developmental disorder, autosomal dominant 21', 'Charcot-Marie-Tooth disease, axonal, type 2A1', 'Triphalangeal thumb, nonopposable', '3-@methylglutaconic aciduria, type IV', 'Intellectual developmental disorder with abnormal behavior, microcephaly, and short stature', 'Spastic paraplegia 79A, autosomal dominant', 'Short stature, amelogenesis imperfecta, and skeletal dysplasia with scoliosis', 'Tendons, extensor, of fingers, anomalous insertion of', 'Vertical talus, congenital', 'Neurodevelopmental disorder with hypotonia, seizures, and absent language', 'Intellectual developmental disorder with autistic features and language delay, with or without seizures', 'Sessile serrated polyposis cancer syndrome', 'Polyposis, intestinal, scattered and discrete', 'Glycinuria with or without oxalate urolithiasis', 'Neurodevelopmental disorder with seizures and speech and walking impairment', 'Melanoma-Pancreatic cancer syndrome', 'Spondyloepiphyseal dysplasia tarda with mental retardation', 'Spondyloepiphyseal dysplasia, Kimberley type', 'Delpire-Mcneill syndrome', 'Alzheimer disease 4', 'Spastic paraplegia 29, autosomal dominant', 'Spondylometaphyseal dysplasia, Sedaghatian type', 'Cataracts, spastic paraparesis, and speech delay', 'Brachmann-De lange-like facial changes with microcephaly, metatarsusadductus, and developmental delay', 'Charcot-Marie-Tooth disease, axonal, type 2I', 'Syndesmodysplasic dwarfism', 'Immunodeficiency, common variable, 10', 'Spondylocostal dysostosis 2, autosomal recessive', 'Muscular dystrophy, congenital, megaconial type', 'Leukodystrophy, hypomyelinating, 17', 'Chondrocalcinosis 2', 'Hydroxylysinuria', 'Paroxysmal nonkinesigenic dyskinesia 1', 'Second metatarsal-metacarpal syndrome', 'Pontocerebellar hypoplasia type 1A', 'Anauxetic dysplasia 1', 'Ventricular tachycardia, familial', 'Myasthenic syndrome, congenital, 3B, fast-channel', 'Epiphyseal dysplasia, multiple, 7', 'Osteoarthritis of distal interphalangeal joints', 'UV-sensitive syndrome 1', 'Megalencephaly-Polymicrogyria-Polydactyly-Hydrocephalus syndrome', 'Pulmonary hypertension, primary, 2', 'Dwarfism, proportionate, with hip dislocation', 'Aphalangia, partial, with syndactyly and duplication of metatarsaliv', 'Ceroid lipofuscinosis, neuronal, 1', 'Sacral agenesis with vertebral anomalies', 'Retinitis pigmentosa 4', 'Pilonidal sinus', 'Thoracopelvic dysostosis', 'Developmental and epileptic encephalopathy 16', 'Lesch-Nyhan syndrome', 'Muscular dystrophy, limb-girdle, type 2B', 'Hyperinsulinemic hypoglycemia, familial, 5', 'Developmental dysplasia of the hip 2', 'Trigger thumb', 'Lynch syndrome I', 'Colorectal cancer, hereditary nonpolyposis, type 2', 'Vertebral hypoplasia with lumbar kyphosis', 'Atrial septal defect 5', 'Atrial septal defect 3', 'Beck-Fahrner syndrome', 'Peripheral neuropathy, ataxia, focal necrotizing encephalopathy, and', 'Myotonia, potassium-aggravated', 'Atrial fibrillation, familial, 12', 'Loeys-Dietz syndrome 4', 'Epiphyseal dysplasia, multiple, 5', 'Neurodevelopmental disorder with eye movement abnormalities and ataxia', 'Craniosynostosis 5, susceptibility to', 'Dubowitz syndrome', 'Orofaciodigital syndrome VI', 'Cone-rod synaptic disorder syndrome, congenital nonprogressive', 'Osteogenesis imperfecta, type XV', 'Toes, space between first and second', 'Achard syndrome', 'Acrodysostosis 1, with or without hormone resistance', 'Auralcephalosyndactyly', 'Bohring-Opitz syndrome', 'Panencephalitis, subacute sclerosing', 'Intellectual developmental disorder, X-linked 111', 'Cardiomyopathy, familial hypertrophic, 25', 'Mismatch repair cancer syndrome 1', 'Left ventricular noncompaction 2', 'Bardet-Biedl syndrome 5', 'Laryngeal abductor paralysis', 'Epilepsy, progressive myoclonic, 6', 'Myasthenic syndrome, congenital, 24, presynaptic', 'Muscular dystrophy, limb-girdle, type 2L', 'Patella, chondromalacia of', 'Microcephaly with chemotactic defect and transient hypogammaglobulinemia', 'Neurodevelopmental disorder with hypotonia, neuropathy, and deafness', 'Muscular dystrophy, limb-girdle, autosomal dominant 4', 'Sotos syndrome', 'Neuronopathy, distal hereditary motor, type X', 'Polydactyly, preaxial III', 'Tetraamelia, autosomal recessive', 'Autoinflammation, antibody deficiency, and immune dysregulation, plcg2-associated', 'Achalasia-Microcephaly syndrome', 'Palmoplantar hyperkeratosis with squamous cell carcinoma of skin and 46,xx sex reversal', 'Cardiomyopathy associated with myopathy and sudden death', 'Muscular dystrophy, congenital, with cataracts and intellectual disability', 'Odontoid hypoplasia', 'Osteogenesis imperfecta, type VI', 'Metatarsus varus, type I', 'Cardiomyopathy, dilated, 1W', 'Migraine, familial hemiplegic, 2', 'Blepharospasm, benign essential, susceptibility to', 'Neurodevelopmental disorder with structural brain anomalies and dysmorphic facies', 'Vertebral, cardiac, renal, and limb defects syndrome 2', 'DIAMINOPENTANURIA', 'Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 4', 'Sella turcica, bridged', 'Hypoplastic femurs and pelvis', 'Muscular dystrophy, limb-girdle, autosomal recessive 23', 'Cerebellar ataxia, brain abnormalities, and cardiac conduction defects', 'Liberfarb syndrome', 'Colorectal cancer, hereditary nonpolyposis, type 7', 'Colorectal cancer, hereditary nonpolyposis, type 6', 'Roberts-SC phocomelia syndrome', 'Cleidorhizomelic syndrome', 'Charcot-Marie-Tooth disease, axonal, type 2HH', 'Lipoid congenital adrenal hyperplasia', 'Dystonia, DOPA-responsive, with or without hyperphenylalaninemia', 'Cryofibrinogenemia, familial primary', 'Hematuria, benign familial', 'Orthostatic intolerance', 'Blepharochalasis and double lip', 'Exostoses, multiple, type III', 'Asthma, susceptibility to', 'Growth hormone deficiency, isolated, type IB', 'Tibial hemimelia', 'Intellectual developmental disorder, autosomal recessive 9/26', 'Hypogonadotropic hypogonadism 27 without anosmia', 'Mesomelic dwarfism of hypoplastic tibia and Radius type', 'Alazami syndrome', 'Oculopharyngeal myopathy with leukoencephalopathy 1', 'Periventricular nodular heterotopia 7', 'Myxoma, intracardiac', 'Intellectual developmental disorder, autosomal dominant 46', 'Dystonia with cerebellar atrophy', 'Thiemann disease', 'Growth hormone insensitivity, partial', 'Santos syndrome', 'Encephalopathy, neonatal severe, due to mecp2 mutations', 'Brachyolmia type 3', 'Muscular dystrophy, limb-girdle, type 2G', 'Parastremmatic dwarfism', 'Cerebral creatine deficiency syndrome 1', 'Medullary cystic kidney disease 2', 'Intellectual developmental disorder with behavioral abnormalities and craniofacial dysmorphism with or without seizures', 'Thoracoabdominal syndrome', 'Immunoglobulin D level in plasma, low', 'Radiation sensitivity of natural killer activity', 'Leprosy, susceptibility to', 'Echo virus 11 sensitivity', 'Immune suppression', 'Allergic bronchopulmonary aspergillosis', 'Galloway-Mowat syndrome 4', 'Pontocerebellar hypoplasia, type 2A', 'Masp2 deficiency', 'Brody myopathy', 'Hypomagnesemia 6, renal', 'Bardet-Biedl syndrome 10', 'Muscular dystrophy, congenital, Davignon-Chauveau type', 'Bardet-Biedl syndrome 7', 'Tryptophanuria with dwarfism', 'Metachromatic leukodystrophy due to saposin B deficiency', 'Macrocephaly, benign familial', 'Spastic ataxia 5, autosomal recessive', 'Intellectual developmental disorder with persistence of fetal hemoglobin', 'Mental retardation, keratoconus, febrile seizures, and sinoatrialblock', 'Global developmental delay, progressive ataxia, and elevated glutamine', 'Waardenburg-Shah syndrome', 'Joubert syndrome 39', 'Salivary gland adenoma, pleomorphic', 'Palmoplantar keratoderma, epidermolytic', 'Acropectoral syndrome', 'Nephrotic syndrome, type 16', 'Stocco dos santos X-linked mental retardation syndrome', 'Coxa vara', 'Myopathy, mitochondrial, and ataxia', 'Neurodevelopmental disorder with feeding difficulties, thin corpus callosum, and foot deformity', 'Anal canal carcinomacloacogenic carcinoma, included', 'Frontometaphyseal dysplasia 2', 'Schwannomatosis 2', 'Spondyloepiphyseal dysplasia tarda, autosomal recessive, leroy-sprangertype', 'Dermodistortive urticaria', 'Thyroid hormonogenesis, genetic defect in, 4', 'Leukomelanoderma, infantilism, mental retardation, hypodontia, hypotrichosis', 'Bone pain, periodic', 'Xanthinuria, type II', 'Meier-Gorlin syndrome 7', 'Abnormal hair, joint laxity, and developmental delay', 'Atrial septal defect 9', 'Multiple endocrine neoplasia, type IIA', 'Short-rib thoracic dysplasia 21 without polydactyly', 'Neurodevelopmental disorder with spasticity and poor growth', 'Hemangioma, capillary infantile', 'Limb-girdle muscular dystrophy, type 1G', 'Episodic ataxia, type 9', 'Cataract, congenital, with mental impairment and dentate gyrus atrophy', 'Short-Rib thoracic dysplasia 18 with polydactyly', 'Peeling skin syndrome 1', 'Spinocerebellar atrophy with pupillary paralysis', 'Leg, absence deformity of, with congenital cataract', 'Pigmentary disorder, reticulate, with systemic manifestations, X-linked', 'Myhre syndrome', 'Slipped femoral capital epiphyses', 'Hypotaurinemic retinal degeneration and cardiomyopathy', 'Cornelia de Lange syndrome 3', 'Amyotrophic dystonic paraplegia', 'Fibular aplasia, tibial campomelia, and oligosyndactyly syndrome', 'Neuropathy, inflammatory demyelinating', 'Dementia, familial danish', 'Spinal muscular atrophy with mental retardation', 'Angiomatosis, diffuse corticomeningeal, of divry and van bogaert', 'Spondyloepiphyseal dysplasia tarda, autosomal dominant', 'Digital clubbing, isolated congenital', 'Alzheimer disease 5', 'Thymoma, familial', 'Alkaptonuria', 'Mirror movements 3', 'TRICHOTILLOMANIA', 'GALACTORRHEA', 'Cranioectodermal dysplasia 4', 'Intellectual developmental disorder, autosomal dominant 54', 'Alzheimer disease, familial early-onset, with coexisting amyloid and prion pathology', 'Amyloidosis, primary localized cutaneous, 1', 'Urofacial syndrome 2', 'Nipples, supernumerary', 'Left ventricular noncompaction 7', 'Complement component 4, partial deficiency of', 'ACROOSTEOLYSIS', 'Myasthenic syndrome, congenital, 20, presynaptic', 'Pronation-Supination of the forearm, impairment of', 'Ciliary dyskinesia, primary, 1', 'Cervical rib', 'Charcot-Marie-Tooth disease, axonal, type 2CC', 'IMINOGLYCINURIA', 'Developmental and epileptic encephalopathy 27', 'Giant axonal neuropathy, autosomal dominant', 'Oculopharyngodistal myopathy 3', 'Cerebral arteriopathy, autosomal dominant, with subcortical infarcts and leukoencephalopathy, type 2', 'Cardiomyopathy, familial hypertrophic, 20', 'Interstitial nephritis, karyomegalic', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 10', 'Aprosencephaly syndrome', 'Charcot-Marie-Tooth disease, axonal, with vocal cord paresis, autosomalrecessive', 'Osteofibrous dysplasia, susceptibility to', 'Epiphyseal dysplasia, multiple, with miniepiphyses', 'Cardiomyopathy, familial hypertrophic, 9', 'Cardiomyopathy, dilated, 1H', 'Cardiomyopathy, dilated, 1Q', 'Ataxia-telangiectasia-like disorder 2', 'Seckel syndrome 6', 'Cardiomyopathy, familial hypertrophic, 18', 'Retinitis pigmentosa 1', 'Cutis marmorata telangiectatica congenita', 'Kallmann syndrome with spastic paraplegia', 'Hirschsprung disease, susceptibility to, 2', 'Hirschsprung disease, susceptibility to, 4', 'Mental retardation, x-linked, syndromic, Turner type', 'Spastic paraplegia 25, autosomal recessive', 'Corpus callosum, agenesis of', 'Short stature, brachydactyly, intellectual developmental disability, and seizures', 'Knuckle pads', 'Rahman syndrome', 'Hypomandibular faciocranial dysostosis', 'Capillary malformation-arteriovenous malformation 2', 'Spondyloepimetaphyseal dysplasia, X-linked', 'Chondrodysplasia punctata, Tibia-Metacarpal type', 'Immunodeficiency 45', 'Canavan disease', 'Hirschsprung disease with hypoplastic nails and dysmorphic facialfeatures', 'Acrodysostosis 2 with or without hormone resistance', 'Melorheostosis, isolated', 'Cd8 deficiency, familial', 'Pterygium of conjunctiva and cornea', 'Congenital disorder of glycosylation, type Icc', 'Neurodegeneration with brain iron accumulation 3', 'Hyperthyroidism, familial gestational', 'Myotonia with skeletal abnormalities and mental retardation', 'Cutis laxa, neonatal, with marfanoid phenotype', 'Polydactyly, postaxial, type A8', 'Varicella, severe recurrent', 'Coronavirus 229E susceptibility', 'GENOCHONDROMATOSIS', 'Spondylospinal thoracic dysostosis', 'Hypothyroidism, congenital, nongoitrous, 7', 'Ceroid lipofuscinosis, neuronal, 6', 'Metaphyseal dysplasia without hypotrichosis', 'Familial adenomatous polyposis, 2', 'Short stature, auditory canal atresia, mandibular hypoplasia, andskeletal abnormalities', 'Neurodevelopmental disorder with hypotonia, microcephaly, and seizures', 'Vitamin A metabolic defect', 'Isolated growth hormone deficiency, type II', 'Peripheral dysostosis', 'Myasthenic syndrome, congenital, 19', 'Hallux varus and preaxial polysyndactyly', 'Mucocutaneous ulceration, chronic', 'Charcot-Marie-Tooth disease, type 4C', 'Neurodevelopmental disorder with or without autistic features and/or structural brain abnormalities', 'ECTRODACTYLY-POLYDACTYLY', 'Paragangliomas 7', 'Chromosome 3pter-p25 deletion syndrome', 'Cervical vertebral dysplasia', 'Digitotalar dysmorphism', 'Tetralogy of Fallot', 'Intellectual developmental disorder, autosomal dominant 26', 'RHINY', 'Osteoma of middle ear', 'Nemaline myopathy 8', 'Parietal foramina 3', 'Neurodevelopmental disorder with microcephaly, movement abnormalities, and seizures', 'Encephalomalacia, multilocular', 'Split-Hand/foot malformation 2', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 7', 'Charcot-Marie-Tooth disease, axonal, type 2Y', 'Thauvin-Robinet-Faivre syndrome', 'Myasthenic syndrome, congenital, 21, presynaptic', 'Lissencephaly 1', 'Pituitary hormone deficiency, combined, 2', 'Weismann-Netter syndrome', 'Chilblain lupus 1', 'Keppen-Lubinsky syndrome', 'Episodic ataxia, type 1', 'Epiphyseal dysplasia, multiple, 1', 'Eosinophilic fasciitis', 'Hypokalemic periodic paralysis, type 1', 'Pontocerebellar hypoplasia, type 1B', 'Spinocerebellar ataxia 25', 'Ehlers-danlos syndrome, Hypermobility type', 'Cataract 9, multiple types', 'Neurodevelopmental disorder with brain anomalies, seizures, and scoliosis', 'Prenatal bowing', 'Maleylacetoacetate isomerase deficiency', 'Bardet-Biedl syndrome 15', 'Intellectual developmental disorder, autosomal recessive 72', 'Polydactyly, postaxial, type A5', 'Naxos disease', 'Megalencephalic leukoencephalopathy with subcortical cysts 4, remitting', 'Ankylosing vertebral hyperostosis with tylosisdiffuse idiopathic skeletal hyperostosis, included', 'Tremor, nystagmus, and duodenal ulcer', 'Autoimmune disease', 'Craniosynostosis 7', 'Epileptic encephalopathy, early infantile, 5', 'Multiple exostoses with spastic tetraparesis', 'Patella, familial recurrent dislocation of', 'Mitochondrial complex II deficiency, nuclear type 2', 'Brachyolmia 4 with mild epiphyseal and metaphyseal changes', 'Congenital myopathy 22A, classic', 'MYOSITIS', 'Peripheral neuropathy, myopathy, hoarseness, and hearing loss', 'Meckel syndrome, type 8', 'Spinal muscular atrophy, Jokela type', 'Genitopalatocardiac syndrome', 'Van maldergem syndrome 2', 'Megalencephaly-Polymicrogyria-Polydactyly-Hydrocephalus syndrome 2', 'Ventricular septal defect 2', 'Greig cephalopolysyndactyly syndrome', 'Immunodeficiency 28', 'Charcot-Marie-Tooth disease, type 4J', 'Fascial dystrophy, congenital', 'Peroneal nerve, accessory deep', 'Jumping frenchman of maine', 'Cerebral angiopathy, dysphoric', 'DIASTEMATOMYELIA', 'Discrimination, two-point, reduction in', 'Modifier, X-linked, for neurofunctional defects', 'Meralgia paraesthetica, familial', 'Hypothyroidism, congenital, nongoitrous, 5', 'Immunodeficiency-centromeric instability-facial anomalies syndrome 4', 'Symphalangism of toes', 'Syndactyly, type III', 'Split-Hand/foot malformation 4', 'Charcot-Marie-Tooth disease, type 1B', 'Syndactyly, type IV', 'Ventriculomegaly with defects of the radius and kidney', 'Polydactyly, postaxial, type A2', 'Cleft palate, cardiac defects, and mental retardation', 'Microcephaly 18, primary, autosomal dominant', 'Cardiomyopathy, dilated, 1cc', 'Epilepsy, nocturnal frontal lobe, 3', 'Thumb, distal hyperextensibility of', 'Complement component 8 deficiency, type I', 'Ceroid lipofuscinosis, neuronal, 5', 'Split-Hand/foot malformation 1 with sensorineural hearing loss', 'Holoprosencephaly, semilobar, with craniosynostosis', 'Amelogenesis imperfecta, hypoplastic/hypomaturation, X-linked 2', 'Amelogenesis imperfecta, type IB', 'Tarsal fusion', 'Spinal muscular atrophy, lower extremity-predominant, 2B, autosomal dominant', 'Tremor, hereditary essential, and idiopathic normal pressure hydrocephalus', 'Short-Rib thoracic dysplasia 20 with polydactyly', 'Skraban-Deardorff syndrome', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 1', 'Angioma, tufted', 'Tessadori-van Haaften neurodevelopmental syndrome 4', 'Chromosome 2q35 duplication syndrome', 'Mitochondrial myopathy with diabetes', 'Encephalopathy, progressive, early-onset, with brain atrophy and spasticity', 'Encephalopathy, progressive, early-onset, with brain atrophy and thin corpus callosum', 'Episodic muscle weakness, X-linked', 'Keratolytic winter erythema', 'Peeling skin syndrome, Acral type', 'Erythema of acral regions', 'Cardiomyopathy, dilated, 1AA, with or without LVNC', 'Microcephalic osteodysplastic primordial dwarfism, type II', 'Omphalocele-Cleft palate syndrome, lethal', 'Fontaine progeroid syndrome', 'Spinal muscular atrophy with microcephaly and mental subnormality', 'Intellectual developmental disorder, autosomal recessive 79', 'Joubert syndrome 32', 'Treacher collins syndrome 2', 'Adducted thumbs syndrome', 'Developmental and epileptic encephalopathy 47', 'Arthrogryposis multiplex congenita, Neurogenic type', 'Craniosynostosis, sagittal, with dandy-walker malformation and hydrocephalus', 'Thiamine metabolism dysfunction syndrome 4 (bilateral striatal degenerationand progressive polyneuropathy type)', 'Joubert syndrome 13', 'Amyloidosis, hereditary, transthyretin-related', 'Atrioventricular septal defect 5', 'Hyperparathyroidism 2', 'Velocardiofacial syndrome', 'Nemaline myopathy 5C, autosomal dominant', 'White-Sutton syndrome', 'Global developmental delay, absent or hypoplastic corpus callosum, and dysmorphic facies', 'Mental retardation, autosomal recessive 56', 'Mental retardation, autosomal recessive 12', 'Mental retardation, autosomal recessive 31', 'Mental retardation, X-linked 20', 'Triphalangeal thumb with double phalanges', 'Dandy-Walker malformation with occipital cephalocele, autosomal dominant', 'Cutis laxa, autosomal recessive, type IIC', 'Craniosynostosis with radiohumeral fusions and other skeletal and craniofacial anomalies', 'Intellectual developmental disorder with impaired language and dysmorphic facies', 'Midface hypoplasia, hearing impairment, elliptocytosis, and nephrocalcinosis', 'Hypoparathyroidism-retardation-dysmorphism syndrome', 'Poikiloderma, hereditary sclerosing', 'Spinocerebellar ataxia, autosomal recessive 11', 'Neuronopathy, distal hereditary motor, type VIII', 'Candidiasis, familial, 6, autosomal dominant', 'Radioulnar synostosis', 'Brachydactyly, type A1, B', 'Brachydactyly, type E2', 'Synovial chondromatosis, familial, with dwarfism', 'Schimke X-linked mental retardation syndrome', 'Epiphyseal dysplasia, multiple, 4', 'Microcephaly 2, primary, autosomal recessive, with or without cortical malformations', 'Microphthalmia with limb anomalies', 'Atrioventricular septal defect 4', 'Myopathy, myofibrillar, 2, mfm2', 'Complement factor D deficiency', 'Mental retardation, X-linked 50', 'Mental retardation, autosomal recessive 11', 'Split-Hand and split-foot with hypodontia', 'Ectodermal dysplasia/short stature syndrome', 'Inflammatory bowel disease 25, early onset, autosomal recessive', 'Exostoses with anetodermia and brachydactyly, type E', 'Myopathy, congenital', 'Myasthenic syndrome, congenital, 4C, associated with acetylcholine receptor deficiency', 'Talo-Patello-Scaphoid osteolysis, synovitis, and short fourth metacarpals', 'Avascular necrosis of femoral head, primary, 2', 'Thumbs, stiff, with brachydactyly type A1 and developmental delay', 'Amyotonia congenita', 'Symphalangism, c. s. Lewis type', 'Suleiman-El-Hattab syndrome', 'Pseudovaginal perineoscrotal hypospadias', 'Spastic paraplegia 54, autosomal recessive', 'Hairy elbows', 'Spinocerebellar ataxia 8', 'Crisponi/cold-induced sweating syndrome 1', 'HOMOCARNOSINOSIS', 'Hashimoto thyroiditis', 'Mesomelic dysplasia, Savarirayan type', 'Macular degeneration, early-onset', 'Myopathy, distal, 1', 'Cardioauditory syndrome of sanchez cascos', 'Oliver syndrome', 'Immunodeficiency due to ficolin 3 deficiency', 'Cleft palate, cardiac defect, genital anomalies, and ectrodactyly', 'Mercaptolactate-Cysteine disulfiduria', 'Chorea, benign familial', 'Humeroradial synostosis', 'Myopathy, mitochondrial progressive, with congenital cataract, hearing loss, and developmental delay', 'Mental retardation, autosomal recessive 33', 'Limb defects, distal transverse, with mental retardation and spasticity', 'Tetramelic monodactyly', 'Dyslexia, susceptibility to, 2', 'Immunodeficiency 26 with or without neurologic abnormalities', 'Biemond syndrome II', 'Electroencephalographic peculiarity: 14 and 6 per sec. positive spikephenomenon', 'Electroencephalographic peculiarity: fronto-precentral beta wave groups', 'Ribose 5-phosphate isomerase deficiency', 'Ciliary dyskinesia, primary, 20', 'Sudden cardiac failure, alcohol-induced', 'Retinitis pigmentosa 18', 'Gonadal dysgenesis, dysmorphic facies, retinal dystrophy, and myopathy', 'Intellectual developmental disorder, autosomal recessive 4', 'Lithium transport', 'Dyskeratosis, hereditary benign intraepithelial', 'Complement component 8 deficiency, type II', 'Orofacial cleft 6, susceptibility to', 'Fetal akinesia, respiratory insufficiency, microcephaly, polymicrogyria, and dysmorphic facies', 'Agenesis of cerebral white matter', 'Lopes-Maciel-Rodan syndrome', 'Presenile dementia, Kraepelin type', 'Cleidocranial dysplasia', 'Deafness, sensorineural, with pituitary dwarfism', 'Femoral-facial syndrome', 'DYSTELEPHALANGY', 'Mirror movements 4', 'Charcot-Marie-Tooth disease, axonal, type 2H', 'Triphalangeal thumbs with brachyectrodactyly', 'Dental anomalies and short stature', 'Cardiomyopathy, familial hypertrophic, 21', 'Upington disease', 'Endometriosis, susceptibility to, 1', 'Spondyloepimetaphyseal dysplasia with joint laxity, type 2', 'FG syndrome 5', 'Angioma serpiginosum, autosomal dominant', 'Breast-Ovarian cancer, familial, susceptibility to, 1', 'Immunodeficiency 79', 'Marfan lipodystrophy syndrome', 'Mycobacterial and viral infections, susceptibility to, autosomal recessive', 'SKUNK N-BUTYLMERCAPTAN, INABILITY TO SMELL', 'Anosmia, congenital', 'ANOSMIA', 'Isovaleric acid, inability to smell', 'Hydrocephalus, congenital communicating, 1', 'Mental retardation, autosomal recessive 35', 'Czech dysplasia, Metatarsal type', 'Marshall-Smith syndrome', 'Grant syndrome', 'Alport syndrome 3, autosomal dominant', 'Parkinson disease, late-onset', 'Mesomelic dysplasia, Kantaputra type', 'Exstrophy of bladder', 'Neurodevelopmental disorder with seizures and brain abnormalities', 'Spondyloepimetaphyseal dysplasia, Borochowitz-Cormier-Daire type', 'Galloway-Mowat syndrome 5', 'Delayed sleep phase disorder, susceptibility to', 'Advance sleep phase syndrome, familial, 4', 'Short sleep, familial natural, 2', 'Glaucoma 1, open angle, A', 'ACROPECTOROVERTEBRAL DYSPLASIA, F-FORM OF', 'Rhabdoid tumor predisposition syndrome 1', 'Simpson-Golabi-Behmel syndrome, type 1', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies, type A, 11)', 'Brachydactyly, type D', 'Isolated growth hormone deficiency, type III, with agammaglobulinemia', 'Panic disorder 1', 'Intellectual developmental disorder and hypogonadotropic hypogonadism', 'Acne inversa, familial', 'Immunodeficiency 30', 'Skeletal dysplasia, mild, with joint laxity and advanced bone age', 'Arrhythmogenic right ventricular dysplasia, familial, 6', 'Mitochondrial DNA depletion syndrome 20 (MNGIE type)', 'Fanconi anemia, complementation group O', 'Deafness, congenital heart defects, and posterior embryotoxon', 'Anosmia for isobutyric acid', 'Ectodermal dysplasia 10A, hypohidrotic/hair/nail type, autosomal dominant', 'Chromosome 14q11-q22 deletion syndrome', 'Trichorhinophalangeal syndrome, type I', 'Polydactyly, postaxial, type A9', 'Laurence-Moon syndrome', 'Neurodevelopmental disorder with language delay and seizure', 'Fingerprints, absence of', 'Posterior column ataxia', 'Retinitis pigmentosa 29', 'Facial palsy, familial recurrent peripheral', 'Myoclonic epilepsy, Hartung type', 'Epileptic encephalopathy, early infantile, 38', 'Tibia vara', 'Brachydactyly, type A3', 'Sugarman brachydactyly', 'Spastic paraplegia with neuropathy and poikiloderma', 'KELOIDS', 'Polyglucosan body myopathy 2', 'Athabaskan brainstem dysgenesis syndrome', 'Congenital disorder of glycosylation, type IIi', 'Myopathy, myofibrillar, 8', 'Hunter-Mcalpine craniosynostosis syndrome', 'Hypocalcemia, autosomal dominant 1', 'Parasomnia, Sleepwalking type', 'Neurodevelopmental disorder and structural brain anomalies with or without seizures and spasticity', 'Joubert syndrome 35', 'Sandestig-Stefanova syndrome', 'Pterygium, antecubital', 'Obesity, hyperphagia, and developmental delay', 'Coffin-Siris syndrome 10', 'Mental retardation associated with psoriasis', 'Ciliary dyskinesia, primary, 35', 'Short-Rib thoracic dysplasia 17 with or without polydactyly', 'Epilepsy, idiopathic generalized, susceptibility to, 16', 'Asphyxiating thoracic dystrophy 2', 'Spastic paraplegia 83, autosomal recessive', 'Broad terminal phalanges, familial', 'Lipomatosis, multiple', 'Molar I reinclusion', 'MACROGLOSSIA', 'Osteoarthritis with mild chondrodysplasia', 'Porokeratosis plantaris, palmaris, et disseminata', 'Tumoral calcinosis, normophosphatemic, familial', 'Leukodystrophy, hypomyelinating, 10', 'Candidiasis, familial, 4', 'Birk-Barel mental retardation dysmorphism syndrome', 'Diets-Jongmans syndrome', 'Neurodegeneration due to cerebral folate transport deficiency', 'Trigeminal neuralgia', 'Prosopagnosia, hereditary', 'Hypotonia, infantile, with psychomotor retardation and characteristic facies 1', 'Short stature and advanced bone age, with or without early-onset osteoarthritis and/or osteochondritis dissecans', 'Xp11.22 microduplication syndrome', 'Paroxysmal extreme pain disorder', 'Muscle hypertrophy', 'Intellectual developmental disorder, autosomal recessive 34, with variant lissencephaly', 'Neurodevelopmental disorder with speech impairment and with or without seizures', 'Gigantiform cementoma, familial', 'Hyperoxaluria, primary, type II', 'Cone-Rod dystrophy 6', 'Charcot-Marie-Tooth disease, axonal, type 2L', 'C6 deficiency', 'Hypertrophia musculorum vera', 'Tyrosinemia, type III', 'Spastic paraplegia 72, autosomal recessive', 'Fraser syndrome 2', 'Nemaline myopathy 2, autosomal recessive', 'MICROTIA-ANOTIA', 'Neurodevelopmental disorder with neuromuscular and skeletal abnormalities', 'Epilepsy, early-onset, with or without developmental delay', 'Coxoauricular syndrome', 'Cardiomyopathy, dilated, 1JJ', 'Rhabdomyosarcoma 1', 'Spondyloepiphyseal dysplasia, Stanescu type', 'Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type B, 2', 'Mental retardation, autosomal recessive 28', 'Amelogenesis imperfecta, type IK', 'Wahab syndrome', 'Nemaline myopathy 10', 'Complement component c1r deficiency', 'Hypertrichosis, congenital anterior cervical, with peripheral sensory', 'Hand osteoarthritis', 'Normokalemic periodic paralysis', 'Central centrifugal cicatricial alopecia', 'Fibrochondrogenesis 1', 'Intellectual developmental disorder with dysmorphic facies, speech delay, and T-cell abnormalities', 'Persistent mullerian duct syndrome, types I and II', 'Emery-Dreifuss muscular dystrophy 7, autosomal dominant', 'Pituitary adenoma 2, GH-secreting', 'Angelman syndrome', 'Peroneus tertius muscle, absence of', 'Schizophrenia 3', 'Rhizomelic dysplasia, Patterson-Lowry type', 'Epilepsy, benign occipital', 'Gastrocutaneous syndrome', 'Rhizomelic dysplasia, Ain-Naz type', 'Leishmaniasis, tegumentary', 'Multiple system atrophy 1, susceptibility to', 'Acrorenal syndrome', 'Marfan syndrome', 'Polydactyly, preaxial I', 'Seckel syndrome 8', 'Methylmalonic acidemia and homocysteinemia, Cblx type', 'Charcot-Marie-Tooth disease, type 4B1', 'Cervical vertebrae, agenesis of', 'Neurodevelopmental disorder with hypotonia, facial dysmorphism, and brain abnormalities', 'Pontocerebellar hypoplasia, type 11', 'Spinocerebellar ataxia, X-linked 2', '3MC syndrome 3', 'Paragangliomas 3', 'Renal tubular dysgenesis', 'Cortical dysplasia, complex, with other brain malformations 12', 'Neurodevelopmental disorder with or without variable brain abnormalities', 'HYPERREFLEXIA', 'Hemifacial spasm, familial', 'Spinocerebellar ataxia 37', 'Lowry-Maclean syndrome', 'Acromesomelic dysplasia 4', 'Rubinstein-Taybi syndrome 1', 'Developmental delay, behavioral abnormalities, and neuropsychiatric disorders', 'Epileptic encephalopathy, early infantile, 88', 'Myoclonic epilepsy, juvenile, 2', 'Mental retardation, autosomal recessive 23', 'Psoriasis 15, pustular, susceptibility to', 'Charcot-Marie-Tooth disease, demyelinating, type 1A', 'Epiphyseal dysplasia, Baumann type', 'Pontocerebellar hypoplasia, type 5', 'Keratosis palmaris et plantaris with clinodactyly', 'Spastic paraplegia with associated extrapyramidal signs', 'Neurodegeneration with brain iron accumulation 1', 'Scapuloperoneal syndrome, neurogenic, Kaeser type', 'Holt-Oram syndrome', 'Encephalitis, acute, infection (viral)-induced, susceptibility to, 11', 'Arthrogryposis-Like hand anomaly and sensorineural deafness', 'Myopathy, congenital, with respiratory insufficiency and bone fractures', 'Spondylometaphyseal dysplasia, Algerian type', 'Dyslexia, susceptibility to, 1', 'Hyperaldosteronism, familial, type IV', 'Synpolydactyly 2', 'Achondroplasia', 'Hypogonadism with low-grade mental deficiency and microcephaly', 'Cerebral creatine deficiency syndrome 2', 'Metaphyseal anadysplasia 2', 'Intellectual developmental disorder, autosomal recessive 71', 'Ataxia with fasciculations', 'Optic atrophy 8', 'Spondyloepimetaphyseal dysplasia, Missouri type', 'Laron syndrome', 'Epilepsy, pyridoxine-dependent', 'Ear antitragus, tag at base of', 'Myelinated optic nerve fibers', 'Ear folding', 'Exchondrosis of pinna, posterior', 'Labia minora, incomplete adhesion of', 'Ear malformation', 'Unique green phenomenon', 'Ossified ear cartilages', 'Adamantinoma of long bones', 'Ocular cicatricial pemphigoid', 'Cancer, familial, with in vitro radioresistance', 'Parotidomegaly, hereditary bilateral', 'Branchial cleft anomaliesbranchial cysts, included', 'Fibromatosis, gingival, 5', 'Syringomas, multiple', 'Dermatosis papulosa nigra', 'Insect stings, hypersensitivity to', 'Lichen planus, familial', 'Callosities, hereditary painful', 'Dermal ridges, patternless', 'Comedones, familial dyskeratotic', 'Papillomatosis, florid, of nipple', 'Pseudoatrophoderma colli', 'Trichilemmal cyst 1', 'Acromial dimples', 'Lacrimoauriculodentodigital syndrome-3', 'Orofacial cleft 3', 'Nasal alar collapse, bilateral', 'Nasal groove, familial transverse', 'Glutamine deficiency, congenital', 'Lip, median nodule of upper', 'Hirschsprung disease, susceptibility to, 3', 'Epilepsy, benign neonatal, 2', 'Toe, rotated fifth', 'Trichodiscomas, familial multiple', 'Ringed hair', 'Tongue, pigmented fungiform papillae of', 'BRADYOPSIA', 'Myopia, infantile severe', 'Myopia 15', 'Ptosis, hereditary congenital 1', 'Deafness, autosomal recessive 107', 'Deafness, autosomal recessive 47', 'Deafness, autosomal recessive 106', 'Deafness, autosomal recessive 6', 'Deafness, autosomal recessive 96', 'Deafness, autosomal dominant 24', 'Tune deafness', 'Deafness, autosomal recessive 33', 'Deafness, autosomal dominant 54', 'Deafness, autosomal dominant 15', 'Deafness, autosomal dominant 52', 'Deafness, autosomal recessive 55', 'Dermatitis herpetiformis, familial', 'Polyhydramnios, chronic idiopathic', 'Candidiasis, familial, 3', 'Melanoma, cutaneous malignant, susceptibility to, 9', 'Focal facial dermal dysplasia 4', 'Spinal muscular atrophy, Facioscapulohumeral type', 'Butyrylcholinesterase deficiency', 'Elastosis perforans serpiginosa', 'Milia, multiple eruptive', 'Teeth, odd shapes oflobodontia, included', 'Phlebectasia of lips', 'Paramolar tubercle of bolk', 'Incisors, fused mandibular', 'Teeth, fused', 'Cataract, autosomal recessive congenital 4', 'Ectopia lentis', 'Cataract 35', 'Cataract, crystalline coralliform', 'Dermal ridges, nelson syndrome', 'Deafness, autosomal dominant 2B', 'Deafness, aminoglycoside-induced', 'Deafness, unilateral', 'Deafness, autosomal dominant 18', 'Deafness, autosomal recessive 91', 'Deafness, autosomal dominant nonsyndromic sensorineural 7', 'Ear without helix', 'Acroleukopathy, symmetric', 'Nasal hyperpigmentation, familial transverse', 'Hyperpigmentation, familial progressive, 1', 'Raindrop hypopigmentation', 'Hyperpigmentation of fuldauer and kuijpers', 'Hydatidiform mole, recurrent, 2', 'Myopia 19, autosomal dominant', 'Myopia 26, X-linked, female-limited', 'Myopia 6', 'Nanophthalmos 2', 'Hyperopia, high', 'Hyperhidrosis, gustatory', 'Deafness, autosomal recessive 27', 'Deafness, autosomal dominant nonsyndromic sensorineural 3', 'Deafness, autosomal recessive 59', 'Deafness, autosomal recessive 61', 'Deafness, autosomal recessive 51', 'Deafness, autosomal recessive 17', 'Deafness, autosomal recessive 14', 'Deafness, autosomal recessive 21', 'Deafness, autosomal recessive 16', 'Deafness, autosomal dominant 76', 'Deafness, autosomal dominant nonsyndromic sensorineural 10', 'Deafness, autosomal recessive 31', 'Deafness, autosomal dominant 75', 'Deafness, autosomal dominant 25', 'Deafness, autosomal recessive 115', 'Deafness, autosomal recessive 116', 'Deafness, autosomal recessive 113', 'Deafness, autosomal recessive 53', 'Deafness, autosomal recessive 26', 'Deafness, neurosensory, autosomal recessive 5', 'Deafness, neurosensory, autosomal recessive 18', 'Deafness, autosomal dominant 48', 'Deafness, autosomal dominant 53', 'Deafness, neural, congenital moderate', 'Deafness, autosomal dominant 30', 'Deafness, autosomal recessive 99', 'Deafness, autosomal dominant 68', 'Deafness, autosomal dominant 44', 'Deafness, autosomal dominant nonsyndromic sensorineural 12', 'Deafness, autosomal recessive 114', 'Deafness, autosomal dominant 47', 'Deafness, autosomal dominant 27', 'Deafness, autosomal recessive 97', 'Deafness, autosomal dominant nonsyndromic sensorineural 13', 'Deafness, autosomal recessive 22', 'Deafness, autosomal recessive 100', 'Deafness, autosomal dominant 37', 'Deafness, autosomal dominant 40', 'Deafness, autosomal dominant 69', 'DEAFNESS, Y-LINKED 2', 'Cataract, zonular pulverulent 3', 'Dystransthyretinemic euthyroidal hyperthyroxinemia', 'Anonychia congenita', 'Koilonychia, hereditary', 'Porokeratosis 6, disseminated superficial Actinic type', 'Papillomatosis, familial cutaneous', 'Acanthosis nigricans', 'Nipples inverted', 'Hypertrichosis universalis congenita, Ambras type', 'Iris pigment epithelium anomalies', 'Dosage-Sensitive sex reversal', 'Darwinian point of pinna', 'Ear pits, posterior helical', 'Achoo syndrome', 'Retinitis pigmentosa 55', 'Retinitis pigmentosa, late-adult onset', 'Retinitis pigmentosa 67', 'Earring holes, natural', 'Rheumatoid nodulosis', 'Squamous cell carcinoma, head and neck', 'Steatocystoma multiplex', 'Nanophthalmos 1', 'Malocclusion due to protuberant upper front teeth', 'Deafness, autosomal dominant 3B', 'Deafness, autosomal recessive 77', 'Deafness, autosomal dominant 31', 'Hematuria, benign familial, 2', 'Corneal dystrophy, band-shaped', 'Myofibromatosis, infantile 2', 'Hypersensitivity pneumonitis, familial', 'Cataract, congenital, cerulean type, 5', 'Cataract 45', 'Cataract, crystalline aculeiform', 'Cataract 13 with adult i phenotype', 'Ureter, bifid or double', 'Ichthyosis, congenital, autosomal recessive 12', 'Cleft palate-lateral synechia syndrome', 'Cataract, nuclear total', 'Cataract, age-related nuclear', 'Nonarteritic anterior ischemic optic neuropathy, susceptibility to', 'Nail disorder, nonsyndromic congenital, 8', 'Dowling-Degos disease', 'Cataract 43', 'Microtia - eye coloboma - imperforation of the nasolacrimal duct', 'Macular dystrophy, X-linked', 'Macular dystrophy, fenestrated Sheen type', 'Cataract, anterior polar, 1', 'Macular degeneration, age-related, 2', 'Ectopia pupillae', 'Anodontia of permanent dentition', 'Nevi flammei, familial multiple', 'Uvula, bifid', 'Leber congenital amaurosis 17', 'Deafness, autosomal dominant 79', 'Deafness, autosomal dominant nonsyndromic sensorineural 5', 'Deafness, autosomal dominant nonsyndromic sensorineural 4', 'Breast-ovarian cancer, familial, susceptibility to, 5', 'Teeth present at birth', 'Pulmonary bullae causing pneumothorax', 'Enuresis, nocturnal, 1', 'Enuresis, nocturnal, 2', 'Deafness, congenital neurosensory, autosomal recessive 39', 'Deafness, congenital neurosensory, autosomal recessive 40', 'Deafness, autosomal recessive 85', 'Deafness, autosomal recessive 71', 'Deafness, autosomal recessive 44', 'Deafness, autosomal recessive 45', 'Deafness, autosomal recessive 83', 'Deafness, autosomal recessive 62', 'Deafness, congenital neurosensory, autosomal recessive 38', 'Deleted in azoospermia', 'Hyperparathyroidism, primary, caused by water clear cell hyperplasia', 'Orofacial cleft 14', 'Hypotrichosis 15', 'Hypotrichosis 2', 'Glaucoma 3, primary infantile, B', 'Night blindness, congenital stationary, autosomal dominant 3', 'Night blindness, congenital stationary, autosomal dominant 2', 'Preimplantation embryonic lethality 1', 'Deafness, neurosensory, autosomal recessive 46', 'Small cell cancer of the lung', 'Mediosternal depigmentation line', 'Ichthyosis, Bullous type', 'Parotid salivary glands, polycystic dysgenetic disease of', 'Alopecia, familial focal', 'Cleft soft palate', 'Coloboma of macula', 'Melanoma, cutaneous malignant, susceptibility to, 8', 'Melanoma, cutaneous malignant, susceptibility to, 2', 'Lentiginosis, inherited patterned', 'Hairy palms and soles', 'Otosclerosis 10', 'Aplasia cutis congenita, nonsyndromic', 'Vesicoureteral reflux, X-linked', 'Melanoma, malignant familial intraocular', 'Melanoma, uveal', 'Nevus flammeus of nape of neck', 'Incisors, rotation of upper central', 'Testicular germ cell tumor 1', 'Ureter, cancer of', 'Hyperpigmentation of eyelids', 'TRISTICHIASIS', 'Pruritic urticarial papules and plaques of pregnancy', 'DISTICHIASIS', 'Striae distensae, familial', 'Nystagmus 7, congenital, autosomal dominant', 'Deafness, autosomal recessive 88', 'Oncocytoma', 'Keratoconus 7', 'Keratoconus 8', 'Keratoconus 6', 'Keratoconus 5', 'Dowling-Degos disease 3', 'Hypospadias 3, autosomal', 'Preauricular fistulae, congenital', 'Cafe-Au-Lait spots, multiple', 'Canine teeth, absence of upper permanent', 'Thyroid carcinoma, familial medullary', 'Thyroid cancer, nonmedullary, 3', 'Thyroid cancer, nonmedullary, 5', 'Nasopharyngeal carcinoma, susceptibility to, 3', 'Central incisors, absence of', 'Wilms tumor 3', 'Wilms tumor 4', 'Multiple fibroadenomas of the breast', 'Hyperhidrosis palmaris et plantaris', 'TAURODONTISM', 'Palmoplantar keratoderma, nonepidermolytic, focal 2', 'Keratoderma, palmoplantar, punctate type IB', 'Prostate cancer, hereditary, X-linked 1', 'Incisors, lower central, absence of', 'Teratoma, ovarian', 'Ovarian fibromata', 'Otitis media, susceptibility to', 'Pregnancy loss, recurrent, susceptibility to, 1', 'Preeclampsia/eclampsia 5', 'Pregnancy loss, recurrent, susceptibility to, 2', 'Pregnancy loss, recurrent, susceptibility to, 3', 'Hemifacial hyperplasia', 'Immunodeficiency 29', 'Polydactyly, preaxial IV', 'Li-Ghorgani-Weisz-Hubshman syndrome', 'Trochlea of the humerus, aplasia of', 'Keratitis, hereditary', 'Leukodystrophy, hypomyelinating, 23, with ataxia, deafness, liver dysfunction, and dilated cardiomyopathy', 'Split-Hand/foot malformation 6', 'Ceroid lipofuscinosis, neuronal, 4B, autosomal dominant', 'Chromosome 6q25-q25 deletion syndrome', 'Megaepiphyseal dwarfism', 'Brachydactyly, type E', 'Epiphyseal dysplasia, multiple, 6', 'Immunodeficiency 39', 'Neuropathy, hereditary sensory, type IF', 'Ventriculomegaly with cystic kidney disease', 'Dysphasia, familial developmental', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 9', 'Hirschsprung disease, cardiac defects, and autonomic dysfunction', 'Filippi syndrome', 'Muscular dystrophy, adult-onset, with leukoencephalopathy', 'Coloboma-Obesity-Hypogenitalism-Mental retardation syndrome', 'Growth hormone deficiency, isolated, type IV', 'Polydactyly, postaxial, with progressive myopia', 'Oral sensibility, disturbance of', 'Protrusio acetabuli', 'Orofacial cleft 13', 'Paine syndrome', 'Hypoplastic left heart syndrome 2', 'Epilepsy, familial focal, with variable foci 2', 'Tetramelic deficiencies, ectodermal dysplasia, deformed ears, andother abnormalities', 'Megabladder, congenital', 'Tardive dyskinesia', 'Retinal degeneration and epilepsy', 'Deafness, autosomal dominant 9', 'Hypergonadotropic hypogonadism', 'Mental retardation, microcephaly, epilepsy, and coarse face', 'Mental retardation, X-linked, with isolated growth hormone deficiency', 'Microcephaly 8, primary, autosomal recessive', 'Peyronie disease', 'Vesicoureteral reflux 8', 'GAPO syndrome', 'HYPOGLOSSIA-HYPODACTYLIA', 'Adrenocortical carcinoma, pediatric', 'Chromosome 1q21.1 duplication syndrome', 'Ataxia, deafness, and cardiomyopathy', 'Ulnar hypoplasia', 'Scalp defects and postaxial polydactyly', 'Precocious puberty, central', 'Leber optic atrophy', 'Gerstmann-Straussler disease', 'Dentinogenesis imperfecta 1', 'Leukodystrophy, hypomyelinating, 9', 'Ectodermal dysplasia, sensorineural hearing loss, and distinctive facial features', 'Tay-Sachs disease', 'Mental retardation, X-linked 2', 'Migraine, with or without aura, susceptibility to, 13', 'Hydrocephalus, congenital, 5, susceptibility to', 'Ohdo syndrome, Say-Barber-Biesecker-Young-Simpson variant', 'Hemophilia A', 'Synostosis, carpal, with dysplastic elbow joints and brachydactyly', 'Spinocerebellar ataxia 44', 'Tremor, hereditary essential, 4', 'Laryngeal adductor paralysis', 'Epilepsy, benign neonatal, 3', 'Geniospasm 1', 'Polyposis syndrome, hereditary mixed, 2', 'Lentiginosis, centrofacial neurodysraphic', 'Intellectual developmental disorder, autosomal dominant 66', 'Joint laxity, short stature, and myopia', 'Nephrotic syndrome, type 17', 'Hypouricemia, renal, 1', 'Alopecia-Mental retardation syndrome 2', 'Cutis verticis gyrata and mental deficiency', 'Ichthyosis-Mental retardation syndrome with large keratohyalin granules in the skin', 'Episodic ataxia, type 6', 'C7 deficiency', 'Mesomelic limb shortening and bowing', 'Spondylometaphyseal dysplasia with corneal dystrophy', 'Deafness, autosomal dominant 78', 'Frontotemporal dementia', 'Lethal short-limb skeletal dysplasia, al Gazali type', 'Anencephaly', 'Epilepsy, juvenile myoclonic, susceptibility to, 9', 'Colorectal cancer, hereditary nonpolyposis, type 4', 'Nephrolithiasis, calcium oxalate', 'Sonoda syndrome', 'Parietal foramina with cleidocranial dysplasia', 'Advanced sleep phase syndrome, familial, 3', 'Vitreoretinopathy with phalangeal epiphyseal dysplasia', 'Dystonia 31', 'Attention deficit-hyperactivity disorder', 'Surfactant metabolism dysfunction, pulmonary, 3', 'Hydrocephalus, nonsyndromic, autosomal recessive 1', 'Kapur-Toriello syndrome', 'Lissencephaly, X-linked, 2', '46XY sex reversal 5', 'Tibia, hypoplasia or aplasia of, with polydactyly', 'Aplasia of extensor muscles of fingers, unilateral, with generalizedpolyneuropathy', 'Jaundice, familial obstructive, of infancy', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 5', 'Amelogenesis imperfecta, hypomaturation type, iia4', 'Amyloidosis, Finnish type', 'Li-Fraumeni syndrome 2', 'Alpha-aminoadipic and alpha-ketoadipic aciduria', 'Torsion dystonia with onset in infancy', 'Leukoencephalopathy with dystonia and motor neuropathy', 'Stuttering, familial persistent, 1', 'White forelock with malformations', 'Trichorhinophalangeal syndrome, type II', 'Amelogenesis imperfecta, hypomaturation type, iia3', 'Exercise intolerance, riboflavin-responsive', 'Thanatophoric dysplasia, type I', 'Major affective disorder 1', 'Intellectual developmental disorder, autosomal dominant 3', 'Femur, unilateral bifid, with monodactylous ectrodactyly', 'Hyperbilirubinemia, Rotor type, digenic', 'Fundus dystrophy, pseudoinflammatory, recessive form', 'Nicolaides-Baraitser syndrome', 'Ehlers-Danlos syndrome, periodontal type, 1', 'Adams-Oliver syndrome 4', 'Muscular dystrophy, Barnes type', 'Mental retardation, autosomal recessive 10', 'Aplastic anemia', 'Leukemia, chronic myeloid', 'AICA-ribosiduria due to ATIC deficiency', 'Neurodevelopmental disorder with absent language and variable seizures', 'Retinal dystrophy with leukodystrophy', 'Campomelic dysplasia', 'Adie pupil', 'Facial spasm', 'Nephrotic syndrome, type 5, with or without ocular abnormalities', 'Chromosome 18p deletion syndrome', 'Nephrotic syndrome, type 19', 'L-2-hydroxyglutaric aciduria', 'Microcephaly 24, primary, autosomal recessive', 'Photoparoxysmal response 1', 'Split-Foot deformity with mandibulofacial dysostosis', 'Spastic paraplegia 44, autosomal recessive', 'Muscular dystrophy, hemizygous Lethal type', 'Pseudoachondroplasia', 'Epidermolysis bullosa simplex 2E, with migratory circinate erythema', 'Dysautonomia-Like disorder', 'Hemihyperplasia, isolated', 'Mesangial sclerosis, diffuse renal, with ocular abnormalities', 'Oculoectodermal syndrome', 'Muscular dystrophy, pseudohypertrophic, with internalized capillaries', 'Pituitary adenoma, growth hormone-secreting, 1', 'Abducens palsy', 'Meckel syndrome 11', 'Acne inversa, familial, 3', 'Cortical dysplasia, complex, with other brain malformations 3', 'Phocomelia-Ectrodactyly, ear malformation, deafness, and sinus arrhythmia', 'Kifafa seizure disorder', 'Arms, malformation of', 'Intellectual developmental disorder with nasal speech, dysmorphic facies, and variable skeletal anomalies', 'Apnea, central sleep', 'Thiamine metabolism dysfunction syndrome 2 (biotin- or thiamine-responsive encephalopathy type 2)', 'Hyper-IgE recurrent infection syndrome 4A, autosomal dominant', 'Brachydactyly, type A6', 'Dystonia, focal, task-specific', 'Myoclonus, familial, 2', 'Chromosome 17q23.1-q23.2 duplication syndrome', 'Musk, inability to smell', 'Craniosynostosis with fibular aplasia', 'Coffin-Siris syndrome 5', 'Epiphyseal dysplasia of femoral head, myopia, and deafness', 'MUSCULAR DYSTROPHY-DYSTROGLYCANOPATHY (CONGENITAL WITH MENTAL RETARDATION), TYPE B, 6', 'Melanoma-Astrocytoma syndrome', 'Hirschsprung disease with polydactyly, renal agenesis, and deafness', 'Epilepsy, childhood absence, susceptibility to, 5', 'Pontocerebellar hypoplasia, type 2B', 'Split-Hand/foot malformation 1', 'Talonavicular coalition', 'Thumb deformity and alopecia', 'Ehlers-Danlos syndrome, arthrochalasia type, 2', 'Giant axonal neuropathy 1, autosomal recessive', 'Nievergelt syndrome', 'Muscular dystrophy, limb-girdle, autosomal recessive 27', 'Episodic pain syndrome, familial, 2', 'Dementia/parkinsonism with non-alzheimer amyloid plaques', 'Spinal muscular atrophy, type IV', 'Digital arthropathy-brachydactyly, familial', 'Cutis laxa, autosomal recessive, type IIE', 'Microcephaly, congenital heart disease, unilateral renal agenesis,and hyposegmented lungs', 'TORTICOLLIS', 'Megalencephalic leukoencephalopathy with subcortical cysts 3', 'Wiedemann-Rautenstrauch syndrome', 'Cystic disease of lung', 'Patella aplasia-hypoplasia', 'Syndactyly-Polydactyly-Earlobe syndrome', 'Spastic paraplegia 85, autosomal recessive', 'Intellectual developmental disorder, autosomal recessive 7', 'Corneal fleck dystrophy', 'Vocal cord paralysis and ptosis', 'Pleuropulmonary blastoma', 'Metaphyseal dysostosis, mental retardation, and conductive deafness', 'Choroidal dystrophy, central areolar 2', 'Alzheimer disease 10', 'Dystonia 15, myoclonic', 'Maxillofacial dysostosis', 'Waardenburg syndrome, type 3', 'Ectodermal dysplasia and neurosensory deafness', 'Cranial nerves, congenital paresis of', 'Glycine encephalopathy 2', 'Vitreoretinopathy, neovascular inflammatory', 'Epiphyseal dysplasia, multiple, with severe proximal femoral dysplasia', 'Epilepsy, familial adult myoclonic, 6', 'Wiedemann-Steiner syndrome', 'Epilepsy, familial focal, with variable foci 3', 'Amyotrophic lateral sclerosis 3', 'Myasthenic syndrome, congenital, 3A, slow-channel', 'Gastric cancer, hereditary diffuse', 'Intellectual developmental disorder with autism and macrocephaly', 'Lessel-Kubisch syndrome', 'Crome syndrome', 'Epilepsy, photogenic, with spastic diplegia and mental retardation', 'Hypomagnesemia, seizures, and mental retardation 2', 'Retinitis pigmentosa 88', 'Retinitis pigmentosa 57', 'Lissencephaly 9 with complex brainstem malformation', 'Leukoencephalopathy, developmental delay, and episodic neurologic regression syndrome', 'ANONYCHIA-ECTRODACTYLY', 'Triphalangeal thumb-polysyndactyly syndrome', 'Lipoma of the conjunctiva', 'Retinitis pigmentosa 71', 'Neuropathy, hereditary sensory and autonomic, type IIB', 'Ciliary dyskinesia, primary, 14', 'Myotonia congenita, autosomal recessive', 'Epilepsy, familial temporal lobe, 7', 'Testicular anomalies with or without congenital heart disease', 'Mental retardation, X-linked, syndromic 12', 'Osteochondrodysplasia, brachydactyly, and overlapping malformed digits', 'Congenital heart defects and ectodermal dysplasia', 'Glomerulopathy with fibronectin deposits 2', 'Mental retardation, X-linked 95', 'Amelogenesis imperfecta, hypomaturation type, IIA6', 'Amelogenesis imperfecta, type IIIB', 'Neuropathy, hereditary sensory and autonomic, type IX, with developmental delay', 'Intellectual developmental disorder, autosomal recessive 59', 'Brachydactyly-Ectrodactyly with fibular aplasia or hypoplasia', 'Epilepsy, idiopathic generalized, susceptibility to, 3', 'Al-Raqad syndrome', 'Megalencephalic leukoencephalopathy with subcortical cysts 2A', 'Mental retardation, x-linked syndromic, Raymond type', 'Pelvic lipomatosis with crossed renal ectopia', 'Charcot-Marie-Tooth disease, demyelinating, type 4F', 'Neuropathy, hereditary motor and sensory, with deafness, mental retardation,and absent sensory large myelinated fibers', 'Rombo syndrome', 'Intellectual developmental disorder, autosomal recessive 16', 'Adactylia, unilateral', 'Retinitis pigmentosa 37', 'Epidermodysplasia verruciformis 2', 'C1q deficiency', 'Glioma susceptibility 2', 'Microcephaly 30, primary, autosomal recessive', 'Brain small vessel disease 3', 'Spondylometaphyseal dysplasia, X-linked', 'Rett syndrome, congenital variant', 'Alzheimer disease 2', 'Colorectal cancer, susceptibility to, 12', 'Chromosome 2q37 deletion syndrome', 'Hypomelia with mullerian duct anomalies', 'Amastia, bilateral, with ureteral triplication and dysmorphism', 'Muscular dystrophy, congenital, with rapid progression', 'Neurodevelopmental disorder with central hypotonia and dysmorphic facies', 'Saul-Wilson syndrome', 'Huntington disease-like 3', 'Angiolipomatosis, familial', 'Intellectual developmental disorder, autosomal dominant 72', 'Megalencephaly with dysmyelination', 'Pontocerebellar hypoplasia, type 2C', 'Spastic diplegia, Infantile type', 'Woodhouse-Sakati syndrome', 'Hypochondroplasia', 'Ruvalcaba syndrome', 'Myopia 1, X-linked', 'Neurodevelopmental disorder with speech impairment and dysmorphic facies', 'Epilepsy, reading', 'Townes-Brocks syndrome 2', 'Cleft palate, psychomotor retardation, and distinctive facial features', 'Combined oxidative phosphorylation deficiency 6', 'Pachygyria with mental retardation, seizures, and arachnoid cysts', 'Intellectual developmental disorder, autosomal dominant 52', 'Polycystic kidney disease 7', 'Symphalangism, proximal, 1B', 'Intellectual developmental disorder with speech delay and axonal peripheral neuropathy', 'Attention deficit-hyperactivity disorder, susceptibility to, 7', 'Pierre Robin syndrome and oligodactyly', 'Myoclonic epilepsy, juvenile, susceptibility to, 4', 'Mental retardation, autosomal recessive 29', 'Dystonia 23', 'Advanced sleep phase syndrome, familial, 1', 'Coffin-Siris syndrome 3', 'Leber congenital amaurosis 10', 'Ceroid lipofuscinosis, neuronal, 8, northern epilepsy variant', 'Microphthalmia, isolated 4', 'Hyperekplexia 2', 'Spondyloepiphyseal dysplasia with atlantoaxial instability', 'Neuronopathy, distal hereditary motor, type I', 'Ataxia-Deafness-Retardation syndrome', 'Autism, susceptibility to, X-linked 2', 'Intellectual developmental disorder, autosomal recessive 19', 'Immunodeficiency-Centromeric instability-facial anomalies syndrome 3', 'Achondroplasia, severe, with developmental delay and acanthosis nigricans', 'Autosomal recessive cerebral arteriopathy with subcortical infarcts and leukoencephalopathy (CARASIL)', 'Epilepsy with grand mal seizures on awakening', 'Lethal congenital contracture syndrome 7', 'Charcot-Marie-Tooth disease, demyelinating, type 1C', 'Epilepsy, familial adult myoclonic, 7', 'Muscular atrophy, malignant neurogenic', 'Basilar impression, primary', 'Spastic paresis, glaucoma, and mental retardation', 'Charcot-Marie-Tooth disease, dominant intermediate A', 'Aprosencephaly and cerebellar dysgenesis', 'Pemphigus vulgaris, familial', 'Mental retardation, obesity, mandibular prognathism, and eye and skinanomalies', 'Spondylometaphyseal dysplasia with cone-rod dystrophy', 'CAMPTOBRACHYDACTYLY', 'Oculocerebral syndrome with hypopigmentation', 'Bardet-Biedl syndrome 4', 'Myoclonus, cerebellar ataxia, and deafness', 'Arthrogryposis, distal, type 1B', 'Klippel-Feil syndrome 3, autosomal dominant', 'Fetal akinesia deformation sequence 2', 'Hip dysplasia, Beukes type', 'Meningioma, familial, susceptibility to', 'Ciliary dyskinesia due to transposition of ciliary microtubules', 'Ventriculomegaly and arthrogryposis', 'Langer mesomelic dysplasia', 'Split lower lip', 'Breast cancer', 'Pneumothorax, primary spontaneous', 'Intellectual developmental disorder, X-linked 88', 'Chromosome 4q32.1-q32.2 triplication syndrome', 'Multiple tumor-associated chromosome region 1', 'Wilms tumor 1', 'Wilms tumor 5', 'Prostate cancer', 'Charcot-Marie-Tooth disease, recessive intermediate D', 'Endometrial carcinoma, somatic', 'Prognathism, mandibular', 'Tarsal-Carpal coalition syndrome', 'Metaphyseal chondrodysplasia, Spahr type', 'Incisors, shovel-shaped', 'Craniosynostosis, Adelaide type', 'Microcephaly 28, primary, autosomal recessive', 'Peroxisome biogenesis disorder 2B', 'Colorectal cancer, susceptibility to, 10', 'Reticulum cell sarcoma', 'Dermoids of cornea', 'Cowden syndrome 7', 'Genitourinary tract anomalies', 'LENTIGINES', 'Hamartoma, precalcaneal congenital fibrolipomatous', 'Kyrle disease', 'Atrophia maculosa varioliformis cutis, familial', 'Parkinson disease 13', 'Ptosis, strabismus, and ectopic pupils', 'Glaucoma 1, primary open angle, C', 'Fibrosis of extraocular muscles, congenital, with synergistic divergence', 'Peeling skin syndrome 3', 'Lip, hamartomatous', 'Nephrotic syndrome, type 12', 'Preimplantation embryonic lethality 2', 'Cryptotia, familial', 'Pelvis-Shoulder dysplasia', 'Question mark ears, isolated', 'Grouped pigmentation of the macula', 'Cone-Rod dystrophy 9', 'Marcus gunn phenomenon', 'Cornea guttata with anterior polar cataracts', 'Night blindness, congenital stationary, type 1I', 'Glaucoma, primary open angle', 'Epidermolysis bullosa with deficiency of galactosylhydroxylysyl glucosyltransferase', 'Deafness, autosomal dominant 58', 'Deafness, autosomal recessive 1B', 'Erythrokeratodermia variabilis et progressiva 2', 'Deafness, autosomal dominant 67', 'DEAFNESS, Y-LINKED 1', 'Deafness, autosomal recessive 20', 'Deafness, autosomal dominant 43', 'Deafness, autosomal recessive 13', 'Deafness, autosomal recessive 57', 'Deafness, autosomal dominant 16', 'Deafness, autosomal recessive 25', 'Otosclerosis 8', 'Deafness, autosomal recessive 117', 'Keratoderma, palmoplantar, with deafness', 'Deafness, autosomal recessive 94', 'Deafness, autosomal recessive 86', 'Deafness, autosomal recessive 65', 'Deafness, autosomal dominant 88', 'Deafness, autosomal recessive 93', 'Deafness, autosomal recessive 48', 'Nystagmus, congenital motor, autosomal recessive', 'Glaucoma 1, open angle, M', 'Atrichia with papular lesions', 'Oguchi disease 1', 'Oguchi disease-2', 'Vitiligo-associated multiple autoimmune disease susceptibility 6', 'Myopia 22, autosomal dominant', 'Megalencephalic leukoencephalopathy with subcortical cysts 1', 'Episodic pain syndrome, familial, 1', 'Corneal dystrophy, posterior polymorphous, 2', 'Corneal dystrophy, posterior polymorphous, 4', 'Alopecia, congenital', 'Cataract and congenital ichthyosis', 'Deafness with anhidrotic ectodermal dysplasia', 'Trichomegaly', 'Adrenocortical unresponsiveness to acth with postreceptor defect', 'Deafness, autosomal recessive 30', 'Corneal dystrophy, Central type', 'Corneal dystrophy, crystalline, of schnyder', 'Hydatidiform mole, recurrent, 4', 'Myopia-3', 'Deafness, autosomal dominant nonsyndromic sensorineural 17', 'Deafness, autosomal recessive 102', 'Myopia 27', 'Reese retinal dysplasia', 'Retinal dysplasia, primary', 'Coloboma of optic nerveoptic nerve head pits, bilateral congenital, included', 'Leber optic atrophy, susceptibility to', 'Cylindromatosis, familial', 'Mental retardation, X-linked 73', 'Myopia 24, autosomal dominant', 'Myopia 21, autosomal dominant', 'Thyroid hormone plasma membrane transport defect', 'Deiodinase, iodothyronine, type I', 'Microphthalmia, isolated 7', 'Deafness, autosomal recessive 67', 'Cataract, anterior polar, 2', 'Thyroid dyshormonogenesis 6', 'Brown syndrome', 'Deafness, autosomal recessive 36, with or without vestibular involvement', 'Deafness, autosomal dominant 22', 'Deafness, autosomal recessive 15', 'Oocyte maturation defect 12', 'Porokeratosis 7, multiple types', 'Ossicular malformations, familial', 'Emphysema, congenital lobar', 'Granulosis rubra nasi', 'Deafness, autosomal dominant 59', 'Blistering, acantholytic, of oral and laryngeal mucosa', 'Deafness, autosomal recessive 120', 'Deafness, autosomal dominant nonsyndromic sensorineural 28', 'Deafness, autosomal recessive 112', 'Deafness, autosomal recessive 98', 'Deafness, autosomal recessive 23', 'Deafness, autosomal recessive 66', 'Deafness, autosomal recessive 68', 'ACROKERATOELASTOIDOSIS', 'Aplasia cutis congenita of limbs, recessive', 'Hypotrichosis 9', 'Hypertrichosis universalis', 'Porokeratosis punctata palmaris et plantaris', 'Usher syndrome, type IIA', 'Usher syndrome, type IIC', 'Brittle cornea syndrome 2', 'Cone-Rod dystrophy, X-linked, 2', 'Retinitis pigmentosa 24', 'Spinal muscular atrophy, scapuloperoneal', 'Deafness, autosomal recessive 109', 'Corneal dystrophy, punctiform and polychromatic pre-Descemet', 'Ankyloglossia with or without tooth anomalies', 'Diastema, dental medial', 'Bronchiectasis with or without elevated sweat chloride 3', 'Impacted teeth, multiple', 'Trichoepithelioma, multiple familial, 1', 'Deafness, autosomal recessive 63', 'URETEROCELE', 'Vesicoureteral reflux 2', 'Choroidal dystrophy, central areolar 3', 'Orofacial cleft 5', 'Nystagmus 3, congenital, autosomal dominant', 'Fraser-Like syndrome', 'Cataract, autosomal recessive congenital 5', 'Hyperkeratosis lenticularis perstans', 'Uterine anomalies', 'OTOSCLEROSIS', 'Oocyte maturation defect 8', 'Pigmented nodular adrenocortical disease, primary, 3', 'Macular degeneration, age-related, 15, susceptibility to', 'Larynx, congenital partial atresia of', 'Tooth agenesis, selective, 1', 'Pulmonary hypoplasia, primary', 'Fibromatosis, gingival, with progressive deafness', 'Spermatogenic failure 31', 'Spermatogenic failure 53', 'Oocyte maturation defect 6', 'Spermatogenic failure 17', 'Spermatogenic failure 87', 'Deafness, autosomal recessive 49', 'Deafness, progressive, with stapes fixation', 'Spermatogenic failure 13', 'Oocyte maturation defect 11', 'Deafness, neurosensory, autosomal recessive 3', 'Oocyte/zygote/embryo maturation arrest 18', 'Deafness, autosomal recessive, 24', 'Oocyte maturation defect 3', 'Oocyte/zygote/embryo maturation arrest 19', 'Deafness, autosomal recessive 28', 'Otosclerosis 4', 'Tooth agenesis, selective, 7', 'Short tarsus with absence of lower eyelashes', 'Goiter, multinodular 1', 'Melanoma, uveal, susceptibility to, 2', 'Uveal melanoma, susceptibility to, 1', 'Nail disorder, nonsyndromic congenital, 9', 'Prostatic hyperplasia, benign', 'Nail disorder, nonsyndromic congenital, 5', 'Commissural lip pits', 'Preauricular tag, isolated, autosomal dominant, 1', 'Dyschromatosis universalis hereditaria', 'Dyschromatosis symmetrica hereditaria 1', 'Epidermolysis bullosa simplex 2B, generalized intermediate', 'Palmoplantar keratoderma, nonepidermolytic', 'Palmoplantar keratoderma, Bothnian type', 'Prostate cancer, hereditary, 1', 'Schwannomatosis', 'Epilepsy, familial temporal lobe, 3', 'Cochleosaccular degeneration of the inner ear with progressive cataracts', 'Myopia 2, autosomal dominant', 'Craniofacial dysmorphism, skeletal anomalies, and impaired intellectual development syndrome 2', 'Split-Foot malformation with mesoaxial polydactyly', 'Ciliary dyskinesia, primary, 10', 'Polydactyly, postaxial, type A10', 'Febrile convulsions, familial, 9', 'Autoimmune disease, susceptibility to, 1', 'Calvarial hyperostosis', 'Dermochondrocorneal dystrophy', 'Charcot-marie-tooth disease, type 4H', 'Meleda disease', 'Retinitis pigmentosa 78', 'Insensitivity to pain, congenital, with anhidrosis', 'Microcornea, glaucoma, and absent frontal sinuses', 'Ehlers-danlos syndrome, type I', 'Retinitis pigmentosa 42', 'AREDYLD', 'Attention deficit-hyperactivity disorder 8', 'Short stature and facioauriculothoracic malformations', 'Chopra-Amiel-Gordon syndrome', 'Retinal dystrophy and obesity', 'Mental retardation, X-linked 92', 'Episodic ataxia, type 7', 'Amelogenesis imperfecta, type III', '46XY gonadal dysgenesis with minifascicular neuropathy', 'Oculopalatocerebral syndrome', 'Lethal congenital contracture syndrome 4', 'Delayed puberty, self-limited', 'Neurodegeneration with brain iron accumulation 2B', 'Prolactin deficiency, isolated', 'Lethal congenital contracture syndrome 3', 'Polydactyly, postaxial, type A1', 'Lateral meningocele syndrome', 'Microcephaly 12, primary, autosomal recessive', 'Leukoencephalopathy with vanishing white matter', 'Muscular dystrophy, congenital, with infantile cataract and hypogonadism', 'Pulmonary hypertension, primary, 3', 'Spastic paraplegia 7, autosomal recessive', 'Lissencephaly 8', 'Leptin deficiency or dysfunction', 'STAR syndrome', 'Holoprosencephaly 2', 'Focal segmental glomerulosclerosis 7', 'Neuropathy, hereditary motor and sensory, Russe type', 'Ehlers-Danlos syndrome, classic-like', 'Spinocerebellar ataxia 6', 'Ceroid lipofuscinosis, neuronal, 2', 'Fibromatosis, gingival, 1', 'Cahmr syndrome', 'Ophthalmoplegia, progressive, with scrotal tongue and mental deficiency', 'Myopathy, congenital, with diaphragmatic defects, respiratory insufficiency, and dysmorphic facies', 'Neurodevelopmental disorder with nonspecific brain abnormalities and with or without seizures', 'Megalencephaly-Polymicrogyria-Polydactyly-Hydrocephalus syndrome 3', 'Neurodevelopmental disorder with or without hyperkinetic movements and seizures, autosomal dominant', 'Ectodermal dysplasia-syndactyly syndrome 1', 'Myopathy, myofibrillar, 9, with early respiratory failure', 'Paragangliomas 1', 'Hypoparathyroidism, X-linked', 'Pituitary adenoma 5, multiple types', 'Curved nail of fourth toe', 'Camptosynpolydactyly, complex', 'Ichthyosis-Cheek-Eyebrow syndrome', 'Spondyloarthropathy, susceptibility to, 1', 'Immunodeficiency 106, susceptibility to viral infections', 'Retinitis pigmentosa 9', 'Chromosome 5q12 deletion syndrome', 'Radial hypoplasia, triphalangeal thumbs, hypospadias, and maxillarydiastema', 'Focal segmental glomerulosclerosis 8', 'Nephrotic syndrome, type 18', 'Mental retardation, autosomal dominant 10', 'Febrile seizures, familial, 11', 'Neurofibromatosis, type III, mixed central and peripheral', 'Asthma, nasal polyps, and aspirin intolerance', 'Spinocerebellar ataxia 14', 'Alopecia-Mental retardation syndrome 1', 'Senior-Loken syndrome 7', 'Alopecia-Mental retardation syndrome 3', 'Ear exostoses', 'Cerebellar ataxia and neurosensory deafness', 'Vestibulopathy, familial', 'Chromosome 8q22.1 duplication syndrome', 'Nystagmus, hereditary vertical', 'Mental retardation, truncal obesity, retinal dystrophy, and micropenis syndrome', 'Mental retardation, autosomal recessive 25', 'Intellectual developmental disorder, autosomal recessive 50', 'Polymicrogyria, bilateral perisylvian', 'Paroxysmal nonkinesigenic dyskinesia 2', 'Inclusion body myopathy and brain white matter abnormalities', 'Polydactyly, preaxial II', 'Spastic paraplegia 5A, autosomal recessive', 'Polycystic kidney disease, infantile severe, with tuberous sclerosis', 'Mental retardation, X-linked 97', 'Convulsive disorder, familial, with prenatal or early onset', 'Microcephalic osteodysplastic primordial dwarfism, type III', 'Intellectual developmental disorder with dysmorphic facies and ptosis', 'Nemaline myopathy 4', 'Ceroid lipofuscinosis, neuronal, 6B (Kufs type)', 'Tremor, hereditary essential, 2', 'Polydactyly, postaxial, type A7', 'Asphyxiating thoracic dystrophy 3', 'Dystonia 35, childhood-onset', 'Charcot-Marie-Tooth disease, axonal, type 2R', 'Retinitis pigmentosa 51', 'Mental retardation, X-linked 91', 'Metaphyseal chondrodysplasia, Schmid type', 'Chudley-Mccullough syndrome', 'Multiple synostoses syndrome 4', 'Joubert syndrome 2', 'Pulmonary venoocclusive disease 2', 'Periventricular nodular heterotopia 8', 'Episodic pain syndrome, familial, 3', 'Migraine, familial hemiplegic, 1', 'Giacheti syndrome', 'Cortisone reductase deficiency 1', 'Retinitis pigmentosa 86', 'Retinitis pigmentosa 31', 'Spinal muscular atrophy, Ryukyuan type', 'Night blindness, congenital stationary, type 1D', 'Suprabulbar paresis, congenital', 'Encephalopathy due to defective mitochondrial and peroxisomal fission 2', 'Papillon-Lefevre syndrome', 'Arthrogryposis, distal, type 11', 'Deafness, autosomal recessive 79', 'Aural atresia, congenital', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 10', 'Myasthenic syndrome, congenital, with tubular aggregates 1', 'Chromosome 22q11.2 duplication syndrome', 'Alzheimer disease 3', 'Agenesis of the corpus callosum with peripheral neuropathy', 'Contractures, pterygia, and variable skeletal fusions syndrome 1B', 'Pontocerebellar hypoplasia, type 3', 'Spastic paraplegia 28, autosomal recessive', 'Brachydactyly-Nystagmus-Cerebellar ataxia', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 7', 'Atonic-Astatic syndrome of foerster', 'Nephrotic syndrome, type 23', 'Epidermolysis bullosa simplex 2D, generalized, intermediate or severe, autosomal recessive', 'Neurodevelopmental disorder with seizures and nonepileptic hyperkinetic movements', 'Ohdo syndrome', 'Cataracts, hearing impairment, nephrotic syndrome, and enterocolitis 2', 'Seizures, early-onset, with neurodegeneration and brain calcification', 'Coffin-Siris syndrome 12', 'Rolandic epilepsy, mental retardation, and speech dyspraxia', 'Myasthenia, limb-girdle, familial', 'Trigonocephaly 2', 'Parkinson disease 11', 'Corneal dystrophy, posterior polymorphous, 3', 'Epilepsy, idiopathic generalized', 'Myasthenic syndrome, congenital, 14', 'Developmental delay, impaired growth, dysmorphic facies, and axonal neuropathy', 'Muscular hypertonia, lethal', 'Stromme syndrome', 'Coffin-Siris syndrome 11', 'Aniridia', 'Red skin pigment anomaly of new guinea', 'Osteogenesis imperfecta, type XIX', 'Cone-rod dystrophy and hearing loss 2', 'Ciliary dyskinesia, primary, 40', 'Meesmann corneal dystrophy 2', 'ALACRIMA', 'Seckel syndrome 1', 'Polymyoclonus, infantile', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 13', 'Poland syndrome', 'Facial paresis, hereditary congenital, 2', 'Preaxial deficiency, postaxial polydactyly, and hypospadias', 'Epileptic encephalopathy, early infantile, 72', 'Agnathia-Otocephaly complex', 'Tatton-Brown-Rahman syndrome', 'Acrokeratoderma, hereditary papulotranslucent', 'Orbital margin, hypoplasia of', 'Wolfram-Like syndrome, autosomal dominant', 'Glycosylphosphatidylinositol biosynthesis defect 16', 'Charcot-Marie-Tooth disease, dominant intermediate F', 'Ciliary dyskinesia, primary, 48, without situs inversus', 'Bor-Duane hydrocephalus contiguous gene syndrome', 'Phelan-Mcdermid syndrome', 'Spondylometaphyseal dysplasia, Kozlowski type', 'Dystonia 17, torsion, autosomal recessive', 'Contractures, pterygia, and spondylocarpostarsal fusion syndrome 1A', 'Kleine-Levin hibernation syndrome', 'Familial adenomatous polyposis 3', 'Alpha-Thalassemia/mental retardation syndrome, X-linked', 'Mental retardation, autosomal dominant 4', 'Peripheral motor neuropathy, childhood-onset, biotin-responsive', 'Andersen cardiodysrhythmic periodic paralysis', 'Hydrolethalus syndrome 2', 'Tooth agenesis, selective, 10', 'Lambotte syndrome', 'Amelogenesis imperfecta, hypomaturation type, iia2', 'Episodic kinesigenic dyskinesia 2', 'Mucus inspissation of respiratory tract', 'Holzgreve syndrome', '3MC syndrome 1', 'Van den bosch syndrome', 'Spondyloepimetaphyseal dysplasia, Irapa type', 'Coloboma of macula with type B brachydactyly', 'Developmental delay with variable intellectual impairment and behavioral abnormalities', 'Myopathy, myosin storage, autosomal dominant', 'Epilepsy, nocturnal frontal lobe, 2', 'Epilepsy, idiopathic generalized, susceptibility to, 12', 'Cerebral palsy, spastic quadriplegic, 3', 'Amelogenesis imperfecta, type IV', 'Colorectal cancer', 'Encephalitis/encephalopathy, mild, with reversible myelin vacuolization', 'Hypotrichosis-lymphedema-telangiectasia syndrome', 'Mental retardation, autosomal recessive 51', 'Amyotrophy, hereditary neuralgic', 'Amelogenesis imperfecta, type IIIC', 'Haim-Munk syndrome', 'Meckel syndrome, type 9', 'Hydrolethalus syndrome 1', 'Chromosome 17q11.2 deletion syndrome, 1.4-mb', 'Ophthalmoplegia, external, with rib and vertebral anomalies', 'Cervical hypertrichosis with underlying kyphoscoliosis', 'Parkinson disease 5, susceptibility to', 'Tremor, hereditary essential, 6', 'Xeroderma pigmentosum, complementation group E', 'Glioma susceptibility 1', 'Chromosome 2q31.1 duplication syndrome', 'Specific language impairment 5', 'Nail disorder, nonsyndromic congenital, 6', 'Seizures, cortical blindness, and microcephaly syndrome', 'Congenital cataracts, facial dysmorphism, and neuropathy', 'Developmental and epileptic encephalopathy 18', 'Immunodeficiency 107, susceptibility to invasive staphylococcus aureus infection', 'Speech-language disorder-1', 'Dementia, lewy body', 'Pruritus, hereditary localized', 'Atresia of external auditory canal and conduction deafness', 'Short-Rib thoracic dysplasia 16 with or without polydactyly', 'Myasthenic syndrome, congenital, 23, presynaptic', 'Anterior chamber cleavage disorder, cerebellar hypoplasia, hypothyroidism, and tracheal stenosis', 'You-Hoover-Fong syndrome', 'Mitochondrial complex I deficiency, nuclear type 21', 'Usher syndrome, type IG', 'Microcephaly 25, primary, autosomal recessive', 'Leukoencephalopathy, acute reversible, with increased urinary alpha-ketoglutarate', 'Syndactyly, type V', 'Erythrokeratodermia veriabilis et progressiva 6', 'Charcot-Marie-Tooth disease, dominant intermediate C', 'Short-Rib thoracic dysplasia 14 with polydactyly', 'Short-Rib thoracic dysplasia 19 with or without polydactyly', 'Townes-Brocks syndrome 1', 'Cataract-Ataxia-Deafness-Retardation syndrome', 'Neuropathy, hereditary sensory, type ID', 'Neuromuscular disease and ocular or auditory anomalies with or without seizures', 'Coffin-siris syndrome 6', 'Cerebellar hypoplasia/atrophy, epilepsy, and global developmental delay', 'Retinitis pigmentosa 74', 'Neural tube defects, susceptibility to', 'Brachydactyly, preaxial, with hallux varus and thumb abduction', 'Mitochondrial complex IV deficiency, nuclear type 17', 'Actinic prurigo', 'Ovarian dysgenesis 7', 'Mosaic variegated aneuploidy syndrome 3', 'Arthrogryposis, distal, type 2B3', 'Spasticity, childhood-onset, with hyperglycinemia', 'Lactate dehydrogenase B deficiency', 'Arthrogryposis, distal, type 2E', 'Synostoses, tarsal, carpal, and digital', 'Lethal congenital contracture syndrome 6', 'Aniridia and absent patella', 'Peroxisome biogenesis disorder 9B', 'Ceroid lipofuscinosis, neuronal, 8', 'Seborrhea-Like dermatitis with psoriasiform elements', 'Renal cell carcinoma, papillary, 1, familial and somatic', 'Adrenal hyperplasia, congenital, due to 11-beta-hydroxylase deficiency', 'BETA-THALASSEMIA', 'ALPHA-THALASSEMIA', 'Granulomatosis with polyangiitis', 'Epilepsy, familial temporal lobe, 6', 'Keratosis follicularis, dwarfism, and cerebral atrophy', 'Mental retardation, autosomal recessive 52', 'Radioulnar synostosis, unilateral, with developmental retardationand hypotonia', 'Mucoepithelial dysplasia, hereditary', 'Erythrokeratodermia variabilis et progressiva 4', 'Urocanase deficiency', 'Striatal degeneration, autosomal dominant 2', 'Jaberi-Elahi syndrome', 'Retinitis pigmentosa 76', 'Friedreich ataxia, so-called, with optic atrophy and sensorineuraldeafness', 'TRACHEOBRONCHOMEGALY', 'Autism, susceptibility to, 20', 'Oculodentodigital dysplasia, autosomal recessive', 'Brown-Vialetto-Van laere syndrome 2', 'Brachydactyly, type B1', 'Blepharophimosis with facial and genital anomalies and mental retardation', 'Epilepsy, idiopathic generalized, 10', 'Otosclerosis 3', 'Melanoma, cutaneous malignant, susceptibility to, 10', 'Bladder cancer', 'Mental retardation, autosomal recessive 47', 'Spastic paraplegia and psychomotor retardation with or without seizures', 'Deafness, autosomal recessive 1A', 'Macular degeneration, age-related, 4', 'Myasthenic syndrome, congenital, 9, associated with acetylcholine receptor deficiency', 'Alzheimer disease 9, susceptibility to', 'Baker-Gordon syndrome', 'Orofaciodigital syndrome IV', 'Anauxetic dysplasia 2', 'Brooke-Spiegler syndrome', 'Noduli cutanei, multiple, with urinary tract abnormalities', 'Nasal bones, absence of', 'Iris pigment layer, cleavage of', 'Galloway-Mowat syndrome 10', 'Vestibulocochlear dysfunction, progressive', 'Ackerman syndrome', 'Fibrosis of extraocular muscles, congenital, 5', 'Steatocystoma multiplex with natal teeth', 'Leber congenital amaurosis 11', 'Fleck retina, familial benign', 'Anonychia with flexural pigmentation', 'Corneal dystrophy, Fuchs endothelial, 4', 'Retinitis pigmentosa 48', 'Doyne honeycomb retinal dystrophy', 'Usher syndrome, type ID', 'Cataract, autosomal dominant, multiple types 1', 'Microphthalmia, isolated, with corectopia', 'Deafness, autosomal dominant nonsyndromic sensorineural 2', 'Auditory neuropathy, autosomal dominant 3', 'Deafness, autosomal dominant nonsyndromic sensorineural 11', 'Nail disorder, nonsyndromic congenital, 7', 'Deafness, autosomal dominant 36', 'Deafness, autosomal recessive 29', 'Ichthyosis, lamellar, autosomal dominant', 'Deafness, autosomal recessive 74', 'Deafness, autosomal recessive 12', 'Duane retraction syndrome 2', 'Deafness, autosomal recessive 110', 'Deafness, autosomal dominant 81', 'Deafness, autosomal dominant 71', 'Deafness, autosomal dominant 74', 'Retinitis pigmentosa 85', 'Leber congenital amaurosis 12', 'Pachyonychia congenita 4', 'Cataract 19, multiple types', 'Cataract 7', 'Deafness, autosomal dominant 51', 'Deafness, autosomal dominant 89', 'Microphthalmia with coloboma 3', 'Stargardt disease 4', 'Aniridia, microcornea, and spontaneously reabsorbed cataract', 'Cataract 44', 'Glucocorticoid deficiency 5', 'Deafness, autosomal dominant nonsyndromic sensorineural 49', 'Deafness, mid-tone neural', 'Disordered steroidogenesis due to cytochrome P450 oxidoreductase', 'Hypogonadism, primary, and partial alopecia', 'Myopia 17', 'Corneal dystrophy, fuchs endothelial, 8', 'Aplasia cutis congenita, high myopia, and cone-rod dysfunction', 'Hydatidiform mole, recurrent, 3', 'Myopia 25, autosomal dominant', 'Retinal dystrophy, reticular pigmentary, of posterior pole', 'Premature ovarian failure 12', 'Hydatidiform mole, recurrent, 1', 'Thyroid hormone resistance, selective pituitary', 'Spermatogenic failure 12', 'Frontonasal dysplasia with alar clefts', 'Cataract, congenital total, with posterior sutural opacities in heterozygotes', 'Macular dystrophy, concentric annular', 'Ankyloblepharon filiforme adnatum and cleft palate', 'Usher syndrome, type IC', 'Perrault syndrome 2', 'Keratosis palmoplantaris striata II', 'Palmoplantar keratoderma, epidermolytic, 2', 'Deafness, autosomal recessive 84B', 'Deafness, autosomal recessive 89', 'Occult macular dystrophy', 'Cataract, congenital, Volkmann type', 'Corneal dystrophy, lattice type I', 'Hypotrichosis 10', 'Pupillary membrane, persistence of', 'Cataract 23', 'Thyroid cancer, nonmedullary, 1', 'Deafness, autosomal dominant 73', 'Deafness, autosomal recessive 8/10', 'Deafness, neurosensory, autosomal recessive 42', 'Deafness, autosomal dominant 66', 'Senior-Loken syndrome 5', 'Deafness-Oligodontia syndrome', 'Dyschromatosis universalis hereditaria 3', 'Stargardt disease 1', 'Advanced sleep phase syndrome, familial, 2', 'Choroidal dystrophy, central areolar 1', 'Cryptorchidism, unilateral or bilateral', 'Deafness, autosomal recessive 108', 'Deafness, autosomal dominant 6', 'Deafness, autosomal dominant 20', 'Rhabdoid tumor predisposition syndrome 2', 'Tooth agenesis, selective, 9', 'Myofibromatosis, infantile, 1', 'Cleft palate, X-linked', 'Mayer-Rokitansky-Kuster-Hauser syndrome', 'Cataract 31, multiple types', 'Nephronophthisis 9', 'Nephronophthisis 7', 'Oocyte/zygote/embryo maturation arrest 20', 'Oocyte/zygote/embryo maturation arrest 17', 'Premature ovarian failure 3', 'Orofacial cleft 1', 'Testes, rudimentary', 'Spermatogenic failure 36', 'Dental noneruption', 'CODAS syndrome', 'Keratoconus 1', 'Book syndrome', 'Nephrotic syndrome, type 13', 'Oocyte maturation defect 9', 'Cataract, autosomal recessive congenital 2', 'Vas deferens, congenital bilateral aplasia of', 'Spermatogenic failure 61', 'Spermatogenic failure 62', 'Spermatogenic failure 44', 'Spermatogenic failure 6', 'Oocyte maturation defect 13', 'Spermatogenic failure 8', 'Spermatogenic failure 52', 'Spermatogenic failure 23', 'Spermatogenic failure, Y-linked, 2', 'Spermatogenic failure 4', 'Spermatogenic failure 55', 'Spermatogenic failure, Y-linked, 1', 'Spermatogenic failure 3', 'Spermatogenic failure 67', 'Spermatogenic failure 69', 'Spermatogenic failure 26', 'Spermatogenic failure 9', 'Spermatogenic failure 66', 'Breast-Ovarian cancer, familial, susceptibility to, 2', 'Deafness, autosomal dominant 70', 'Deafness, autosomal recessive 111', 'Oocyte maturation defect', 'Oocyte maturation defect 5', 'Oocyte/zygote/embryo maturation arrest 14', 'Oocyte maturation defect 4', 'Tooth agenesis, selective, 4', 'Epilepsy, familial temporal lobe, 2', 'Parietal foramina', 'Brachydactyly, coloboma, and anterior segment dysgenesis', 'Pseudohermaphroditism, female, with skeletal anomalies', 'Spastic paraparesis and deafness', 'Mirror movements 1 and/or agenesis of the corpus callosum', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 2', 'Intellectual developmental disorder, autosomal dominant 64', 'Cardiomyopathy, dilated, with woolly hair, keratoderma, and tooth agenesis', 'Developmental and epileptic encephalopathy 104', 'Adrenal hypoplasia, congenital', 'Premature ovarian failure 1', 'Symphalangism, distal', 'Ceroid lipofuscinosis, neuronal, 3', 'Periodontitis, aggressive, 1', 'Craniotelencephalic dysplasia', 'Microangiopathy and leukoencephalopathy, pontine, autosomal dominant', 'Epileptic encephalopathy, early infantile, 83', 'Dyggve-Melchior-Clausen disease', 'Fryns microphthalmia syndrome', 'Spinocerebellar degeneration with macular corneal dystrophy, congenitalcataracts, and myopia', 'Myasthenic syndrome, congenital, 6, presynaptic', 'Spondyloepimetaphyseal dysplasia, Aggrecan type', 'Brachydactyly, type A4', 'Corneal dystrophy of bowman layer, type II', 'Ovarian dysgenesis 5', 'Ocular motor apraxia', 'Multiple synostoses syndrome 2', 'Minicore myopathy with external ophthalmoplegia', '46,XX sex reversal 5', 'Dystonia 21', 'Neurodevelopmental disorder with hypotonia and gross motor and seech delay', 'Leri-Weill dyschondrosteosis', 'Craniotubular dysplasia, Ikegawa type', 'Intellectual developmental disorder, autosomal dominant 22', 'Deafness, autosomal dominant 39, with dentinogenesis imperfecta 1', 'Stankiewicz-Isidor syndrome', 'Thanatophoric dysplasia, type II', 'Parkinson disease 21', 'Deafness, autosomal recessive 70', 'Chordoma, susceptibility to', 'Neurofibromatosis, type I', 'Keratoderma, palmoplantar, norrbotten Recessive type', 'Epilepsy, nocturnal frontal lobe, type 1', 'Postaxial oligodactyly, tetramelic', 'Pontocerebellar hypoplasia, type 10', 'Kohlschutter-Tonz syndrome-like', 'Spastic ataxia 1, autosomal dominant', 'Microcephaly 14, primary, autosomal recessive', 'Deafness, congenital, with total albinism', 'TELECANTHUS', 'Microphthalmia, isolated 2', 'Intellectual developmental disorder 62', 'Generalized epilepsy with febrile seizures plus, type 1', 'Chorea, childhood-onset, with psychomotor retardation', 'Short stature, developmental delay, and congenital heart defects', 'Deafness, autosomal recessive 84', 'Usher syndrome, type IJ', 'Usher syndrome, type IK', 'Mental retardation, autosomal dominant 36', 'Muscular dystrophy, limb-girdle, type 2H', 'Amelogenesis imperfecta, type IF', 'Retinitis pigmentosa 83', 'Amelogenesis imperfecta, type IH', 'Nephrolithiasis, calcium oxalate, 2, with nephrocalcinosis', 'Boomerang dysplasia', 'Renal hypodysplasia/aplasia 1', 'Supranuclear palsy, progressive atypical', 'Endove syndrome, Limb-Only type', 'Neuronopathy, distal hereditary motor, type IIA', 'Obsessive-Compulsive disorder 1', 'Omodysplasia 2', 'Dupuytren contracture 1', 'Atelosteogenesis, type I', 'Keratoconus posticus circumscriptus', 'External auditory canal, bilateral atresia of, with congenital verticaltalus', 'Dentinogenesis imperfecta, shields type III', 'Gastrointestinal defects and immunodeficiency syndrome 2', 'Leber hereditary optic neuropathy, autosomal recessive', 'Li-Campeau syndrome', 'Thyroid hormone metabolism, abnormal', 'Premature ovarian failure 11', 'Premature ovarian failure 16', 'Dentin dysplasia, type II', 'Crouzon syndrome with acanthosis nigricans', 'Midface hypoplasia, obesity, developmental delay, and neonatal hypotonia', 'Mental retardation, X-linked 12/35', 'Galloway-Mowat syndrome 9', 'Spinocerebellar ataxia, autosomal recessive 3', 'Apnea, obstructive sleep', 'Aniridia, partial, with unilateral renal agenesis and psychomotorretardation', 'Febrile seizures, familial, 6', 'Febrile seizures, familial, 2', 'Febrile seizures, familial, 1', 'Familial idiopathic steroid-resistant nephrotic syndrome', 'Retinitis pigmentosa with or without skeletal anomalies', 'Facial paresis, hereditary congenital, 1', 'Spinal muscular atrophy, type III', 'Mitochondrial complex I deficiency, nuclear type 27', 'Perry syndrome', 'Mental retardation, X-linked 14', 'Dyssegmental dysplasia, Rolland-Desbuquois type', 'Focal segmental glomerulosclerosis 10', 'Charcot-marie-tooth disease, axonal, type 2A2A', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions,autosomal recessive', 'Meckel syndrome 13', 'Joubert syndrome 23', 'Splenogonadal fusion with limb defects and micrognathia', 'Mandibulofacial dysostosis, Guion-Almeida type', 'Spastic paraplegia 41, autosomal dominant', 'Perrault syndrome 3', 'Mirror movements 2', 'Retinitis pigmentosa 39', 'Leber congenital amaurosis 19', 'Retinitis pigmentosa 61', 'Retinitis pigmentosa 26', 'Chromosome 17q23.1-q23.2 deletion syndrome', 'Chromosome 1q21.1 deletion syndrome, 1.35-mb', 'Retinitis pigmentosa 36', 'Desmoid disease, hereditary', 'Neurodevelopmental disorder with cerebellar hypoplasia and spasticity', 'Cerebrocostomandibular syndrome', 'Microcephaly 9, primary, autosomal recessive', 'Griscelli syndrome, type 3', 'Ataxia with myoclonic epilepsy and presenile dementia', 'Usher syndrome, type IE', 'Multiple synostoses syndrome 3', 'Epileptic encephalopathy, early infantile, 41', 'Intellectual developmental disorder, autosomal dominant 48', 'Mucopolysaccharidosis type IX', 'Leukoencephalopathy with vanishing white matter 5, with or without ovarian failure', 'Hyperprolinemia, type I', 'Ehlers-Danlos syndrome, musculocontractural type 1', 'Dyskinesia with orofacial involvement, autosomal recessive', 'Restless legs syndrome, susceptibility to, 1', 'Neurodevelopmental disorder with microcephaly, epilepsy, and brain atrophy', 'Spinocerebellar ataxia 32', 'Myopathy, centronuclear, 2', 'Developmental and epileptic encephalopathy 103', 'Carpal tunnel syndrome 2', 'Seizures, benign familial infantile, 2', 'Helsmoortel-van der Aa syndrome', 'Alport syndrome 2, autosomal recessive', 'Deafness, autosomal recessive 18B', 'Band heterotopia', 'Spastic paraplegia 74, autosomal recessive', 'Charcot-Marie-Tooth disease, type 4B2', 'Parkinsonism-dystonia 3, childhood-onset', 'Joubert syndrome 25', 'Tremor, hereditary essential, 1', 'Aldosteronism, glucocorticoid-remediable', 'Ulnar hypoplasia with mental retardation', 'Developmental and epileptic encephalopathy 110', 'Epidermolysis bullosa with diaphragmatic hernia', 'Orofaciodigital syndrome X', 'Frias syndrome', 'Joubert syndrome 17', 'Spinocerebellar ataxia, autosomal recessive 32', 'Blepharonasofacial malformation syndrome', 'Seizures, benign familial infantile, 5', 'Dystonia 1, torsion, autosomal dominant', 'Neurodevelopmental disorder with hypotonia, stereotypic hand movements, and impaired language', 'Cleft palate, deafness, and oligodontia', 'Fibrosis of extraocular muscles, congenital, 3B', 'Neurodevelopmental disorder with hypotonia and brain abnormalities', 'Kury-Isidor syndrome', 'Neurodevelopmental disorder with dysmorphic facies and cerebellar hypoplasia', 'Parietal foramina 2', 'Myopathy, tubular aggregate, 1', 'Congenital hypotonia, epilepsy, developmental delay, and digital anomalies', 'Epiphyseal dysplasia, multiple, 2', 'Chromosome 10q26 deletion syndrome', 'Kniest dysplasia', 'Hartsfield syndrome', 'Myotubular myopathy with abnormal genital development', 'Achromatopsia 4', 'Bullous dystrophy, hereditary Macular type', 'Glaucoma 3, primary congenital, D', 'Albinism, oculocutaneous, type V', 'Pierre Robin sequence with pectus excavatum and rib and scapular anomalies', 'Schizophrenia 15', 'Fryns syndrome', 'Microcephaly 3, primary, autosomal recessive', 'Neurodevelopmental disorder with growth retardation, dysmorphic facies, and corpus callosum abnormalities', 'Neuropathy, hereditary sensory and autonomic, type VIII', 'Mitochondrial DNA depletion syndrome 16B (neuroophthalmic type)', 'Ovarian dysgenesis 3', 'Young syndrome', 'Atelosteogenesis, type III', 'Ciliary dyskinesia, primary, 39', 'Amelogenesis imperfecta, type IC', 'Cortical dysplasia, complex, with other brain malformations 4', 'Epilepsy, juvenile absence', 'Congenital contractures of the limbs and face, hypotonia, and developmental delay', 'Intellectual developmental disorder, autosomal recessive 14', 'Complement factor I deficiency', 'Mitochondrial complex V (atp synthase) deficiency, nuclear type 4', '3-methylglutaconic aciduria, type III', 'Hydrocephalus, congenital, 3, with brain anomalies', 'Respiratory papillomatosis, juvenile recurrent, congenital', 'Ferguson-Bonni neurodevelopmental syndrome', 'Amelogenesis imperfecta, type IJ', 'Neurodevelopmental disorder with hypotonia, language delay, and skeletal defects with or without seizures', 'Laurin-Sandrow syndrome', 'Cerebellar atrophy, developmental delay, and seizures', 'Fetal akinesia deformation sequence', 'Schizophrenia', 'Spastic paraplegia 31, autosomal dominant', 'Mitochondrial complex V (ATP synthase) deficiency, nuclear type 6', 'Arthrogryposis multiplex congenita, neurogenic, with agenesis of the corpus callosum', 'Deafness, autosomal recessive 9', 'Spinocerebellar ataxia, autosomal recessive 26', 'Bardet-Biedl syndrome 21', 'Epilepsy, hot water, 1', 'Intellectual developmental disorder 61', 'Syndactyly, mesoaxial synostotic, with phalangeal reduction', 'Corneal dystrophy, Reis-Bucklers type', 'Charcot-Marie-Tooth disease, recessive intermediate A', 'Lethal congenital contracture syndrome 11', 'Candidiasis, familial, 9', 'Spastic quadriplegia, retinitis pigmentosa, and mental retardation', 'Spastic paraplegia 14, autosomal recessive', 'Pellagra-Like syndrome', 'Klippel-Feil syndrome, autosomal recessive', 'Spinocerebellar ataxia, autosomal recessive 33', 'Generalized epilepsy with febrile seizures plus, type 7', 'Piebald trait with neurologic defects', 'Myopathy, centronuclear, autosomal dominant', 'Kleefstra syndrome 2', 'Psoriasis 2', 'Chilblain lupus 2', 'Ichthyosis, congenital, autosomal recessive 7', 'Humeroradial synostosishumeroradial/multiple synostosis syndrome', 'Gyrate atrophy of choroid and retina with or without ornithinemia', 'Weiss-Kruszka syndrome', 'Leukoencephalopathy with brainstem and spinal cord involvement and lactate elevation', 'Arthrogryposis, congenital, lower limb, X-linked', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 7', 'Heart and brain malformation syndrome', 'Microcephaly, short stature, and limb abnormalities', 'Sifrim-Hitz-Weiss syndrome', 'Al Kaissi syndrome', 'Acromegaloid facial appearance syndrome', 'Charcot-Marie-Tooth disease, type 4D', 'Megalencephalic leukoencephalopathy with subcortical cysts 2B, remitting, with or without mental retardation', 'Narcolepsy 3', 'Spinocerebellar ataxia, autosomal recessive 31', 'Ichthyosis, congenital, autosomal recessive 14', 'Behr syndrome', 'Ichthyosis, congenital, autosomal recessive 8', 'Neurodevelopmental disorder with spasticity, cataracts, and cerebellar hypoplasia', 'Macular degeneration, age-related, 1', 'Premature ovarian failure 20', 'Premature ovarian failure 14', 'Myopathy, congenital, with tremor', 'Neuropathy, congenital hypomyelinating, 3', 'Charcot-Marie-Tooth disease, axonal, type 2A2B', 'Generalized epilepsy with febrile seizures plus, type 10', 'Neuropathy, hereditary, with liability to pressure palsies', 'Usher syndrome, type 1M', 'Humerofemoral hypoplasia with radiotibial ray deficiency', 'Pachygyria, frontotemporal', 'Aase-Smith syndrome I', 'Tylosis with esophageal cancer', 'Osteopathia striata with cranial sclerosis', 'Split-Hand/foot malformation with long bone deficiency 1', 'Rubinstein-Taybi syndrome 2', 'Acrocapitofemoral dysplasia', 'Immunodeficiency 31A', 'Orofaciodigital syndrome V', 'Choreoathetosis, familial inverted', 'Pontocerebellar hypoplasia, type 16', 'Joubert syndrome 16', 'Leukodystrophy and acquired microcephaly with or without dystonia', 'Frasier syndrome', 'Aicardi-Goutieres syndrome 8', 'Nemaline myopathy 9', 'Myoclonic epilepsy, juvenile, susceptibility to, 1', 'Rhizomelic limb shortening with dysmorphic features', 'Cleft palate, isolated', 'Ciliary dyskinesia, primary, 37', 'Atelosteogenesis, type II', 'Spastic paraplegia 39, autosomal recessive', 'Ischiocoxopodopatellar syndrome with or without pulmonary arterial hypertension', 'Epilepsy, familial focal, with variable foci', 'Spinocerebellar ataxia 41', 'Ectodermal dysplasia 10B, hypohidrotic/hair/tooth type, autosomal recessive', 'Branchial myoclonus with spastic paraparesis and cerebellar ataxia', 'Charcot-Marie-Tooth disease, axonal, type 2S', 'Ehlers-Danlos syndrome, classic type, 2', 'Nephrotic syndrome, type 20', 'Dyskinesia, familial, with facial myokymia', 'Fibular hypoplasia and complex brachydactyly', 'Meniere disease', 'Ichthyosis, spastic quadriplegia, and mental retardation', 'Chorea, remitting, with nystagmus and cataract', 'Tooth malformation', 'Intellectual developmental disorder, autosomal dominant 67', 'Ovarian cancer', 'Hypoparathyroidism, sensorineural deafness, and renal dysplasia', 'Retinitis pigmentosa 90', 'Lung cancer, susceptibility to', 'Retinitis pigmentosa 77', 'Thyroid cancer, nonmedullary, 2', 'Horner syndrome, congenital', 'Intellectual developmental disorder, autosomal recessive 54', 'Ophthalmomandibulomelic dysplasia', 'Epilepsy, progressive myoclonic 1B', 'Arthrogryposis, distal, type 2B2', 'Spinal muscular atrophy, distal, autosomal recessive, 3', 'Clark-Baraitser syndrome', 'Neurodevelopmental disorder with involuntary movements', 'Levator-Medial rectus synkinesis', 'Multiple self-healing squamous epithelioma', 'Cleft larynx, posteriorstridor, congenital, included', 'Spastic paraplegia 64, autosomal recessive', 'Charge-Like syndrome, X-linked', 'Ciliary dyskinesia, primary, 6', 'Deafness, autosomal recessive 35', 'Sebaceous gland hyperplasia, familial presenile', 'Microphthalmia, isolated, with coloboma 4', 'Microphthalmia, isolated 1', 'Ophthalmoplegia, familial static', 'Cryptophthalmos, unilateral or bilateral, isolated', 'Oculomotor-abducens synkinesis', 'Keratosis palmoplantaris striata III', 'Intellectual developmental disorder, autosomal dominant, FRA12A type', 'Retinitis pigmentosa 63', 'Myopia 23, autosomal recessive', 'Reticular dystrophy of retinal pigment epithelium', 'Retinitis pigmentosa 35', 'Cavitary optic disc anomalies', 'Bothnia retinal dystrophy', 'Blepharoptosis, myopia, and ectopia lentis', 'Deafness, autosomal dominant 4B', 'Foveal hypoplasia and presenile cataract syndromefoveal hypoplasia, isolated, included', 'Deafness, autosomal recessive 101', 'TRITANOPIA', 'Ichthyosis hystrix gravior', 'Retinopathy, pericentral pigmentary, autosomal recessive', 'Epidermolysis bullosa, junctional 2A, intermediate', 'Spastic paraplegia, optic atrophy, and dementia', 'Deafness, autosomal dominant 50', 'Mammary-Digital-Nail syndrome', 'Glaucoma-Related pigment dispersion syndrome', 'Cataract, posterior polar, 1 ctpa cataract, congenital total, included', 'Branchiootic syndrome 2', 'Renal, genital, and middle ear anomalies', 'Deafness, autosomal dominant 77', 'Erythrokeratodermia variabilis et progressiva 7', 'Epidermolysis bullosa dystrophica neurotrophica', 'CHANDS', 'Sveinsson chorioretinal atrophy', 'Odontomicronychial dysplasia', 'Glaucoma 1, open angle, F', 'Deafness, neurosensory, autosomal recessive 2', 'Hemifacial hyperplasia with strabismus', 'Auditory neuropathy, autosomal dominant 2', 'Deafness, autosomal dominant 72', 'Porokeratosis 3, multiple types', 'Deafness, autosomal recessive 103', 'Deafness, autosomal dominant 87', 'Deafness, autosomal dominant 41', 'Glaucoma 1, open angle, P', 'Woolly hair, hypotrichosis, everted lower lip, and outstanding ears', 'Deafness, autosomal dominant 65', 'Deafness, autosomal recessive 118, with cochlear aplasia', 'Deafness, autosomal dominant 56', 'Deafness, neurosensory, autosomal recessive 7', 'Focal facial dermal dysplasia 1, Brauer type', 'Myopia 28, autosomal recessive', 'Dilution, pigmentary', 'Corneal endothelial dystrophy, autosomal recessive', '46,xy sex reversal 8', 'Keratoconus 9', 'Rutherfurd syndrome', 'Microphthalmia, isolated 3', 'Reticulate acropigmentation of Kitamura', 'Porokeratosis 8, disseminated superficial Actinic type', 'Peeling skin syndrome 5', 'Uncombable hair syndrome 1', 'Uncombable hair syndrome 2', 'LARYNGOMALACIA', 'Ectopia lentis, familial', 'Deafness and myopia', 'Palmoplantar keratoderma, nonepidermolytic, focal or diffuse', 'Microphthalmia, isolated, with coloboma 7', 'Deafness, autosomal dominant 23', 'Melanoma, cutaneous malignant, susceptibility to, 3', 'Ectodermal dysplasia 5, Hair/nail type', 'Porokeratosis 1, multiple types', 'Epidermolysis bullosa simplex 2C, localized', 'Extraoral halitosis due to MTO deficiency', 'Ciliary dyskinesia, primary, 44', 'Premature ovarian failure 19', 'Porokeratosis 9, multiple types', 'Cataract 3, multiple types', 'Cataract, multiple types', 'Dowling-Degos disease 2', 'Spermatogenic failure 11', 'Cataract 15, multiple types', 'Glaucoma 3, primary congenital, A', 'Deafness, autosomal dominant 83', 'Spermatogenic failure 71', 'Spermatogenic failure 32', 'Cataract 30, multiple types', 'Spermatogenic failure 50', 'Nephrotic syndrome, type 21', 'Episodic kinesigenic dyskinesia 3', 'Spermatogenic failure 73', 'Spermatogenic failure 74', 'Spermatogenic failure 60', 'Spermatogenic failure 59', 'Spermatogenic failure 1', 'Vas deferens, congenital bilateral aplasia of, X-linked', 'Spermatogenic failure 22', 'Spermatogenic failure 21', 'Spermatogenic failure 16', 'Male infertility with large-headed, multiflagellar, polyploid spermatozoa', 'Spermatogenic failure 29', 'Cowden-Like syndrome', 'Deafness, autosomal recessive 76', 'Bainbridge-Ropers syndrome', 'Keratosis, focal palmoplantar and gingival', 'Wilms tumor 6', 'Joubert syndrome 40', 'Synpolydactyly 1', 'Nabais Sa-de Vries syndrome, type 1', 'Amelogenesis imperfecta, type IIA5', 'Spastic paraplegia 20, autosomal recessive', 'Membranous cranial ossification, delayed', 'Spondyloepiphyseal dysplasia tarda with characteristic facies', 'Leukoencephalopathy with vanishing white matter 3, with or without ovarian failure', 'Parkinson disease 24, autosomal dominant, susceptibility to', 'Mental retardation, autosomal dominant 42', 'Chiari malformation type I', 'Paragangliomas 2', 'Chromosome 3q29 duplication syndrome', 'Antley-Bixler syndrome with genital anomalies and disordered steroidogenesis', 'Mental retardation, X-linked 41', 'Supranuclear palsy, progressive, 2', 'Amelogenesis imperfecta, type IA', 'Epilepsy, familial temporal lobe, 4', 'Developmental delay with short stature, dysmorphic facial features, and sparse hair 2', 'Epilepsy, progressive myoclonic 3, with or without intracellular inclusions', 'Leopard syndrome 2', 'Spinocerebellar ataxia 45', 'Myasthenic syndrome, congenital, 15', 'Mega-corpus-callosum syndrome with cerebellar hypoplasia and cortical malformations', 'Ichthyosis with alopecia, eclabion, ectropion, and mental retardation', 'Neutropenia, severe congenital, X-linked', 'Thyroid hormonogenesis, genetic defect in, 3', 'Sweeney-Cox syndrome', 'Aromatase deficiency', 'Arthrogryposis, distal, type 10', 'Deafness, autosomal recessive 119', 'Kleefstra syndrome', 'Acne inversa, familial, 2, with or without dowling-degos disease', 'Microcephaly, seizures, and developmental delay', 'Cerebellar ataxia, mental retardation, and dysequilibrium syndrome4', 'Chromosome 17p13.3, telomeric, duplication syndrome', 'Rhizomelic chondrodysplasia punctata, type 5', 'Oculogastrointestinal neurodevelopmental syndrome', 'Charcot-Marie-Tooth disease, type 4B3', 'Dystonia 16', 'Cerebral palsy, ataxic, autosomal recessive', 'Optic atrophy, hearing loss, and peripheral neuropathy, autosomaldominant', 'Charcot-Marie-Tooth disease, axonal, type 2B2', 'Epilepsy, childhood absence, susceptibility to, 1', 'Colorectal cancer, hereditary nonpolyposis, type 8', 'Ciliary dyskinesia, primary, 41', 'Hypogonadism-Cataract syndrome', 'Febrile seizures, familial, 5', 'Febrile seizures, familial, 4', 'Short stature, facial dysmorphism, and skeletal anomalies with or without cardiac anomalies', 'Spermatogenic failure 75', 'Retinal dystrophy with or without macular staphyloma', 'Charcot-Marie-Tooth disease, axonal, type 2U', 'Dyssegmental dysplasia, Silverman-Handmaker type', 'Intellectual developmental disorder, autosomal dominant 63, with macrocephaly', 'Schizophrenia 1', 'Retinitis pigmentosa 54', 'Retinitis pigmentosa 20', 'Retinitis pigmentosa 33', 'Retinitis pigmentosa 30', 'Retinitis pigmentosa 49', 'Retinitis pigmentosa 81', 'Retinitis pigmentosa 40', 'Optic atrophy with negative electroretinograms', 'Acromesomelic dysplasia, Maroteaux type', 'Schuurs-Hoeijmakers syndrome', 'Dystonia 12', 'Parkinsonism-Dystonia, infantile, 2', 'Palmoplantar carcinoma, multiple self-healing', 'Kahrizi syndrome', 'Spinocerebellar ataxia 38', 'Seizures, benign familial neonatal, 1', 'Split-Hand with congenital nystagmus, fundal changes, and cataracts', 'Intellectual developmental disorder with short stature and behavioral abnormalities', 'Spastic paraplegia 24, autosomal recessive', 'Mast syndrome', 'Hyperekplexia 4', 'Ectodermal dysplasia-syndactyly syndrome 2', 'Shaheen syndrome', 'Cornelia de Lange syndrome 4', 'Schizophrenia 10', 'Spastic paraplegia 42, autosomal dominant', 'Intellectual developmental disorder, autosomal recessive 69', 'Epilepsy idiopathic generalized, susceptibility to, 8', 'Multiple endocrine neoplasia, type IV', 'Cerebellar ataxia, deafness, and narcolepsy, autosomal dominant', 'Tukel syndrome', 'Pontocerebellar hypoplasia, type 8', 'Neurodegeneration with developmental delay, early respiratory failure, myoclonic seizures, and brain abnormalities', 'Acheiropody', 'Schizophrenia 19', 'Fourth cranial nerve palsy, familial congenital', 'Neurodevelopmental disorder with visual defects and brain anomalies', 'Griscelli syndrome, type 1', 'Polymicrogyria, perisylvian, with cerebellar hypoplasia and arthrogryposis', 'Xeroderma pigmentosum, variant type', 'Microphthalmia, syndromic 6', 'Dystonia 13, torsion', 'Hypogonadotropic hypogonadism 14 with or without anosmia', 'Imagawa-Matsumoto syndrome', 'Developmental and epileptic encephalopathy 65', 'Cerebral arteriopathy, autosomal dominant, with subcortical infarctsand leukoencephalopathy', 'Intellectual developmental disorder, autosomal recessive 3', 'Parkinson disease 18', 'Noonan syndrome 13', 'Axenfeld-Rieger anomaly with partially absent eye muscles, distinctive face, hydrocephaly, and skeletal abnormalities', 'Cortical malformations, occipital', 'Cortical dysplasia, complex, with other brain malformations 2', 'Intellectual disability-hypotonic facies syndrome, X-linked', 'Seckel syndrome 7', 'Neurodevelopmental disorder with microcephaly, hypotonia, and absent language', 'Basal ganglia calcification, idiopathic, 7, autosomal recessive', 'Global developmental delay with or without impaired intellectual development', 'Hyperostosis cranialis interna', 'Neuronopathy, distal hereditary motor, type IX', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 8', 'Retinitis pigmentosa 17', 'Developmental delay, intellectual disability, obesity, and dysmorphic features', 'Cone-Rod dystrophy 17', 'Cone dystrophy 3', 'Parc syndrome', 'Alopecia-Contractures-Dwarfism mental retardation syndrome', 'Microphthalmia/coloboma and skeletal dysplasia syndrome', 'Neurodevelopmental disorder with cerebellar atrophy and with or without seizures', 'Amelogenesis imperfecta, hypomaturation type, iia1', 'Tibial muscular dystrophy, tardive', 'Neuropathy, hereditary sensory, type IE', 'Skeletal defects, genital hypoplasia, and mental retardation', 'Developmental and epileptic encephalopathy 91', 'Spinocerebellar ataxia 42', 'Glycine encephalopathy', 'Deafness, conductive, with ptosis and skeletal anomalies', 'C1q deficiency 3', 'Neurodevelopmental disorder and language delay with or without structural brain abnormalities', 'Weill-Marchesani syndrome 4', 'Arthrogryposis, mental retardation, and seizures', 'Cerebral sclerosis, diffuse, Scholz type', 'Chromosome 17Q12 duplication syndrome', 'Retinitis pigmentosa 14', 'Microphthalmia, isolated, with coloboma 6', 'Neurooculorenal syndrome', 'Episodic kinesigenic dyskinesia 1', 'Spastic paraplegia 63, autosomal recessive', 'Epidermolysis bullosa, junctional, with pyloric atresia', 'Encephalopathy, familial, with neuroserpin inclusion bodies', 'Cleft palate, proliferative retinopathy, and developmental delay', 'Cone-rod dystrophy 15', 'WAGRO syndrome', 'Mental retardation, autosomal dominant 39', 'Leber congenital amaurosis 6', 'Charcot-Marie-Tooth disease, demyelinating, type 1D', 'Bardet-Biedl syndrome 16', 'Coloboma, ocular, with or without hearing impairment, cleft lip/palate, and/or mental retardation', 'Fibular aplasia or hypoplasia, femoral bowing and poly-, syn-, and oligodactyly', 'Spastic paraplegia 33, autosomal dominant', 'Spinocerebellar ataxia 7', 'Neurodevelopmental disorder with dysmorphic facies and distal skeletal anomalies', 'Ciliary dyskinesia, primary, 18', 'Erythrokeratodermia variabilis et progressiva 3', 'Tetraamelia syndrome 2', 'Spinocerebellar ataxia, autosomal recessive 27', 'Seizures, benign familial infantile, 1', 'Mental retardation, X-linked, syndromic, Bain type', 'Usher syndrome, type IF', 'Macular degeneration, age-related, 13', '46,xy sex reversal 4', 'Huntington disease', 'Arboleda-Tham syndrome', 'Neurooculocardiogenitourinary syndrome', 'Ichthyosis, congenital, autosomal recessive 13', 'Brachymorphism-Onychodysplasia-Dysphalangism syndrome', 'Epiphyseal dysplasia, multiple, with myopia and conductive deafness', 'Charcot-Marie-Tooth disease, axonal, type 2B', 'Premature ovarian failure 9', 'Hartnup disorder', 'Ciliary dyskinesia, primary, 45', 'Mental retardation syndrome, Mietens-Weber type', 'Spastic paraplegia, sensorineural deafness, mental retardation, and', 'Systemic lupus erythematosus 16', 'Microphthalmia, syndromic 11', 'Multiple mitochondrial dysfunctions syndrome 4', 'Facial clefting, oblique, 1', 'Brachydactyly, type A1', 'Polydactyly, postaxial, type A6', 'Luscan-Lumish syndrome', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 5', 'Hypertelorism, microtia, facial clefting syndrome', 'Cardioacrofacial dysplasia 1', 'Cortical dysplasia, complex, with other brain malformations 5', 'Ritscher-Schinzel syndrome 3', 'Rett syndrome', 'Pterygia, mental retardation, and distinctive craniofacial features', 'Proliferative vasculopathy and hydranencephaly-hydrocephaly syndrome', 'Papillorenal syndrome', 'Epidermolysis bullosa, junctional 6, with pyloric atresia', 'Temtamy syndrome', 'Spondyloepiphyseal dysplasia congenita', 'Epileptic encephalopathy, early infantile, 71', 'Intellectual developmental disorder, autosomal dominant 23', 'Spinocerebellar ataxia 46', 'Spastic paraplegia 89, autosomal recessive', 'Poirier-Bienvenu neurodevelopmental syndrome', 'Wilms tumor, aniridia, genitourinary anomalies, and mental retardationsyndrome', 'CDAGS syndrome', 'Axenfeld-rieger syndrome, type 2', 'Spondylometaepiphyseal dysplasia, short Limb-Hand type', 'Epilepsy, familial adult myoclonic, 5', 'Omodysplasia 1', 'Jackson-Weiss syndrome', 'Treacher Collins syndrome 3', 'Spinocerebellar ataxia with rigidity and peripheral neuropathy', 'Craniosynostosis 2', 'Chromosome 11P13 deletion syndrome, distal', 'Acromesomelic dysplasia, Hunter-Thompson type', 'Rippling muscle disease 1', 'Klippel-Feil syndrome 1, autosomal dominant', 'Mental retardation, microcephaly, growth retardation, joint contractures,and facial dysmorphism', 'Weyers acrofacial dysostosis', 'Absent eyebrows and eyelashes with mental retardation', 'Peripheral neuropathy, autosomal recessive, with or without impaired intellectual development', 'Charcot-marie-tooth disease, recessive intermediate B', 'Holoprosencephaly 4', 'Congenital disorder of glycosylation, type Iw, autosomal dominant', 'Trichothiodystrophy 2, photosensitive', 'Kyphomelic dysplasia', 'Spinocerebellar ataxia, autosomal recessive 12', 'Neurodevelopmental disorder with microcephaly, cortical malformations, and spasticity', 'Pontocerebellar hypoplasia, type 12', 'Huriez syndrome', 'Trichodental dysplasia', 'Parkinson disease 17', 'Solitary median maxillary central incisor', 'Charcot-Marie-Tooth disease, dominant intermediate G', 'Joubert syndrome 31', 'Iridogoniodysgenesis, type 2', 'Ophthalmoplegia totalis with ptosis and miosis', 'Microphthalmia with hyperopia, retinal degeneration, macrophakia,and dental anomalies', 'Waardenburg syndrome, type IIB', 'Hypermanganesemia with dystonia 2', 'Ophthalmoplegia, familial total, with iris transillumination', 'Newfoundland rod-cone dystrophy', 'Infantile cataract, skin abnormalities, glutamate excess, and impaired intellectual development', 'Intellectual developmental disorder with or without epilepsy or cerebellar ataxia', 'Duane retraction syndrome 3 with or without deafness', 'Cone-Rod dystrophy 8', 'Stickler sydrome, type I, nonsyndromic ocular', 'Usher syndrome, type IID', 'Epidermolysis bullosa simplex 4, localized or generalized intermediate, autosomal recessive', 'Cone-rod dystrophy 7', 'Tooth agenesis, selective, 8', 'Hypertelorism, preauricular sinus, punctal pits, and deafness', 'Retinitis pigmentosa 28', 'Night blindness, congenital stationary, type 1G', 'Corneal dystrophy, lattice type IIIA', 'Macular dystrophy, retinal, 3', 'Stargardt disease 3', 'Senior-Loken syndrome 6', 'Microphthalmia, isolated, with cataract 1', 'Bestrophinopathy, autosomal recessive', 'Corneal dystrophy, Avellino type', 'Deafness, autosomal dominant 86', 'Epidermolysis bullosa, junctional 3A, intermediate', 'Branchiootorenal syndrome 2', 'Pterygium colli, isolated', 'Dowling-Degos disease 4', 'Glaucoma, primary closed-angle', 'Bart-Pumphrey syndrome', 'Albinism, oculocutaneous, type III', 'Pachyonychia congenita, type 1', 'Groenouw type I corneal dystrophy', 'Retinitis pigmentosa 96, autosomal dominant', 'Deafness, autosomal recessive 37', 'Anterior segment dysgenesis 6, multiple subtypes', 'Retinal dystrophy and iris coloboma with or without congenital cataract', 'Ovarian dysgenesis 6', 'Deafness, autosomal dominant 64', 'Deafness, autosomal dominant 33', 'Retinitis pigmentosa inversa with deafness', 'Ectodermal dysplasia 6, Hair/nail type', 'Cataract 49', 'Hypotrichosis 11', 'Epidermolysis bullosa simplex, Weber-Cockayne type', 'Hypogonadism, malehypogonadism and testicular atrophy, included', 'Macular dystrophy, patterned, 3', 'Night blindness, congenital stationary, autosomal dominant 1', 'Uncombable hair syndrome 3', 'Trichothiodystrophy 7, nonphotosensitive', 'Palmoplantar keratoderma, punctate type IA', 'Cataract, lamellar', 'Hypothyroidism, congenital, nongoitrous, 1', 'Myopia 5', 'Thyroid hormonogenesis, genetic defect in, 2A', 'Cataract, congenital zonular, with sutural opacities', 'Deafness, autosomal recessive 4, with enlarged vestibular aqueduct', 'Deafness, autosomal recessive 32, with or without immotile sperm', 'Thyroid cancer, nonmedullary, 4', 'Retinitis pigmentosa 87 with choroidal involvement', 'Cataract 1, multiple types', 'Aplasia of lacrimal and salivary glands', 'Lower urinary tract obstruction, congenital', 'Deafness, autosomal dominant 84', 'Basal laminar drusen', 'Nephrotic syndrome, type 26', 'Deafness, autosomal dominant 80', 'Cataract 20, multiple types', 'Spermatogenic failure 10', 'Adrenal hypoplasia, congenital, with absent pituitary luteinizinghormone', 'Spermatogenic failure 81', 'Spermatogenic failure 47', 'Spermatogenic failure 41', 'Spermatogenic failure 45', 'Spermatogenic failure 43', 'Spermatogenic failure 78', 'Spermatogenic failure 48', 'Spermatogenic failure 70', 'Spermatogenic failure 64', 'Spermatogenic failure 79', 'Oocyte maturation defect 10', 'Spermatogenic failure 7', 'Spermatogenic failure 86', 'Spermatogenic failure 57', 'Spermatogenic failure 63', 'Spermatogenic failure 83', 'Spermatogenic failure 20', 'Focal segmental glomerulosclerosis 9', 'Spermatogenic failure 24', 'Jawad syndrome', 'Intellectual developmental disorder, autosomal recessive 78', 'Neurofibromatosis, familial spinal', 'Myasthenic syndrome, congenital, 8', 'Microcephalic primordial dwarfism, Montreal type', 'Robin sequence with cleft mandible and limb anomalies', 'Cortical dysplasia, complex, with other brain malformations 11', 'Spermatogenic failure, X-linked, 4', 'Febrile seizures, familial, 8', 'Premature ovarian failure 2B', 'Leukoencephalopathy, diffuse hereditary, with spheroids', 'Thumb, hypoplastic, with choroid coloboma, poorly developed antihelix,and deafness', 'Spinocerebellar ataxia 18', 'Gilles de la tourette syndrome', 'Parkinson disease 1, autosomal dominant', 'Spinal muscular atrophy, infantile, James type', 'Intellectual developmental disorder, autosomal dominant 69', 'Sabinas brittle hair syndrome', 'Deafness, conductive, with malformed external ear', 'Heimler syndrome 2', 'Short stature, optic nerve atrophy, and pelger-huet anomaly', 'Intellectual developmental disorder, autosomal recessive 63', 'Brachydactyly, type A2', 'Glycine encephalopathy with normal serum glycine', 'Histidinuria due to A renal tubular defect', 'Spongiform encephalopathy with neuropsychiatric features', 'Retinitis pigmentosa-50', 'Van bogaert-hozay syndrome', 'Retinopathy, pericentral pigmentary, dominant', 'Retinitis pigmentosa 46', 'Pick disease of brain', 'Pallister-Hall-like syndrome', 'Ulnar-Mammary syndrome', 'Intellectual developmental disorder, autosomal recessive 46', 'Mental retardation, autosomal dominant 31', '46,xy sex reversal 9', 'Candidiasis, familial, 8', 'Zaki syndrome', 'CEBALID syndrome', 'Spinocerebellar ataxia 4', 'Premature ovarian failure 15', 'Premature ovarian failure 13', 'Mental retardation syndrome, X-linked, Armfield type', 'Neurodevelopmental disorder with language delay and behavioral abnormalities, with or without seizures', 'Neurodevelopmental disorder with dysmorphic facies and skeletal and brain abnormalities', 'Gabriele-De vries syndrome', 'Ciliary dyskinesia, primary, 17', 'Epileptic encephalopathy, early infantile, 63', 'Earlobes, thickened, with conductive deafness from incudostapedialabnormalities', 'Bosch-Boonstra-Schaaf optic atrophy syndrome', 'Nephropathy due to CFHR5 deficiency', 'Spastic paraplegia 8, autosomal dominant', 'Neurodevelopmental disorder with microcephaly, short stature, and speech delay', 'Cortical dysplasia, complex, with other brain malformations 6', 'Pseudotrisomy 13 syndrome', 'Optic atrophy 2', 'Symphalangism, distal, with microdontia, dental pulp stones, and narrowedzygomatic arch', 'Vitreoretinochoroidopathy', 'Developmental delay, hypotonia, musculoskeletal defects, and behavioral abnormalities', 'Generalized epilepsy with febrile seizures plus, type 4', 'Cerebellar ataxia, mental retardation, and dysequilibrium syndrome3', 'Phosphoribosylpyrophosphate synthetase superactivity', 'Neurodevelopmental disorder with short stature, prominent forehead, and feeding difficulties', 'Piebald trait', 'Chromosome 1p35 deletion syndrome', 'Episodic ataxia, type 8', 'Microphthalmia, syndromic 3', 'Mental retardation with optic atrophy, deafness, and seizures', 'Catel-Manzke syndrome', 'Arthrogryposis and ectodermal dysplasia', 'Spinocerebellar ataxia 30', 'Intellectual developmental disorder, autosomal dominant 56', 'Xeroderma pigmentosum, complementation group B', 'Ataxia, sensory, autosomal dominant', 'Stickler syndrome, type III', 'Symphalangism, proximal, 1A', 'Periventricular nodular heterotopia 6', 'Larsen syndrome', 'Cerebellar ataxia, Cayman type', 'Baller-Gerold syndrome', 'Epileptic encephalopathy, early infantile, 45', 'Intellectual developmental disorder with autism and speech delay', 'Dystonia, early-onset, and/or spastic paraplegia', 'Basel-Vanagaite-Smirin-Yosef syndrome', 'Dystonia 25', 'Mental retardation, X-linked 107', 'Ovarian dysgenesis 10', 'Joubert syndrome 20', 'Axenfeld-Rieger syndrome, type 3', 'Alkuraya-Kucinskas syndrome', 'Microcephaly, primary autosomal recessive, 6', 'Vertebral, cardiac, tracheoesophageal, renal, and limb defects', 'Pierre Robin sequence with facial and digital anomalies', 'Hypogonadotropic hypogonadism 5 with or without anosmia', 'Ovarian dysgenesis 9', 'Apert syndrome', 'Joubert syndrome 1', 'Spinocerebellar ataxia 19', 'Hypogonadotropic hypogonadism 13 with or without anosmia', 'Cornelia de Lange syndrome 5', 'Neurodevelopmental disorder with microcephaly and gray sclerae', 'Intellectual developmental disorder, autosomal recessive 2', 'Radial ray hypoplasia with choanal atresia', 'Neuronopathy, distal hereditary motor, type IIB', 'Intellectual developmental disorder, autosomal recessive 65', 'Martsolf syndrome 1', 'Opticocochleodentate degeneration', 'Acid-labile subunit, deficiency of', 'Charcot-Marie-Tooth disease, axonal, type 2W', 'Craniosynostosis 3', 'Chromosome 15q13.3 microdeletion syndrome', 'Microcephaly 7, primary, autosomal recessive', 'Retinitis pigmentosa 11', 'Trigonocephaly 1', 'Renal and mullerian duct hypoplasia', 'Microcephaly 5, primary, autosomal recessive', 'Bradyopsia 2', 'Amaurosis congenita, cone-rod type, with congenital hypertrichosis', 'Cone-rod dystrophy 21', 'Optic atrophy 6', 'Lissencephaly, X-linked, 1', 'Charcot-Marie-Tooth disease, axonal, type 2N', 'Optic atrophy 12', 'Meesmann corneal dystrophy 1', 'Alacrima, congenital', 'Neuropathy, congenital hypomyelinating, 2', 'Fetal akinesia syndrome, X-linked', 'Orofaciodigital syndrome XVI', 'Holoprosencephaly 14', 'Leukoencephalopathy with vanishing white matter 2, with or without ovarian failure', 'Keratoendotheliitis fugax hereditaria', 'Intellectual developmental disorder, autosomal recessive 37', 'Joubert syndrome 36', 'Seizures, benign familial infantile, 3', 'Even-Plus syndrome', 'Neurodevelopmental disorder with ataxic gait, absent speech, and decreased cortical white matter', 'Neurodevelopmental disorder with infantile epileptic spasms', 'Spinocerebellar ataxia 31', 'Baralle-Macken syndrome', 'Alacrima, achalasia, and mental retardation syndrome', 'Cone-Rod dystrophy 10', 'Deafness, autosomal recessive 104', 'Coenzyme Q10 deficiency, primary, 6', 'Adams-Oliver syndrome 3', 'Coffin-Siris syndrome 2', 'Hypogonadotropic hypogonadism 6 with or without anosmia', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 1', 'Charcot-Marie-Tooth disease, demyelinating, type 1G', 'Keratosis pilaris atrophicans', 'Auditory neuropathy, autosomal dominant, 1', 'Ichthyosis, annular epidermolytic 2', 'Myasthenic syndrome, congenital, 2A, slow-channel', 'Hypotrichosis 6', 'Spinal muscular atrophy, distal, autosomal recessive, 6', 'Epilepsy, familial temporal lobe, 8', 'Xeroderma pigmentosum, group C', 'Chorea, benign hereditary', 'Limb-Mammary syndrome', 'Fibrosis of extraocular muscles, congenital, 3A, with or without extraocularinvolvement', 'Syringomyelia, isolated', 'Acrofacial dysostosis, Catania type', 'Craniosynostosis 6', 'Spastic paraplegia, optic atrophy, and neuropathy', 'Craniosynostosis-Mental retardation-clefting syndrome', 'Spastic paraplegia 27, autosomal recessive', 'Mitochondrial complex III deficiency, nuclear type 2', 'Spinal muscular atrophy, lower extremity-predominant, 2, autosomaldominant', 'Optic atrophy 16', 'Intellectual developmental disorder, autosomal recessive 77', 'Spondyloepiphyseal dysplasia-brachydactyly and distinctive speech', 'Achalasia-Addisonianism-Alacrima syndrome', 'Encephalopathy, progressive, with amyotrophy and optic atrophy', 'Developmental delay with dysmorphic facies and dental anomalies', 'Spastic paraplegia 88, autosomal dominant', 'Bare lymphocyte syndrome, type I', 'Epileptic encephalopathy, early infantile, 3', 'Focal segmental glomerulosclerosis and neurodevelopmental syndrome', 'Spinocerebellar ataxia, autosomal recessive 8', 'Genitopatellar syndrome', 'Pontocerebellar hypoplasia, type 1F', 'Ciliary dyskinesia, primary, 29', 'Basal ganglia calcification, idiopathic, 1', 'Premature ovarian failure 17', 'Spermatogenic failure 28', 'Branchiooculofacial syndrome', 'Nephronophthisis 20', 'Otospondylomegaepiphyseal dysplasia', 'Leukodystrophy, hypomyelinating, 25', 'Dystonia 7, torsion', 'Peeling skin syndrome 6', 'Microcephaly, facial dysmorphism, renal agenesis, and ambiguous genitalia syndrome', 'Retinitis pigmentosa, deafness, mental retardation, and hypogonadism', 'Spastic paraplegia 11, autosomal recessive', 'Epidermolysis bullosa simplex with pyloric atresia', 'Warsaw breakage syndrome', 'Spastic paraplegia 56, autosomal recessive', 'Ciliary dyskinesia with defective radial spokes', 'Optic nerve hypoplasia', 'Burn-Mckeown syndrome', 'Structural brain anomalies with impaired intellectual development and craniosynostosis', 'Glass syndrome', 'Hypogonadotropic hypogonadism 10 with or without anosmia', 'Cardiofaciocutaneous syndrome 2', 'Congenital disorder of deglycosylation 2', 'Intellectual developmental disorder, autosomal dominant 6, with or without seizures', 'Ciliary dyskinesia, primary, 47, and lissencephaly', 'Coloboma of macula and skeletal anomalies', 'Myasthenic syndrome, congenital, 13, with tubular aggregates', 'Birdshot chorioretinopathy', 'Pulmonary alveolar microlithiasis', 'Xq25 duplication syndrome', 'Global developmental delay with speech and behavioral abnormalities', 'Microcephaly and chorioretinopathy, autosomal recessive, 3', 'Intellectual developmental disorder, X-linked syndromic, Claes-Jensen type', 'Joubert syndrome 22', 'Parkinson disease 20, early-onset', 'Hypotrichosis-Lymphedema-Telangiectasia-Renal defect syndrome', 'Nemaline myopathy 5, Amish type', 'Charcot-Marie-Tooth disease, axonal, type 2Q', 'Spastic paraplegia 73, autosomal dominant', 'Ectodermal dysplasia, hypohidrotic, with hypothyroidism and ciliarydyskinesia', 'Macular degeneration, age-related, 3', 'Usmani-Riazuddin syndrome, autosomal recessive', 'Intellectual developmental disorder, autosomal dominant 13', 'Spastic paraplegia 62, autosomal recessive', 'Pontocerebellar hypoplasia, type 2D', 'Coloboma, ocular', 'Brunet-Wagner neurodevelopmental syndrome', 'Ciliary dyskinesia, primary, 3, with or without situs inversus', 'Chondrodysplasia with joint dislocations, Gpapp type', 'Epileptic encephalopathy, early infantile, 7', 'Ciliary dyskinesia, primary, 50', 'Acromesomelic dysplasia 2A', 'Bardet-Biedl syndrome 17', 'Neuropathy, congenital, with arthrogryposis multiplex', 'Epileptic encephalopathy, early infantile, 79', 'Melanoma, cutaneous malignant', 'Albinism-Deafness syndrome', 'Developmental and epileptic encephalopathy 12', 'Facial paresis, hereditary congenital, 3', 'Intellectual developmental disorder, autosomal dominant 53', 'Visual impairment and progressive phthisis bulbi', 'Developmental and epileptic encephalopathy 106', 'Microcoria, congenital', 'Aniridia 3', 'Cataract 42', 'Sorsby fundus dystrophy', 'Nizon-Isidor syndrome', 'Dystonia 9', 'Hypotrichosis 3', 'DERMOODONTODYSPLASIA', 'Night blindness, congenital stationary, type 1E', 'Surfactant metabolism dysfunction, pulmonary, 5', 'Chorioretinal atrophy, progressive bifocal', 'Macular dystrophy, vitelliform, 2', 'Ring dermoid of cornea', 'Nystagmus 2, congenital, autosomal dominant', 'Retinitis pigmentosa 47', 'Anterior segment dysgenesis 1', 'Retinitis pigmentosa 45', 'Macular dystrophy, vitelliform, 1', 'Hypomyelination with brainstem and spinal cord involvement and legspasticity', 'Leber congenital amaurosis-3 (LCA3)/Retinitis pigmentosa, juvenile, autosomal recessive', 'Nanophthalmos 4', 'Microtia with meatal atresia and conductive deafness', 'Palmoplantar keratoderma, nonepidermolytic, focal 1', 'Otosclerosis 7', 'Macular dystrophy, retinal, 4', 'Basaloid follicular hamartoma syndrome, generalized, autosomal dominant', 'Corneal dystrophy, posterior amorphous', 'Vohwinkel syndrome', 'Hypotrichosis, congenital, with juvenile macular dystrophy', 'Exudative vitreoretinopathy 3', 'Nystagmus 1, congenital, X-linked', 'Microcornea, rod-cone dystrophy, cataract, and posterior staphyloma 1', 'Renal hypodysplasia/aplasia 2', 'Macular dystrophy, retinal, 1, north Carolina type', 'Snowflake vitreoretinal degeneration', 'Woolly hair, autosomal recessive 3', 'Neurodevelopmental disorder with or without anomalies of the brain, eye, or heart', 'Corneal endothelial dystrophy and perceptive deafness', 'Deafness, autosomal dominant 82', 'Microphthalmia, isolated, with coloboma 10', 'Hypotrichosis 14', 'Mitochondrial complex I deficiency, nuclear type 12', 'Vohwinkel syndrome, variant form', 'Renal dysplasia, cystic, susceptibility to', 'Macular dystrophy, vitelliform, 4', 'Branchiootic syndrome 3', 'Menke-Hennekam syndrome 2', 'Xeroderma pigmentosum, complementation group D', 'Alopecia universalis congenita', 'van der Woude syndrome 1', 'Premature ovarian failure 5', 'Spermatogenic failure 30', 'Nephrotic syndrome, type 24', 'Spermatogenic failure 40', 'Spermatogenic failure, X-linked, 7', 'Spermatogenic failure 49', 'Spermatogenic failure 19', 'Spermatogenic failure 82', 'Spermatogenic failure 85', 'Spermatogenic failure 35', 'Spermatogenic failure 25', 'Cardioacrofacial dysplasia 2', 'Linear skin defects with multiple congenital anomalies 3', 'Segawa syndrome, autosomal recessive', 'Retinitis pigmentosa 75', 'Retinitis pigmentosa 84', 'Retinitis pigmentosa 95', 'Cone-Rod dystrophy 1', 'Facial dysmorphism, hypertrichosis, epilepsy, intellectual/developmental delay, and gingival overgrowth syndrome', 'Rudiger syndrome', 'Intellectual developmental disorder with speech delay, autism, and dysmorphic facies', 'Hair defect with photosensitivity and mental retardation', 'Intellectual developmental disorder, autosomal recessive 13', 'Intellectual developmental disorder with epilepsy, behavioral abnormalities, and coarse facies', 'Chromosome 15q11.2 deletion syndrome', 'Dentin dysplasia, type I, with microdontia and misshapen teeth', 'Multinucleated neurons, anhydramnios, renal dysplasia, cerebellar hypoplasia, and hydranencephaly', 'Neu-Laxova syndrome 1', 'Intellectual developmental disorder, autosomal dominant 40', 'Spinocerebellar ataxia, autosomal recessive 6', 'Epilepsy, juvenile myoclonic, susceptibility to, 10', 'Leukodystrophy, hypomyelinating, 5', 'Chromosome 19p13.13 deletion syndrome', 'Ciliary dyskinesia, primary, 13', 'Myopathy, congenital, with fiber-type disproportion, X-linked', 'Epileptic encephalopathy, early infantile, 34', 'Moebius syndrome', 'Spinocerebellar ataxia 36', 'Premature ovarian failure 21', 'Short stature, oligodontia, dysmorphic facies, and motor delay', 'Otoonychoperoneal syndrome', 'Charcot-Marie-Tooth disease and deafness', 'Retinitis pigmentosa 80', 'Bifid nose with or without anorectal and renal anomalies', 'Craniofacial dysmorphism, skeletal anomalies, and impaired intellectual development 1', 'Myoclonic-atonic epilepsy', 'Siddiqi syndrome', 'Epilepsy, nocturnal frontal lobe, 5', 'Mental retardation with spastic paraplegia and palmoplantar hyperkeratosis', 'Alternating hemiplegia of childhood 1', 'Developmental delay and seizures with or without movement abnormalities', 'Nephrosis with deafness and urinary tract and digital malformations', 'Epilepsy, progressive myoclonic 7', 'Retinitis pigmentosa 13', 'Myopathy, congenital, progressive, with scoliosis', 'Narcolepsy 1', 'Spastic paraplegia 61, autosomal recessive', 'Epileptic encephalopathy, early infantile, 54', 'Mitochondrial complex IV deficiency, nuclear type 8', 'Macrocephaly/megalencephaly syndrome, autosomal recessive', 'Hepatocellular carcinoma', 'Retinitis pigmentosa 27', 'Macdermot-Winter syndrome', 'Usher syndrome, type IIIB', 'Short-Rib thoracic dysplasia 13 with or without polydactyly', 'Dystonia 27', 'Desbuquois dysplasia 2', 'Klippel-Feil syndrome 4, autosomal recessive, with myopathy and facial dysmorphism', 'Erythrokeratodermia variabilis et progressiva 5', 'Desanto-Shinawi syndrome', 'Postaxial acrofacial dysostosis', 'Lissencephaly 5', 'Cowden syndrome 1', 'Spinocerebellar ataxia, autosomal recessive 7', 'Spinal muscular atrophy, X-linked 2', 'Supranuclear palsy, progressive, 1', 'Spinocerebellar ataxia, autosomal recessive 24', 'Neurodevelopmental disorder with regression, abnormal movements, loss of speech, and seizures', 'Ehlers-Danlos syndrome, musculocontractural type, 2', 'Acromicric dysplasia', 'Witteveen-Kolk syndrome', 'Spinocerebellar ataxia 35', 'Spermatogenic failure 14', 'Developmental delay, impaired speech, and behavioral abnormalities', 'Robinow syndrome, autosomal dominant 3', 'Brachydactyly, type A1, D', 'Microphthalmia, syndromic 13', 'Cortical dysplasia, complex, with other brain malformations 1', 'Retinal dystrophy, juvenile cataracts, and short stature syndrome', 'Alopecia, neurologic defects, and endocrinopathy syndrome', 'Ceroid lipofuscinosis, neuronal, 10', 'Spastic paraplegia 84, autosomal recessive', 'Leukodystrophy, hypomyelinating, 8, with or without oligodontia and/or hypogonadotropic hypogonadism', 'Gaze palsy, familial horizontal, with progressive scoliosis, 2', 'Convulsions, familial infantile, with paroxysmal choreoathetosis', 'Tremor, hereditary essential, 5', 'Neurodevelopmental disorder with severe motor impairment, absent language, cerebral hypomyelination, and brain atrophy', 'Oligodontia-colorectal cancer syndrome', 'Epilepsy, progressive myoclonic, 11', 'NESCAV syndrome', 'Corneal dystrophy, gelatinous drop-like', 'Retinitis pigmentosa 32', 'Retinitis pigmentosa 25', 'Spastic paraplegia 77, autosomal recessive', 'Intellectual developmental disorder, autosomal recessive 74', 'Migraine, familial hemiplegic, 3', 'Cone-Rod synaptic disorder, congenital nonprogressive', 'Cone-rod dystrophy 13', 'Albinism, oculocutaneous, type IB', 'Retinal cone dystrophy 1', 'Albinism, oculocutaneous, type VI', 'Night blindness, congenital stationary, type 1H', 'Retinal cone dystrophy 4', 'Cone-Rod dystrophy 11', 'Ectodermal dysplasia with mental retardation and syndactyly', 'Epithelial recurrent erosion dystrophy', 'Craniofacial microsomia 2', 'Spastic paraplegia 53, autosomal recessive', 'Neuropathy, hereditary sensory and autonomic, type IA', 'Crouzon syndrome', 'Immunoglobulin A deficiency 2', 'Craniofacial abnormalities, cataracts, congenital heart disease, sacralneural tube defects, and growth and developmental retardation', 'Epilepsy, idiopathic generalized, susceptibility to, 14', 'Intellectual developmental disorder with short stature, facial anomalies, and speech defects', 'Kindler syndrome', 'Ovarian dysgenesis 2', 'Osteogenesis imperfecta, type XX', 'Heimler syndrome 1', 'Striatal degeneration, autosomal dominant', 'Intellectual developmental disorder, autosomal recessive 6', 'Brittle cornea syndrome', 'Epileptic encephalopathy, early infantile, 11', 'Spinocerebellar ataxia 27B, late-onset', 'Microcephaly 4, primary, autosomal recessive', 'Epilepsy, progressive myoclonic, 9', 'Hypogonadotropic hypogonadism 24 without anosmia', 'Epidermolysis bullosa simplex, autosomal recessive 2', 'De Sanctis-Cacchione syndrome', 'Baraitser-Winter syndrome 2', 'Optic atrophy 3, autosomal dominant', 'Sclerosteosis 1', 'Ichthyosis, congenital, autosomal recessive 10', 'Mental retardation, autosomal recessive 66', 'Ciliary dyskinesia, primary, 46', 'Steel syndrome', 'Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 8', 'Stickler syndrome, type I', 'Spastic ataxia 7, autosomal dominant', 'Stickler syndrome, type V', 'Anencephaly 2', 'Leukoencephalopathy, hereditary diffuse, with spheroids 2', 'Premature ovarian failure 10', 'Premature ovarian failure 8', 'Developmental delay with short stature, dysmorphic features, and sparse hair', 'Culler-Jones syndrome', 'Craniometaphyseal dysplasia, autosomal recessive', 'Hypogonadotropic hypogonadism 25 with anosmia', 'Wernicke-Korsakoff syndrome', 'Nephropathy with pretibial epidermolysis bullosa and deafness', 'Spinocerebellar ataxia, autosomal recessive 28', 'Macrocephaly, dysmorphic facies, and psychomotor retardation', 'Joubert syndrome 15', 'Parkinson disease 23, autosomal recessive early-onset', 'Intellectual developmental disorder with cardiac defects and dysmorphic facies', 'Parkinson disease 25, autosomal recessive early-onset, with impaired intellectual development', 'Joubert syndrome 27', 'Mandibulofacial dysostosis with ptosis, autosomal dominant', 'Ichthyosis, follicular, with atrichia and photophobia syndrome 2', 'Generalized epilepsy with febrile seizures plus, type 2', 'Hypertryptophanemia', 'Leukoencephalopathy with vanishing white matter 4, with or without ovarian failure', 'Muir-Torre syndrome', 'Familial adenomatous polyposis 4', 'Ataxia-telangiectasia-like disorder 1', 'Manitoba oculotrichoanal syndrome', 'Chromosome 13q14 deletion syndrome', 'Neurodevelopmental disorder with intention tremor, pyramidal signs, dyspraxia, and ocular anomalies', 'Acrocallosal syndrome', 'Spastic paraplegia 76, autosomal recessive', 'Cone-Rod dystrophy 16', 'Mental retardation, autosomal dominant 2', 'Pilarowski-Bjornsson syndrome', 'Dystonia 24', 'Arthrogryposis, distal, type 2B', 'Char syndrome', 'Hereditary motor and sensory neuropathy V', 'Chitayat syndrome', 'Cerebellar ataxia, areflexia, pes cavus, optic atrophy, and sensorineural hearing loss', 'Focal facial dermal dysplasia 3, Setleis type', 'Deafness, dystonia, and cerebral hypomyelination', 'Mental retardation, X-linked, syndromic, Houge type', 'Epilepsy, nocturnal frontal lobe, 4', 'Neurodevelopmental disorder with impaired speech and hyperkinetic movements', 'Spondylocarpotarsal synostosis syndrome', 'Intellectual developmental disorder, autosomal dominant 58', 'Microcephaly, seizures, spasticity, and brain calcifications', 'Hypomagnesemia 5, renal, with or without ocular involvement', 'Mental retardation, X-linked 90', 'Congenital anomalies of kidney and urinary tract, susceptibility to', 'Robinow-Sorauf syndrome', 'Retinitis pigmentosa 19', 'Retinitis pigmentosa 43', 'Retinitis pigmentosa 70', 'Retinitis pigmentosa 62', 'Retinitis pigmentosa 58', 'Ellis-Van creveld syndrome', 'Craniosynostosis 4', 'Parkinson disease 8, autosomal dominant', 'Popliteal pterygium syndrome, Bartsocas-Papas type 2', 'Charcot-Marie-Tooth disease, demyelinating, type 1J', 'Meckel syndrome 12', 'Ectodermal dysplasia with adrenal cyst', 'Ciliary dyskinesia, primary, 23', 'Spinocerebellar ataxia 26', 'Hypotrichosis 13', 'Neuronopathy, distal hereditary motor, type VIIA', 'Night blindness, congenital stationary (complete), 1C, autosomal recessive', 'Leber congenital amaurosis 5', 'Duane retraction syndrome 1', 'Night blindness, congenital stationary, type 1B', 'Epidermolysis bullosa, junctional 3B, severe', 'Epidermolysis bullosa simplex with nail dystrophy', 'Exudative vitreoretinopathy 5', 'Epidermolysis bullosa with congenital localized absence of skin anddeformity of nails', 'Blepharocheilodontic syndrome 1', 'Retinitis pigmentosa 68', 'Auditory neuropathy and optic atrophy', 'Albinism, oculocutaneous, type IV', 'Night blindness, congenital stationary, type 2A', 'Epidermolysis bullosa simplex 1B, generalized intermediate', 'Retinitis pigmentosa 92', 'Woolly hair-skin fragility syndrome', 'Microphthalmia, isolated 6', 'Nail disorder, nonsyndromic congenital, 1', 'Cataract 48', 'Ectopia lentis et pupillae', 'Exudative vitreoretinopathy 7', 'Epidermolysis bullosa, junctional 2B, severe', 'Renal hypodysplasia/aplasia 4', 'Hypogonadotropic hypogonadism 11 with or without anosmia', 'Bamforth-Lazarus syndrome', 'Macular dystrophy, retinal, 2', 'Retinitis pigmentosa 93', 'Aniridia 2', 'Marie unna hereditary hypotrichosis 1', 'Corneal dystrophy, epithelial basement membrane', 'Macular dystrophy, butterfly-shaped pigmentary, 2', 'Spinocerebellar ataxia, autosomal recessive 22', 'Perrault syndrome 6', 'Spermatogenic failure 15', 'Van der woude syndrome 2', 'Ophthalmoplegia, external, and myopia', 'Brachydactyly, type B2', 'Nephrotic syndrome, type 4', 'Deafness, autosomal dominant 21', 'Spermatogenic failure 42', 'Ciliary dyskinesia, primary, 21', 'Spermatogenic failure 80', 'Spermatogenic failure 76', 'Spermatogenic failure 58', 'Spermatogenic failure 18', 'Spermatogenic failure 33', 'Spermatogenic failure 46', 'Spermatogenic failure 37', 'Spermatogenic failure 27', 'Microphthalmia, syndromic 2', 'Hypotrichosis and recurrent skin vesicles', 'Vertebral hypersegmentation and orofacial anomalies', 'Myoclonus, familial cortical', 'Arthrogryposis multiplex congenita 6', 'Ceroid lipofuscinosis, neuronal, 11', 'Buratti-Harel syndrome', 'Keratoderma-ichthyosis-deafness syndrome, autosomal recessive', 'Lissencephaly 3', 'Spastic paraplegia 23', 'Microphthalmia, isolated, with coloboma 5', 'Ataxia, posterior column, with retinitis pigmentosa', 'Acrofacial dysostosis 1, Nager type', 'Ermine phenotype', 'Spinocerebellar ataxia, autosomal recessive 25', 'Acromesomelic dysplasia, Demirhan type', 'Congenital anomalies of kidney and urinary tract syndrome with or without hearing loss, abnormal ears, or developmental delay', 'Spastic paraplegia 15, autosomal recessive', 'Neuropathy, hereditary motor, with myopathic features', 'Peroxisomal fatty acyl-CoA reductase 1 disorder', 'Amelogenesis imperfecta, type IG (enamel-renal syndrome)', 'Joubert syndrome 26', '46,XX sex reversal with dysgenesis of kidneys, adrenals, and lungs', 'Charcot-Marie-Tooth disease, axonal, type 2F', 'Myasthenic syndrome, congenital, 16', 'Leukoencephalopathy, motor delay, spasticity, and dysarthria syndrome', 'Epileptic encephalopathy, early infantile, 60', 'GM2-gangliosidosis, AB variant', 'Spastic paraplegia 9B, autosomal recessive', 'Leukoencephalopathy, cystic, without megalencephaly', 'Kohlschutter-Tonz syndrome', 'Phosphoribosylaminoimidazole carboxylase deficiency', 'Pontocerebellar hypoplasia, type 1E', 'Chromosome 15q11-q13 duplication syndrome', 'Spinal muscular atrophy, distal, autosomal recessive, 5', 'Neurodevelopmental disorder with microcephaly, impaired language, and gait abnormalities, autosomal recessive', 'Epilepsy, familial adult myoclonic, 4', 'Neuronopathy, distal hereditary motor, type VB', 'Craniofacial-deafness-hand syndrome', 'Clubfoot, congenital, with or without deficiency of long bones and/or mirror-image polydactyly', 'Ciliary dyskinesia, primary, 24', 'Auriculocondylar syndrome 3', 'Creutzfeldt-Jakob disease', 'Anterior segment dysgenesis 3', 'Generalized epilepsy with febrile seizures plus, type 9', 'Gaze palsy, familial horizontal, with progressive scoliosis, 1', 'Retinitis pigmentosa 79', 'Polymicrogyria, bilateral temporooccipital', 'Mental retardation, X-linked, syndromic, 35', 'Epilepsy, progressive myoclonic, 12', 'Orofaciodigital syndrome XVIII', 'Ciliary dyskinesia, primary, 11', 'Orofaciodigital syndrome III', 'Branchiogenic-deafness syndrome', 'Epilepsy, progressive myoclonic 1A (Unverricht and Lundborg)', 'Arthrogryposis, distal, type 1A', 'Mental retardation, autosomal dominant 41', 'Hypertelorism and other facial dysmorphism, brachydactyly, genital abnormalities, mental retardation, and recurrent inflammatory episodes', 'Neurodevelopmental disorder with seizures and brain atrophy', 'Basal ganglia calcification, idiopathic, 6', 'Spastic paraplegia 32, autosomal recessive', 'Epileptic encephalopathy, early infantile, 59', 'Leber congenital amaurosis 7', 'Albinism, ocular, with late-onset sensorineural deafness', 'Cone-Rod dystrophy 5', 'Retinal dystrophy with inner retinal dysfunction and ganglion cell abnormalities', 'Albinism, oculocutaneous, type V', 'Albinism, ocular, type I', 'Charcot-Marie-Tooth disease, demyelinating, type 1H', 'Achromatopsia 7', 'SIMHA syndrome', 'Intellectual developmental disorder and retinitis pigmentosa', 'Spinal muscular atrophy, late-onset, Finkel type', 'Orofaciodigital syndrome I', 'Epilepsy, familial adult myoclonic, 1', 'Ciliary dyskinesia, primary, 2', 'Developmental and epileptic encephalopathy 70', 'Escobar syndrome', 'Neurodevelopmental disorder with cerebellar atrophy and motor dysfunction', 'Ciliary dyskinesia, primary, 33', 'Cerebellar ataxia, neuropathy, and vestibular areflexia syndrome', 'Microcephaly-micromelia syndrome', 'Mental retardation, autosomal recessive 58', 'Hyperphenylalaninemia, MILD, non-bh4-deficient', 'Ectodermal dysplasia, ectrodactyly, and macular dystrophy syndrome', 'Lacrimoauriculodentodigital syndrome-2', 'Epidermolysis bullosa dystrophica, autosomal dominant', 'Warburg micro syndrome 4', 'Speech development, delayed, with facial asymmetry, strabismus, andtransverse earlobe crease', 'Basal cell nevus syndrome', 'Microphthalmia, syndromic 5', 'Congenital heart defects, dysmorphic facial features, and intellectual developmental disorder', 'Ciliary dyskinesia, primary, 12', 'Mohr syndrome', 'Danon disease', 'Spinocerebellar ataxia 10', 'Muscle glycogenosis, X-linked', 'Premature ovarian failure 18', 'Mental retardation, autosomal recessive 57', 'Otofaciocervical syndrome 2', 'Joubert syndrome 38', 'Developmental and epileptic encephalopathy 69', 'Ciliary dyskinesia, primary, 27', 'Neurodevelopmental disorder with seizures and gingival overgrowth', 'Epilepsy, familial focal, with variable foci 4', 'Cortical dysplasia, complex, with other brain malformations 10', 'Myoclonic epilepsy, familial infantile', 'Charcot-marie-tooth disease, axonal, type 2O', 'Ectodermal dysplasia with natal teeth, Turnpenny type', 'Ciliary dyskinesia, primary, 28', 'Arthrogryposis, distal, type 3', 'Adenomatous polyposis coli', 'Peroxisome biogenesis disorder 14B', 'Spinocerebellar ataxia, autosomal recessive 29', 'Epidermolysis bullosa, junctional 4, intermediate', 'Spastic paraplegia 86, autosomal recessive', 'Ciliary dyskinesia, primary, 42', 'Tumor predisposition syndrome', 'Spondyloperipheral dysplasia', 'Exudative vitreoretinopathy 1', 'Parkinsonism with polyneuropathy', 'Leopard syndrome 3', 'Charcot-Marie-Tooth disease, axonal, type 2D', 'Blepharophimosis with ptosis, syndactyly, and short stature', 'Spondyloepimetaphyseal dysplasia, Camera-Genevieve type', 'Paroxysmal nonkinesigenic dyskinesia, 3, with or without generalized epilepsy', 'Orofaciodigital syndrome XV', 'Mend syndrome', 'Epileptic encephalopathy, early infantile, 84', 'Spastic paraplegia 37, autosomal dominant', 'Retinitis pigmentosa 12', 'Goldberg-Shprintzen syndrome', 'Spinocerebellar ataxia, autosomal recessive 16', 'Coffin-Siris syndrome 7', 'Leukodystrophy, hypomyelinating, 19, transient infantile', 'Hypotonia, infantile, with psychomotor retardation', 'Epileptic encephalopathy, early infantile, 19', 'Epileptic encephalopathy, early infantile, 32', 'Spinocerebellar ataxia 28', 'Alexander disease', 'Parkinson disease 14, autosomal recessive', 'Tessadori-van Haaften neurodevelopmental syndrome 3', 'Tuberous sclerosis-1', 'Leukodystrophy, hypomyelinating, 6', 'Antley-Bixler syndrome without genital anomalies or disordered steroidogenesis', 'Spastic paraplegia 82, autosomal recessive', 'Intellectual developmental disorder, autosomal recessive 70', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 3', 'Parkinson disease 6, autosomal recessive early-onset', 'Deafness, autosomal dominant 85', 'Palmoplantar keratoderma and congenital alopecia 2', 'Epileptic encephalopathy, early infantile, 25, with amelogenesis imperfecta', 'Spinocerebellar ataxia 11', 'Peeling skin syndrome 4', 'Peripheral cone dystrophy', 'Usher syndrome, type IIIA', 'Night blindness, congenital stationary, type 1F', 'Amyloidosis, primary localized cutaneous, 3', 'Ichthyosis hystrix, Curth-Macklin type', 'Ectodermal dysplasia 9, Hair/nail type', 'Microcornea, myopic chorioretinal atrophy, and telecanthus', 'Retinitis pigmentosa 69', 'Retinitis pigmentosa 97', 'Epidermolysis bullosa simplex 1D, generalized, intermediate or severe, autosomal recessive', 'Retinitis pigmentosa 38', 'Optic atrophy 9', 'Edict syndrome', 'Dermatopathia pigmentosa reticularis', 'Keratosis linearis with ichthyosis congenita and sclerosing keratoderma', 'Yemenite deaf-blind hypopigmentation syndrome', 'Witkop syndrome', 'Deafness, sensorineural, and male infertility', 'Cone-Rod dystrophy 18', 'Cone-Rod dystrophy 19', 'Hyperpigmentation, familial progressive', 'Macular dystrophy, vitelliform, 5', 'Acrokeratosis verruciformis', 'Palmoplantar keratoderma and woolly hair', 'Epidermodysplasia verruciformis, susceptibility to, 3', 'Spermatogenic failure 2', 'Tietz albinism-deafness syndrome', 'Spermatogenic failure 38', 'Usher syndrome, type I', 'Spermatogenic failure 56', 'Spermatogenic failure 39', 'Spermatogenic failure, X-linked, 5', 'Spermatogenic failure 34', 'Spermatogenic failure 72', 'Polymicrogyria, bilateral frontoparietal', 'Robinow syndrome, autosomal recessive 2', 'Epileptic encephalopathy, early infantile, 56', 'Hand-foot-uterus syndrome', 'Teebi-Shaltout syndrome', 'Parkinson disease 7, autosomal recessive early-onset', 'Neuropathy, distal hereditary motor, type VC', 'Microphthalmia, syndromic 8', 'Spinocerebellar ataxia 34', 'Joubert syndrome 14', 'Spermatogenic failure 77', 'Retinal dystrophy with or without extraocular anomalies', 'Basal cell nevus syndrome 2', 'Charcot-Marie-Tooth disease, axonal, type 2FF', 'Spastic paraplegia 13, autosomal dominant', 'Ciliary dyskinesia, primary, 38', 'Ciliary dyskinesia, primary, 49, without situs inversus', 'Autism susceptibility, X-linked 1', 'Corpus callosum, agenesis of, with facial anomalies and Robin sequence', 'Ciliary dyskinesia, primary, 34', 'Ulna and fibula, absence of, with severe limb deficiency', 'Exfoliation syndrome', 'Spinal muscular atrophy, distal, autosomal recessive, 2', 'Neurodevelopmental disorder with poor language and loss of hand skills', 'Developmental and epileptic encephalopathy 57', 'Schilbach-Rott syndrome', 'Leukodystrophy, hypomyelinating, 7, with or without oligodontia and/orhypogonadotropic hypogonadism', 'Developmental and epileptic encephalopathy 108', 'Intellectual developmental disorder 60 with seizures', 'Myopathy, centronuclear, 6, with fiber-type disproportion', 'Intellectual developmental disorder, autosomal dominant 71, with behavioral abnormalities', 'Ciliary dyskinesia, primary, 7', 'Charcot-Marie-Tooth disease, axonal, type 2DD', 'Alternating hemiplegia of childhood 2', 'Cone-rod dystrophy 22', 'Charcot-Marie-Tooth disease, axonal, type 2V', 'Huntington disease-like 1', 'MICROHYDRANENCEPHALY', 'Intellectual developmental disorder, autosomal recessive 48', 'Congenital disorder of glycosylation, type 2V', 'Spastic paraplegia 57, autosomal recessive', 'Alopecia-mental retardation syndrome 4', 'Xeroderma pigmentosum, complementation group A', 'Developmental and epileptic encephalopathy 17', 'Microphthalmia, isolated 5', 'Basal ganglia calcification, idiopathic, 4', 'Weyers ulnar ray/oligodactyly syndrome', 'Cherubism', 'Neuropathy, ataxia, and retinitis pigmentosa', 'Intellectual developmental disorder, autosomal dominant 5', 'Triglyceride storage disease, type I', 'Spinocerebellar ataxia 40', 'Otofaciocervical syndrome', 'Neurodevelopmental disorder with hypotonia and autistic features with or without hyperkinetic movements', 'Laryngoonychocutaneous syndrome', 'MOMO syndrome', 'Robinow syndrome, autosomal dominant 2', 'Joubert syndrome 30', 'Corneal dystrophy, congenital stromal', 'Cone dystrophy 4', 'Cataract 2, multiple types', 'Oculocutaneous albinism, type VIII', 'Prieto syndrome', 'Pontocerebellar hypoplasia, type 2F', 'Spastic paraplegia 36, autosomal dominant', 'Fibrosis of extraocular muscles, congenital, 2', 'Pfeiffer syndrome', 'Congenital hemidysplasia with ichthyosiform erythroderma and limb defects', 'Cortical dysplasia, complex, with other brain malformations 7', 'Myopathy, scapulohumeroperoneal', 'Epidermolysis bullosa simplex, Dowling-Meara type', 'Neuropathy, hereditary sensory, type IIC', 'Epidermolysis bullosa, lethal acantholytic', 'Dystonia 22, juvenile-onset', 'Neurodevelopmental disorder with impaired intellectual development, hypotonia, and ataxia', 'Neurodevelopmental disorder with cardiomyopathy, spasticity, and brain abnormalities', 'Catifa syndrome', 'Epileptic encephalopathy, early infantile, 52', 'Muscular dystrophy, Becker type', 'Neurodevelopmental disorder with or without early-onset generalized epilepsy', 'Malan syndrome', 'Ciliary dyskinesia, primary, 19', 'Acrorenal-Mandibular syndrome', 'Developmental and epileptic encephalopathy 15', 'Spastic paraplegia 19, autosomal dominant', 'Spastic tetraplegia, thin corpus callosum, and progressive microcephaly', 'Developmental and epileptic encephalopathy 14', 'Spinocerebellar ataxia 49', 'Stapes ankylosis with broad thumb and toes', 'Neurodegeneration, childhood-onset, stress-induced, with variable ataxia and seizures', 'Capillary malformation of the lower lip, lymphatic malformation of face and neck, asymmetry of face and limbs, and partial/generalized overgrowth', 'Basal ganglia calcification, idiopathic, 8, autosomal recessive', 'Microphthalmia, isolated 8', 'Spinal muscular atrophy, lower extremity-predominant, 1, autosomal dominant', 'Epilepsy, familial adult myoclonic, 3', 'Neurofacioskeletal syndrome with or without renal agenesis', 'Multiple congenital anomalies-hypotonia-seizures syndrome 1', 'Pituitary hormone deficiency, combined or isolated, 8', 'Mental retardation, autosomal dominant 44', 'Myasthenic syndrome, congenital, 18', 'Frontotemporal lobar degeneration with TDP43 inclusions', 'Retinitis pigmentosa 60', 'Retinitis pigmentosa 41', 'Spinal muscular atrophy, type I', 'Microcephaly and chorioretinopathy, autosomal recessive, 2', 'Saethre-Chotzen syndrome', 'Dyskinesia, seizures, and intellectual developmental disorder', 'Spastic paraplegia 87, autosomal recessive', 'Joubert syndrome 7', 'Myotonia congenita, autosomal dominant', 'Epileptic encephalopathy, early infantile, 24', 'Spastic paraplegia 55, autosomal recessive', 'Spastic ataxia, Charlevoix-Saguenay type', 'Nail-Patella syndrome', 'Cree mental retardation syndrome', 'Stickler syndrome, type IV', 'Charcot-Marie-Tooth disease, axonal, type 2X', 'Neurodevelopmental disorder with spastic quadriplegia and brain abnormalities with or without seizures', 'Neurodevelopmental disorder with microcephaly, seizures, and brain atrophy', 'Dystonia 33', 'Ciliary dyskinesia, primary, 32', 'Mental retardation, autosomal recessive 39', 'Spastic paraplegia 38, autosomal dominant', '46,xx sex reversal 4', 'Renal hypodysplasia/aplasia 3', 'Auriculocondylar syndrome 4', 'Neurodevelopmental disorder with seizures, spasticity, and complete or partial agenesis of the corpus callosum', 'Lichtenstein-Knorr syndrome', 'Fibrosis of extraocular muscles, congenital, 1', 'Neurodevelopmental disorder with severe motor impairment and absent language', 'Spinocerebellar ataxia 12', 'Spastic ataxia 9, autosomal recessive', 'Ciliary dyskinesia, primary, 9, with or without situs inversus', 'Neurodevelopmental disorder with dysmorphic facies and distal limb anomalies', 'Alzahrani-Kuwahara syndrome', 'Autism susceptibility, X-linked 3', 'Retinal degeneration with nanophthalmos, cystic macular degeneration,and angle closure glaucoma', 'Joubert syndrome 24', 'Tooth agenesis, selective, 3', 'Ectodermal dysplasia 14, hair/tooth type with or without hypohidrosis', 'Pelizaeus-Merzbacher disease', 'Cataract 50 with or without glaucoma', 'Woolly hair, autosomal dominant', 'Cornea plana 2', 'Pityriasis rubra pilaris', 'Epidermolysis bullosa simplex 2A, generalized severe', 'Retinal degeneration, late-onset, autosomal dominant', 'Hypertrichosis terminalis, generalized, with or without gingival hyperplasia', 'Myopia, high, with cataract and vitreoretinal degeneration', '46,xy sex reversal 6', '46,xy sex reversal 7', 'Dystonia 6, torsion', 'Spermatogenic failure 54', 'Spermatogenic failure 51', 'Intellectual developmental disorder with dysmorphic facies and behavioral abnormalities', 'Down syndrome', 'Stickler syndrome, type II', 'Corpus callosum, agenesis of, with facial anomalies and cerebellar ataxia', 'Spastic paraplegia 47, autosomal recessive', 'Intellectual developmental disorder, autosomal recessive 44', 'Cleft, median, of upper lip with polyps of facial skin and nasal mucosa', 'Faciodigitogenital syndrome, autosomal recessive', 'Acrofacial dysostosis syndrome of rodriguez', 'Branchial arch abnormalities, choanal atresia, athelia, hearing loss, and hypothyroidism syndrome', \"Epilepsy, rolandic, with paroxysmal exercise-induced dystonia and writer's cramp\", 'Mitochondrial form of axonal Charcot-Marie-Tooth disease-1', 'Orofaciodigital syndrome XIV', '3MC syndrome 2', 'Stickler syndrome, type VI', 'Developmental and epileptic encephalopathy 33', 'Retinitis pigmentosa 72', 'Ceroid lipofuscinosis, neuronal, 7', 'Marden-Walker syndrome', 'Epileptic encephalopathy, early infantile, 43', 'Odontotrichoungual-Digital-Palmar syndrome', 'Deafness, cataract, impaired intellectual development, and polyneuropathy', 'Poretti-Boltshauser syndrome', 'Mental retardation, anterior maxillary protrusion, and strabismus', 'Temtamy preaxial brachydactyly syndrome', 'Melnick-Needles syndrome', 'Spastic paraplegia 81, autosomal recessive', 'Dystonia 11, myoclonic', 'Birt-Hogg-Dube syndrome', 'Epilepsy, idiopathic generalized, susceptibility to, 15', 'Zimmermann-Laband syndrome 3', 'Neuronopathy, distal hereditary motor, type VA', 'Cortical dysplasia, complex, with other brain malformations 9', 'Developmental and epileptic encephalopathy 26', 'Spinocerebellar ataxia, autosomal recessive 14', 'Intellectual developmental disorder, autosomal dominant 30', 'Spondyloepiphyseal dysplasia, sensorineural hearing loss, intellectual developmental disorder, and Leber congenital amaurosis', 'Charcot-Marie-Tooth disease, demyelinating, type 1I', 'Rodrigues blindness', 'Neurodevelopmental disorder with microcephaly, arthrogryposis, and structural brain anomalies', '46XY sex reversal 1', 'Waardenburg syndrome, type 4C', 'Mental retardation, autosomal dominant 1', 'Spastic paraplegia, intellectual disability, nystagmus, and obesity', 'Leukodystrophy, progressive, early childhood-onset', 'Chiari malformation type II', 'Retinal cone dystrophy 3B', 'Cone-rod dystrophy and hearing loss', 'Achromatopsia 3', 'Leber congenital amaurosis with early-onset deafness', 'Senior-Loken syndrome 3', 'Cerebellofaciodental syndrome', 'Carpenter syndrome 2', 'Arthrogryposis, distal, type 5D', 'Trichothiodystrophy 9, nonphotosensitive', 'Spinocerebellar ataxia 20', 'Duchenne muscular dystrophy', 'Spastic ataxia 3, autosomal recessive', 'Frontonasal dysplasia 3', 'Spastic paraplegia 12, autosomal dominant', 'Spinocerebellar ataxia 15', 'Ceroid lipofuscinosis, neuronal, 13', 'Mullerian aplasia and hyperandrogenism', 'Ichthyosis, congenital, autosomal recessive 9', 'Cerebellar dysfunction, impaired intellectual development, and hypogonadotropic hypogonadism', 'Neurodegeneration with brain iron accumulation 6', 'Dentatorubral-pallidoluysian atrophy', 'Myopathy, congenital proximal, with minicore lesions', 'Dystonia 26, myoclonic', 'Spinocerebellar ataxia 17', 'Camptodactyly syndrome, Guadalajara, type III', 'Brown-Vialetto-Van Laere syndrome 1', 'Developmental and epileptic encephalopathy 6B, non-Dravet', 'Hypogonadotropic hypogonadism 12 with or without anosmia', 'Brachycephaly, deafness, cataract, microstomia, and mental retardation', 'Chromosome 16p13.2 deletion syndrome', 'Pontocerebellar hypoplasia, type 7', '46, XY sex reversal 11', 'Coenzyme Q10 deficiency, primary, 9', 'Spinocerebellar ataxia 23', 'Palmoplantar keratoderma with congenital alopecia', 'Mental retardation, autosomal recessive 38', 'Ichthyosis with erythrokeratoderma', 'Neurodevelopmental disorder with microcephaly, seizures, and cortical atrophy', 'Neurodevelopmental disorder with motor and speech delay and behavioral abnormalities', 'Neuronopathy, distal hereditary motor, type IIC', 'Neurodevelopmental disorder with speech delay and variable ocular anomalies', 'Leukoencephalopathy with ataxia', 'Hereditary motor and sensory neuropathy VIA', 'Hemifacial microsomia with radial defects', 'Intellectual developmental disorder with neuropsychiatric features', 'Craniosynostosis and dental anomalies', 'Developmental and epileptic encephalopathy 23', 'Beare-Stevenson cutis gyrata syndrome', 'Orofaciodigital syndrome IX', 'Spinocerebellar ataxia 43', 'Retinitis pigmentosa 10', 'Cone-rod dystrophy 3', 'Donnai-Barrow syndrome', 'Ciliary dyskinesia, primary, 30', 'Neurodevelopmental disorder with hypotonia, dysmorphic facies, and skin abnormalities', 'Spastic paraplegia, ataxia, and mental retardation', 'Intellectual developmental disorder, autosomal recessive 43', 'Rafiq syndrome', 'Mental retardation, autosomal dominant 55, with seizures', 'Sjogren-Larsson syndrome', 'Cerebellar ataxia, mental retardation, and dysequilibrium syndrome2', 'Whistling face syndrome, recessive form', 'Optic atrophy 10 with or without ataxia, mental retardation, and seizures', 'Optic atrophy 7 with or without auditory neuropathy', 'Ichthyosis prematurity syndrome', 'Developmental and epileptic encephalopathy 97', 'Hypogonadotropic hypogonadism 3 with or without anosmia', 'Acrofrontofacionasal dysostosis 2', 'Charcot-Marie-Tooth disease, axonal, type 2E', 'Muenke syndrome', 'Intellectual developmental disorder with ocular anomalies and distinctive facial features', 'Myasthenic syndrome, congenital, 7, presynaptic', 'Indifference to pain, congenital, autosomal recessive', 'Frontonasal dysplasia 1', 'Neurodevelopmental disorder with dysmorphic facies and variable seizures', 'Neurodevelopmental disorder with hypotonia, neonatal respiratory insufficiency, and thermodysregulation', 'Epileptic encephalopathy, early infantile, 74', 'Microcephaly 29, primary, autosomal recessive', 'Beaulieu-Boycott-Innes syndrome', 'Intellectual developmental disorder, autosomal recessive 67', 'Pulmonary fibrosis and/or bone marrow failure, telomere-related, 4', 'Epilepsy, familial adult myoclonic, 2', 'Spermatogenic failure, X-linked, 6', 'Microcephaly and chorioretinopathy, autosomal recessive, 1', 'Bjornstad syndrome', 'Otodental dysplasia', 'Microcephaly 20, primary, autosomal recessive', 'Ichthyosis, congenital, autosomal recessive 2', 'Epilepsy, progressive myoclonic, 8', 'Ritscher-Schinzel syndrome 4', 'Epileptic encephalopathy, early infantile, 81', 'Snijders Blok-Fisher syndrome', 'Leukoencephalopathy, brain calcifications, and cysts', 'Developmental and epileptic encephalopathy 100', 'Joubert syndrome 4', 'Neurodevelopmental disorder with progressive microcephaly, spasticity, and brain abnormalities', 'Hypotrichosis 1', 'Hypotrichosis 5', 'Branchiootic syndrome 1', 'Monilethrix', 'Retinitis pigmentosa 66', 'Usher syndrome, type IV', 'Epidermolysis bullosa simplex, generalized, with scarring and hair loss', 'Inflammatory poikiloderma with hair abnormalities and acral keratoses', 'Coloboma, ocular, autosomal recessive', 'Bietti crystalline corneoretinal dystrophy', 'Anterior segment dysgenesis 8', 'Ectodermal dysplasia 8, Hair/tooth/nail type', 'Spermatogenic failure 65', 'Spermatogenic failure 84', 'Emery-Dreifuss muscular dystrophy 1, X-linked', 'Cerebellar ataxia and hypogonadotropic hypogonadism', 'Hypogonadotropic hypogonadism 7 without anosmia', 'Intellectual developmental disorder with paroxysmal dyskinesia or seizures', 'Blepharocheilodontic syndrome 2', 'Intellectual developmental disorder with seizures and language delay', 'Neurodevelopmental disorder with hypotonia, dysmorphic facies, and skeletal anomalies, with or without seizures', 'Tessadori-van Haaften neurodevelopmental syndrome 2', 'Scapuloperoneal spinal muscular atrophy', 'Spinocerebellar ataxia, autosomal recessive 18', 'Pitt-Hopkins syndrome', 'Immunoneurologic disorder, X-linked', 'Neuronopathy, distal hereditary motor, type IID', 'Epileptic encephalopathy, early infantile, 61', 'Teebi hypertelorism syndrome 1', 'Cerebellar atrophy, visual impairment, and psychomotor retardation', 'Adrenal hyperplasia, congenital, due to 3-beta-hydroxysteroid dehydrogenase 2 deficiency', 'Coffin-Siris syndrome 9', 'Spastic paraplegia 43, autosomal recessive', 'Ciliary dyskinesia, primary, 15', 'Anonychia-Onychodystrophy with hypoplasia or absence of distal phalanges', 'Spinocerebellar ataxia, autosomal recessive 2', 'Craniofacioskeletal syndrome', 'Elejalde disease', 'Spinocerebellar ataxia, autosomal recessive 15', 'Ectodermal dysplasia 15, Hypohidrotic/hair type', 'Agenesis of corpus callosum, cardiac, ocular, and genital syndrome', 'Ciliary dyskinesia, primary, 26', 'Hydrocephalus, congenital, 2, with or without brain or eye anomalies', 'Retinitis pigmentosa with or without situs inversus', 'Cone-rod dystrophy, X-linked, 1', 'Leber congenital amaurosis 16', 'Charcot-Marie-Tooth disease, X-linked recessive, 5', 'Macular dystrophy, patterned, 1', 'Macular dystrophy, vitelliform, 3', 'Chromosome 9P deletion syndrome', 'Waardenburg syndrome, type 2E', 'PHACE association', 'Cowden syndrome 5', 'Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 3', 'Deafness, congenital, and onychodystrophy, autosomal dominant', 'Neurodevelopmental disorder with language impairment and behavioral abnormalities', 'Epileptic encephalopathy, early infantile, 31', 'Spastic paraplegia 78, autosomal recessive', 'Microspherophakia and/or megalocornea, with ectopia lentis and with or without secondary glaucoma', 'Darier-White disease', 'Spinocerebellar ataxia 47', 'Dystonia 34, myoclonic', 'Basan syndrome', 'Epidermolysis bullosa, junctional, Non-Herlitz type', 'Optic atrophy 5', 'Usmani-Riazuddin syndrome, autosomal dominant', 'Spastic paraplegia 45, autosomal recessive', 'Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 2', 'Spinocerebellar ataxia, autosomal recessive 4', 'Lamb-Shaffer syndrome', 'Intellectual developmental disorder with autism and dysmorphic facies', 'Retinitis pigmentosa 56', 'Chromosome 15q14 deletion syndrome', 'Developmental delay with or without dysmorphic facies and autism', 'Epilepsy, progressive myoclonic, 10', 'Episodic ataxia, type 2', 'Deafness, congenital, with inner ear agenesis, microtia, and microdontia', 'Epileptic encephalopathy, early infantile, 9', 'Spastic paraplegia 10, autosomal dominant', 'Neurodevelopmental-craniofacial syndrome with variable renal and cardiac abnormalities', 'Aarskog-Scott syndrome', 'Pallister-Hall syndrome', 'Leber congenital amaurosis 14', 'Olmsted syndrome 2', 'Developmental and epileptic encephalopathy 99', 'Developmental and epileptic encephalopathy 98', 'Macrocephaly, acquired, with impaired intellectual development', 'Fetal akinesia deformation sequence 4', 'Epileptic encephalopathy, early infantile, 67', 'Leukodystrophy, hypomyelinating, 22', 'Neurodevelopmental disorder with epilepsy and hypoplasia of the corpus callosum', 'Ciliary dyskinesia, primary, 51', 'Intellectual developmental disorder with severe speech and ambulation defects', 'Hallermann-Streiff syndrome', 'Spastic paraplegia 18, autosomal recessive', 'Mental retardation, X-linked, syndromic 14', 'Neurodevelopmental disorder with microcephaly and structural brain anomalies', 'Trigonocephaly with short stature and developmental delay', 'Spastic ataxia 8, autosomal recessive, with hypomyelinating leukodystrophy', 'Neurodevelopmental disorder with microcephaly and speech delay, with or without brain abnormalities', 'Craniofacial anomalies and anterior segment dysgenesis syndrome', 'Mosaic variegated aneuploidy syndrome 7 with inflammation and tumor predisposition', 'Epileptic encephalopathy, early infantile, 6 (Dravet syndrome)', 'Neuropathy, hereditary motor and sensory, type VIC, with optic atrophy', 'Kosaki overgrowth syndrome', 'Epileptic encephalopathy, early infantile, 87', 'Mental retardation, X-linked, syndromic 33', 'Hypotonia, infantile, with psychomotor retardation and characteristic facies 3', 'Cone-rod dystrophy 24', 'Epileptic encephalopathy, early infantile, 37', 'Mental retardation, X-linked, syndromic, Martin-Probst type', 'Congenital anomalies of kidney and urinary tract 3', 'Warburg-Cinotti syndrome', 'Neurodevelopmental disorder with microcephaly, hypotonia, and variable brain anomalies', 'Ichthyosis, cyclic, with epidermolytic hyperkeratosis', 'Chromosome 8q21.11 deletion syndrome', 'Ectodermal dysplasia 11A, hypohidrotic/hair/tooth type, autosomal dominant', 'Ectodermal dysplasia 13, Hair/tooth type', 'Spinocerebellar ataxia 2', 'Ectodermal dysplasia 4, Hair/nail type', 'Macular dystrophy with central cone involvement', 'Keratosis palmoplantaris striata I', 'Pachyonychia congenita 3', 'Palmoplantar keratoderma, Nagashima type', 'Intellectual developmental disorder 59', 'Cataract 21, multiple types', '46,XX sex reversal 2', 'Microcephaly, progressive, with seizures and cerebral and cerebellar atrophy', 'Neurodevelopmental disorder with microcephaly and movement abnormalities', 'Persistent hyperplastic primary vitreous, autosomal recessive', 'Neurodevelopmental disorder, nonprogressive, with spasticity and transient opisthotonus', 'Develomental and epileptic encephalopathy 94', 'Multiple myeloma', 'Leber congenital amaurosis, type II', 'Neurodevelopmental disorder with or without hyperkinetic movements and seizures, autosomal recessive', 'Chromosome 3q13.31 deletion syndrome', 'Cerebellar dysfunction with variable cognitive and behavioral abnormalities', 'Intellectual disability and myopathy syndrome', 'Spinocerebellar ataxia 50', 'Chromosome 17p13.1 deletion syndrome', 'White-Kernohan syndrome', 'Spinocerebellar ataxia 13', 'Blepharophimosis-impaired intellectual development syndrome', 'Acrofrontofacionasal dysostosis 1', 'Adenylosuccinase deficiency', 'Joubert syndrome 28', 'Brachydactyly, type C', 'Retinitis pigmentosa 3', 'Episodic ataxia, type 5', 'Machado-Joseph disease', 'Ichthyosis, congenital, autosomal recessive 6', 'Peroxisome biogenesis disorder 10B', 'Neurodegeneration with brain iron accumulation 2A', 'Myopathy, X-linked, with postural muscle atrophy', 'Mental retardation, autosomal dominant 49', 'Vulto-van Silfout-de Vries syndrome', 'Keratosis follicularis spinulosa decalvans, autosomal dominant', 'Parkinson disease 15, autosomal recessive early-onset', 'Cerebellar atrophy with seizures and variable developmental delay', 'Spastic ataxia 2, autosomal recessive', 'Hypogonadotropic hypogonadism 16 with or without anosmia', 'Spastic ataxia 4, autosomal recessive', 'Lissencephaly 10', 'Axenfeld-Rieger syndrome, type 1', 'Spastic paraplegia 3, autosomal dominant', 'Coffin-Lowry syndrome', 'Myasthenia, limb-girdle, autoimmune', 'Neurodevelopmental disorder with hearing loss and spasticity', 'Cowden syndrome 6', 'Acromelic frontonasal dysostosis', 'Dystonia 30', 'Amyotrophic lateral sclerosis 15 with or without frontotemporal dementia', 'Marbach-Schaaf neurodevelopmental syndrome', 'Richieri-Costa/guion-Almeida syndrome', 'Seckel syndrome 5', 'Congenital anomalies of kidney and urinary tract 2', 'Neurodevelopmental disorder with facial dysmorphism, absent language, and pseudo-Pelger-Huet anomaly', 'Leukoencephalopathy, progressive, with ovarian failure', 'Spinocerebellar ataxia, autosomal recessive 10', 'Developmental and epileptic encephalopathy 93', 'Frontotemporal dementia and/or amytrophic lateral sclerosis 7', 'Nystagmus 4, congenital, autosomal dominant', 'Zimmermann-Laband syndrome 2', 'Zechi-Ceide syndrome', 'Holoprosencephaly 5', 'Chromosome 1q41-q42 deletion syndrome', 'Lissencephaly 6, with microcephaly', 'Ichthyosis, congenital, autosomal recessive 1', 'Trichothiodystrophy 4, nonphotosensitive', 'Neurodevelopmental disorder with microcephaly, impaired language, epilepsy, and gait abnormalities, autosomal dominant', 'Cancer, alopecia, pigment dyscrasia, onychodystrophy, and keratoderma', 'Chilton-Okur-Chung neurodevelopmental syndrome', 'Mesomelia-Synostoses syndrome', 'Mental retardation and distinctive facial features with or without cardiac defects', 'Weaver syndrome', 'Leukodystrophy, hypomyelinating, 2', 'Holoprosencephaly 9', 'Popliteal pterygium syndrome', 'Hypotrichosis 12', 'Bryant-Li-Bhoj neurodevelopmental syndrome 1', 'Wagner vitreoretinopathy', 'Neurodevelopmental disorder with or without variable movement or behavioral abnormalities', 'Cone-Rod dystrophy 20', 'Epidermolysis bullosa simplex with mottled pigmentation', 'Foveal hypoplasia 2', 'Waardenburg syndrome, type 2F', 'Breasts and/or nipples, aplasia or hypoplasia of, 2', 'Cutaneous telangiectasia and cancer syndrome, familial', 'Mental retardation and microcephaly with pontine and cerebellar hypoplasia', 'Pitt-Hopkins like syndrome 1', 'Holoprosencephaly 3', 'Nablus mask-like facial syndrome', 'Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 1', 'Brachyphalangy, polydactyly, and tibial aplasia/hypoplasia', 'Spastic paraplegia 48, autosomal recessive', 'Neurodegeneration with ataxia, dystonia, and gaze palsy, childhood-onset', 'Epileptic encephalopathy, early infantile, 42', 'Neurodevelopmental disorder with behavioral abnormalities, absent speech, and hypotonia', 'Neurodevelopmental disorder with ataxia, hypotonia, and microcephaly', 'Epileptic encephalopathy, early infantile, 4', 'Spastic paraplegia 17', 'Spastic paraplegia 51, autosomal recessive', 'Hypogonadotropic hypogonadism 22 with or without anosmia', 'Kufor-Rakeb syndrome', 'Spastic paraplegia 6, autosomal dominant', 'Cognitive impairment with or without cerebellar ataxia', 'Parkinson disease 19a, juvenile-onset', 'Radio-Tartaglia syndrome', 'Testicular tumor, somatic', 'Developmental and epileptic encephalopathy 28', 'Lethal congenital contracture syndrome 9', 'Macroglobulinemia, Waldenstrom, somatic', 'Mental retardation, x-linked syndromic, Christianson type', 'Neurodevelopmental disorder with cataracts, poor growth, and dysmorphic facies', 'Corneal dystrophy, posterior polymorphous, 1', 'Chromosome 16q12 duplication syndrome', 'Spinocerebellar ataxia 29, congenital nonprogressive', 'Microphthalmia, syndromic 1', 'Neuropathy, hereditary sensory and autonomic, type IC', 'Interstitial lung disease 1', 'CHOROIDEREMIA', 'Warburg micro syndrome 2', 'Menke-Hennekam syndrome 1', 'Mental retardation, x-linked syndromic, Turner type', 'Jalili syndrome', 'Nemaline myopathy 7', 'Complement component 4B deficiency', 'Cousin syndrome', 'Fraser syndrome', 'Neurodevelopmental disorder with brain anomalies and with or without vertebral or cardiac anomalies', 'Hemifacial microsomia', 'Amyotrophic lateral sclerosis 27, juvenile', 'Arthrogryposis multiplex congenita, neurogenic, with myelin defect', 'Epilepsy, X-linked 2, with or without impaired intellectual development and dysmorphic features', 'Corpus callosum, agenesis of, with abnormal genitalia', 'Dystonia 28, childhood-onset', 'Spastic paraplegia 80, autosomal dominant', 'Mehmo syndrome', 'Spinocerebellar ataxia, autosomal recessive 13', 'Ectodermal dysplasia 7, Hair/nail type', 'Developmental and epileptic encephalopathy 48', 'Macrophthalmia, colobomatous, with microcornea', 'Corneal opacification with other ocular anomalies', 'Epidermolysis bullosa, junctional 5A, intermediate', 'Epilepsy, familial temporal lobe, 1', 'Hypotrichosis 8', '46,XY sex reversal 10', 'Intellectual developmental disorder with hypertelorism and distinctive facies', 'Chromosome 1p36 deletion syndrome', 'Mental retardation, X-linked 98', 'Ayme-Gripp syndrome', 'Mental retardation, X-linked, syndromic, Snyder-Robinson type', 'Periventricular nodular heterotopia 9', 'Floating-Harbor syndrome', 'Spastic paraplegia 35, autosomal recessive', 'Restrictive dermopathy 1', 'Epileptic encephalopathy, early infantile, 13', 'Ciliary dyskinesia, primary, 22', 'Pachyonychia congenita 2', 'Hiatt-Neu-Cooper neurodevelopmental syndrome', 'Basilicata-Akhtar syndrome', 'Optic disc anomalies with retinal and/or macular dystrophy', 'Nasopalpebral lipoma-coloboma syndrome', 'Spinocerebellar ataxia 5', 'Parenti-Mignot neurodevelopmental syndrome', 'Ciliary dyskinesia, primary, 5', 'Gallbladder disease 4', 'Tolchin-Le Caignec syndrome', 'Parkinson disease, juvenile, type 2', 'Mental retardation, x-linked syndromic, Lubs type', 'Spastic paraplegia 50, autosomal recessive', 'Optic atrophy 1', 'Robinow syndrome, autosomal recessive', 'Galloway-Mowat syndrome 2, X-linked', 'Scalp-ear-nipple syndrome', 'Spinocerebellar ataxia 1', 'Hengel-Maroofian-Schols syndrome', 'Hay-Wells syndrome', 'Pachygyria, microcephaly, developmental delay, and dysmorphic facies, with or without seizures', 'Spinocerebellar ataxia, autosomal recessive 17', 'Neurodevelopmental disorder with gait disturbance, dysmorphic facies and behavioral abnormalities, X-linked', 'Alazami-Yuan syndrome', 'Basal ganglia calcification, idiopathic, 5', 'Neuropathy, hereditary motor and sensory, type VIB', 'Genitourinary and/or/brain malformation syndrome', 'Hereditary motor and sensory neuropathy, type IIC', 'Tuberous sclerosis-2', 'Duane-Radial ray syndrome', 'Hypotrichosis 7', 'Anterior segment dysgenesis 5, multiple subtypes', 'Cone-Rod dystrophy 2', 'Albinism, oculocutaneous, type II', 'Ectodermal dysplasia/skin fragility syndrome', 'Waardenburg syndrome, type 2A', 'Trichothiodystrophy 8, nonphotosensitive', 'Developmental and epileptic encephalopathy 105 with hypopituitarism', 'Denys-Drash syndrome', 'Spastic paraplegia 52, autosomal recessive', 'Microcephaly with or without chorioretinopathy, lymphedema, or mental retardation', 'Achromatopsia 2', 'Craniofacial dyssynostosis with short stature', 'Ectodermal dysplasia 12, Hypohidrotic/hair/tooth/nail type', 'Epilepsy, idiopathic generalized, susceptibility to, 9', 'Thrombophilia, X-linked, due to factor IX defect', 'Ichthyosis, hystrix-like, with deafness', 'Mandibulofacial dysostosis with alopecia', 'Cri-Du-Chat syndrome', 'Intellectual developmental disorder, autosomal recessive 45', 'Developmental delay with variable neurologic and brain abnormalities', 'Adams-Oliver syndrome 2', 'Urbach-Wiethe disease', 'Moyamoya disease 4 with short stature, hypergonadotropic hypogonadism,and facial dysmorphism', 'Coffin-Siris syndrome 1', 'Leber congenital amaurosis 8', 'Megalencephaly-capillary malformation-polymicrogyria syndrome, somatic', 'Neurodevelopmental disorder with midbrain and hindbrain malformations', 'Orofaciodigital syndrome XI', 'Spastic paraplegia 4, autosomal dominant', 'Short stature, hearing loss, retinitis pigmentosa, and distinctive facies', 'Spondylomegaepiphyseal dysplasia with upper limb mesomelia, punctatecalcifications, and deafness', 'Cleft lip/palate-ectodermal dysplasia syndrome', 'Simosa craniofacial syndrome', 'Intellectual developmental disorder, autosomal recessive 75, with neuropsychiatric features and variant lissencephaly', 'Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract', 'Ichthyosis, congenital, autosomal recessive 11', 'Mental retardation, autosomal dominant 18', 'Pseudohypoparathyroidism, type II', 'Peeling skin with leukonychia, acral punctate keratoses, cheilitis, and knuckle pads', 'Neurofibromatosis, type II', 'Joubert syndrome 3', 'Spinocerebellar ataxia 42, early-onset, severe, with neurodevelopmental deficits', 'Neurodevelopmental disorder with poor growth and skeletal anomalies', 'Van den Ende-Gupta syndrome', 'Robinow syndrome, autosomal dominant 1', 'Marshall syndrome', 'Otopalatodigital syndrome, type II', 'Olmsted syndrome 1', 'Mental retardation, autosomal dominant 34', 'Brachycephaly, trichomegaly, and developmental delay', 'Waardenburg syndrome, type 1', 'Dentici-Novelli neurodevelopmental syndrome', 'Constricting bands, congenital', 'Spastic paraplegia 46, autosomal recessive', 'Complement component c1s deficiency', 'Global developmental delay, lung cysts, overgrowth, and wilms tumor', 'Chromosome 16p12.2-p11.2 deletion syndrome, 7.1- to 8.7-mb', 'Warburg micro syndrome 3', 'Joubert syndrome 5', 'Cerebrooculonasal syndrome', 'Treacher Collins syndrome 1', 'ENDOCRINE-CEREBROOSTEODYSPLASIA', 'Chromosome xq27.3-q28 duplication syndrome', 'Intellectual developmental disorder, X-linked, syndromic, Hackman-Di Donato type', 'Skin creases, congenital symmetric circumferential, 1', 'Neurodevelopmental disorder with coarse facies and mild distal skeletal abnormalities', 'Anterior segment dysgenesis 2', 'Holoprosencephaly 7', 'Retinitis pigmentosa 2, X-linked', 'Hypogonadotropic hypogonadism 23 without anosmia', 'Developmental and epileptic encephalopathy 89', 'Hypertension, essential', 'Spastic paraplegia 75, autosomal recessive', 'Teebi hypertelorism syndrome 2', 'Spastic paraplegia 26, autosomal recessive', 'Membranoproliferative glomerulonephritis, X-linked', 'Clouston syndrome', 'KBG syndrome', 'Arthrogryposis, distal, type 5', 'Albinism, oculocutaneous, type IA', 'Frontofacionasal dysplasia', 'Spastic paraplegia 79, autosomal recessive', 'Adult syndrome', 'Elsahy-Waters syndrome', 'Neurodevelopmental disorder with cerebral atrophy and variable facial dysmorphism', 'Auriculocondylar syndrome 1', 'Spinal and bulbar muscular atrophy, X-linked 1', 'Myasthenia gravis', 'Intellectual developmental disorder, autosomal dominant 38', 'Ohdo syndrome, X-linked', 'Facial dysmorphism, lens dislocation, anterior segment abnormalities, and spontaneous filtering blebs', 'Epileptic encephalopathy, early infantile, 49', \"Van Esch-O'Driscoll syndrome\", 'Leber congenital amaurosis 15', 'Liang-Wang syndrome', 'Mental retardation, X-linked, syndromic 34', 'CK syndrome', 'Popliteal pterygium syndrome, Bartsocas-Papas type 1', 'Ablepharon-Macrostomia syndrome', 'Spinocerebellar ataxia 21', 'Oculodentodigital dysplasia', 'Charcot-Marie-Tooth disease, axonal, type 2Z', 'Intellectual developmental disorder, autosomal recessive 61', 'Multiple synostoses syndrome 1', 'Bosma arhinia microphthalmia syndrome', 'Optic atrophy with or without deafness, ophthalmoplegia, myopathy, ataxia, and neuropathy', 'Ichthyotic keratoderma, spasticity, hypomyelination, and dysmorphic facial features', 'Doors syndrome', 'Ectodermal dysplasia 11B, hypohidrotic/hair/tooth type, autosomal recessive', 'Mental retardation, autosomal dominant 29', 'Chromosome 6q11-q14 deletion syndrome', 'Leber congenital amaurosis 9', 'Ectodermal dysplasia and immunodeficiency 1', 'Cerebellar, ocular, craniofacial, and genital syndrome', 'Microphthalmia, isolated, with coloboma 9', 'Neurodevelopmental disorder with dysmorphic facies, sleep disturbance, and brain abnormalities', 'Chromosome 16p13.3 duplication syndrome', 'Knobloch syndrome, type 1', 'Chloramphenicol toxicity', 'Charcot-Marie-Tooth neuropathy, X-linked dominant, 1', 'Orofacial cleft 15', 'Joubert syndrome 10', 'Keratitis-Ichthyosis-Deafness syndrome, autosomal dominant', 'Pallister-Killian syndrome', 'Immunodeficiency 50', 'Intellectual developmental disorder, X-linked, syndrome, snijders Blok type', 'Epileptic encephalopathy, early infantile, 64', 'Blepharophimosis, epicanthus inversus, and ptosis', 'Chondrodysplasia with platyspondyly, distinctive brachydactyly, hydrocephaly, and microphthalmia', 'Schopf-Schulz-Passarge syndrome', 'Retinitis pigmentosa 73', 'Mental retardation, X-linked 99', 'Hypotonia, ataxia, and delayed development syndrome', 'Opitz-Kaveggia syndrome', 'Neurodevelopmental disorder with impaired language and ataxia and with or without seizures', 'Myelolymphatic insufficiency', 'VACTERL association, X-linked', 'Chromosome 2p16.1-p15 deletion syndrome', 'Nephrogenic syndrome of inappropriate antidiuresis', 'Congenital disorder of glycosylation, type IIm', 'Chromosome 17q12 deletion syndrome', 'Scapuloperoneal myopathy, X-linked dominant', 'Holoprosencephaly 13, X-linked', 'Intellectual developmental disorder, autosomal dominant 65', 'Wieacker-Wolff syndrome, female-restricted', 'Myopathy, X-linked, with excessive autophagy', 'Brachial amelia, cleft lip, and holoprosencephaly', 'Developmental and epileptic encephalopathy 90', 'Chromosome 5p13 duplication syndrome', 'Cornelia de Lange syndrome 2', 'Exudative vitreoretinopathy 6', 'Skin creases, congenital symmetric circumferential, 2', 'Myopathy, reducing body, X-linked, early-onset, severe', 'Choreoathetosis, hypothyroidism, and neonatal respiratory distress', 'Frontonasal dysplasia 2', 'Wieacker-Wolff syndrome', 'Trichothiodystrophy 5, nonphotosensitive', 'Mycosis fungoides', 'Orofaciodigital syndrome XIX', 'Branchiootorenal syndrome 1', 'Cardioneuromyopathy with hyaline masses and nemaline rods', 'Chromosome 6pter-p24 deletion syndrome', 'Robin sequence, distinctive facial appearance, and brachydactyly', 'Fragile site 16q22', 'Leukodystrophy, hypomyelinating, 24', 'Mental retardation, X-linked 99, syndromic, female-restricted', 'Myeloproliferative syndrome, transient', 'Brunner syndrome', 'Developmental and epileptic encephalopathy 2', 'Ritscher-Schinzel syndrome 2', 'Autism, susceptibility to, 3', 'Corpus callosum, agenesis of, with mental retardation, ocular coloboma,and micrognathia', 'Linear skin defects with multiple congenital anomalies 1', 'Panbronchiolitis, diffuse', 'Larsen-Like syndrome', 'Silver-Russell syndrome 2', 'Odontoonychodermal dysplasia', 'Burkitt lymphoma', 'Lacrimoauriculodentodigital syndrome-1', 'Curry-Jones syndrome', 'Spondyloepiphyseal dysplasia tarda, X-linked', 'Developmental delay with variable intellectual disability and dysmorphic facies', 'Terminal osseous dysplasia', 'Tonne-Kalscheuer syndrome', 'Chromosome 16p11.2 deletion syndrome, 593-kb', 'Thrombophilia 13, X-linked, due to factor VIII defect', 'Ectrodactyly, ectodermal dysplasia, and cleft lip/palate syndrome1', 'Neuroocular syndrome', 'Ectrodactyly, ectodermal dysplasia, and cleft lip/palate syndrome 3', 'Aicardi syndrome', 'Oculoauricular syndrome', 'Ectodermal dysplasia 1, hypohidrotic, X-linked', 'Rapp-Hodgkin syndrome', 'Varicose veins', 'Sturge-Weber syndrome', 'Mental retardation, X-linked 94', 'Simpson-Golabi-Behmel syndrome, type 2', 'Ischemic stroke, susceptibility to', 'Tetrasomy 15q26', 'Mental retardation, X-linked, syndromic 32', 'Chromosome 4q21 deletion syndrome', 'Developmental and epileptic encephalopathy 1', 'Ventricular fibrillation, familial, 1', 'Lipodystrophy, partial, acquired, with low complement component C3, with or without glomerulonephritis', 'Myopathy, centronuclear, X-linked', 'Dandy-Walker syndrome', 'Okt4 epitope deficiency', 'Mullerian duct aplasia, unilateral renal agenesis, and cervicothoracicsomite anomalies', 'Diabetes mellitus, insulin-dependent, 15', 'OEIS complex', 'Arts syndrome', 'Barber-Say syndrome', 'Spondyloepimetaphyseal dysplasia, X-linked, with mental deterioration', 'Allan-Herndon-Dudley syndrome', 'Properdin deficiency, X-linked', 'Gomez-Lopez-Hernandez syndrome', 'Combined immunodeficiency, X-linked', 'Adrenoleukodystrophy', 'Otopalatodigital syndrome, type I', 'Developmental and epileptic encephalopathy 85, with or without midline brain defects', 'Borjeson-Forssman-Lehmann syndrome', 'Osteosclerosis - ichthyosis - premature ovarian failure', 'Preaxial hallucal polydactyly', 'Chromosome 22q11.2 deletion syndrome, distal', 'Granulomas, congenital cerebral', 'Hypogonadotropic hypogonadism 1 with or without anosmia', 'Proteinuria, low molecular weight, with hypercalciuric nephrocalcinosis', 'Incontinentia pigmenti', 'Ring chromosome 14 syndrome', 'Opitz GBBB syndrome', 'Psoriasis 1, susceptibility to', 'Asperger syndrome, susceptibility to, 2', 'Asperger syndrome, susceptibility to, 1', 'IFAP syndrome with or without BRESHECK syndrome', 'Encephalocraniocutaneous lipomatosis', 'Renpenning syndrome', 'Frontometaphyseal dysplasia', 'Craniofrontonasal syndrome', 'Diabetes mellitus, insulin-dependent, 6', 'Diabetes mellitus, insulin-dependent, 10', 'Autism susceptibility 1', 'Autism, susceptibility to, 8', 'Mental retardation, X-linked, syndromic, Chudley-Schwartz type', 'Barrett esophagus', 'Mental retardation, X-linked, syndromic, Cabezas type', 'McCune-Albright syndrome, somatic, mosaic', 'Aneurysm, intracranial berry, 2', 'Osteoarthritis susceptibility 1', 'Lujan-Fryns syndrome', 'Fragile X mental retardation syndrome', 'Focal cortical dysplasia of taylor', 'Mental retardation, X-linked, syndromic 17', 'Pettigrew syndrome', 'Oculocerebrocutaneous syndrome', 'Lymphoma, non-hodgkin, familial', 'MASA syndrome', 'Focal segmental glomerulosclerosis 3, susceptibility to', 'Chromosome Xq26.3 duplication syndrome', 'Myelodysplastic syndrome', 'Pelvic dysplasia - arthrogryposis of lower limbs', 'Neurocutaneous melanosis, somatic', 'Developmental dysplasia of the hip 1', 'Gout, hprt-related', 'Bartter syndrome, type 5, antenatal, transient', 'Branched-Chain ketoacid dehydrogenase kinase deficiency', 'Pulmonary alveolar proteinosis, acquired', 'Intellectual developmental disorder, X-linked 110', 'Linear skin defects with multiple congenital anomalies 2', 'CHOLANGIOCARCINOMA', 'Mental retardation, X-linked, syndromic 13', 'Mental retardation with optic atrophy, facial dysmorphism, microcephaly,and short stature', 'Wilson-Turner syndrome', 'Spinocerebellar ataxia, X-linked 1', 'Charcot-Marie-Tooth peroneal muscular atrophy, X-linked, with aplasia', 'Chondrodysplasia punctata 1, X-linked recessive', 'Acquired angioedema', 'Focal dermal hypoplasia', 'Mental retardation, X-linked, syndromic, Nascimento type', 'Mohr-Tranebjaerg syndrome', 'Angel-Shaped phalangoepiphyseal dysplasia', 'Amyotrophy, monomelic', 'Diabetes mellitus, insulin-dependent, 20', 'Mandibulofacial dysostosis with macroblepharon and macrostomia', 'Spinal muscular atrophy, distal, X-linked 3', 'Multiple sclerosis, susceptibility to', 'Hypouricemia, familial renal, due to tubular hypersecretion', 'Centralopathic epilepsy', 'Specific language impairment 1', 'Specific language impairment 2', 'Chromosome 16p12.1 deletion syndrome, 520kb', 'Pancreatic cancer, susceptibility to, 2', 'Diaphragmatic hernia, congenital', 'Perifolliculitis capitis abscedens et suffodiens, familial', 'Bulimia nervosa, susceptibility to, 1', 'Microphthalmia with cyst, bilateral facial clefts, and limb anomalies', 'Alcohol dependence', 'Carney-Stratakis syndrome', 'Leukemia, chronic lymphocytic', 'Hemifacial atrophy, progressive', 'Cubitus valgus with mental retardation and unusual facies', 'Leukemia, acute monocytic', 'B-CELL CLL/LYMPHOMA 2', 'Alopecia areata 1', 'Hypomelanosis of Ito', 'Myopia 7', 'Alar cleft, isolated', 'Renal cell carcinoma, nonpapillary', 'Corpus callosum, partial agenesis of, X-linked', 'Brachydactyly-Syndactyly syndrome', 'Hypothyroidism, central, and testicular enlargement', 'Hydrocephalus due to congenital stenosis of aqueduct of sylvius', 'Wildervanck syndrome', 'Leukemia, acute lymphocytic, susceptibility to, 1', 'Chromosome 22q13 duplication syndrome', 'Mental retardation, X-linked 72', 'Autism, susceptibility to, X-linked 6', 'Scarf syndrome', 'Palatopharyngeal incompetence', 'Carabelli anomaly of maxillary molar teeth', 'Orofacial cleft 10', 'Immunodeficiency 33', 'Corneal dystrophy, fuchs endothelial, 6', 'Androgen insensitivity syndrome', 'Intellectual developmental disorder, X-linked 108', 'Brugada syndrome 8', 'Waisman syndrome', 'Fragile X tremor/ataxia syndrome', 'Helicobacter pylori infection, susceptibility to', 'Developmental and epileptic encephalopathy 8', 'Neurodegeneration with brain iron accumulation 5', 'Gastric cancer, somatic', 'Potocki-Shaffer syndrome', 'Raynaud-Claes syndrome', 'Systemic lupus erythematosus, susceptibility to, 6', 'Scholte syndrome', 'Mental retardation, X-linked, associated with fragile site fraxe', 'Xq21 deletion syndrome', 'Mental retardation, X-linked, syndromic 11', 'Mental retardation, X-linked, syndromic, Hedera type', 'Intellectual developmental disorder, X-linked 30', 'Orofaciodigital syndrome VIII', 'Mental retardation, X-linked, with cerebellar hypoplasia and distinctive facial appearance', 'Multiple enchondromatosis, Maffucci type', 'Intellectual developmental disorder, X-linked 82', 'Mental retardation, X-linked 104', 'Polymicrogyria, bilateral perisylvian', 'Arteriovenous malformation of the brain, somatic', 'Shukla-Vernon syndrome', 'Charcot-Marie-Tooth disease, X-linked recessive, 3', 'Appendicitis, proneness to', 'Mental retardation, X-linked 1', 'Adrenal insufficiency, congenital, with 46XY sex reversal, partial or complete', 'Chromosome xp11.3 deletion syndrome', 'Keipert syndrome', 'Becker nevus syndrome', 'Cataract, ataxia, short stature, and mental retardation', 'Myopathy, distal, 7, adult-onset, X-linked', 'Hhhh syndrome', 'Spastic paraplegia 2, X-linked', 'Inflammatory bowel disease 13', 'Inflammatory bowel disease 19', 'Torticollis, keloids, cryptorchidism, and renal dysplasia', 'Partington syndrome', 'Dysplasia epiphysealis hemimelica', 'Hirschsprung disease with type D brachydactyly', 'Mental retardation, X-linked 106', 'Epilepsy, X-linked, with variable learning disabilities and behavior disorders', 'Gastric lymphoma, primary', 'Lipoprotein glomerulopathy', 'Tracheoesophageal fistula with or without esophageal atresia', 'Deafness, X-linked 5', 'Follicular lymphoma, susceptibility to, 1', 'Paroxysmal nocturnal hemoglobinuria', 'Nephrolithiasis, type I', 'Retinoschisis 1, X-linked, juvenile', 'Chromosome xp11.23-p11.22 duplication syndrome', 'Celiac disease, epilepsy and cerebral calcification syndrome', 'Mental retardation, X-linked 103', 'Teratocarcinoma-Derived growth factor 1', 'Spastic paraplegia 16, X-linked', 'Woods syndrome', 'Siderius X-linked mental retardation syndrome', 'Mental retardation, X-linked 63', 'Mental retardation, X-linked 84', 'Atrial fibrillation, familial, 5', 'LYMPHANGIOLEIOMYOMATOSIS', 'Breast, unilateral giant', 'Ectodermal dysplasia with facial dysmorphism and acral, ocular, and brain anomalies, somatic mosaic', 'Mental retardation, X-linked 93', 'Thumbs, congenital clasped', 'Mental retardation, X-linked 101', 'Keratosis follicularis spinulosa decalvans, X-linked', 'Hydrocephalus, endocardial fibroelastosis, and cataracts', 'Cerebral palsy, spastic quadriplegic, 2', 'Chromosome 10q22.3-q23.2 deletion syndrome', 'Nephrogenic diabetes insipidus - intracranial calcification', 'Cowden syndrome 4', '46XX sex reversal 1', 'Familial scaphocephaly syndrome, Mcgillivray type', 'Mental retardation, X-linked 45', 'Charcot-Marie-Tooth disease, X-linked recessive, 2', 'Facioscapulohumeral muscular dystrophy 3, digenic', 'Mental retardation, X-linked 21', 'Insulinoma tumor suppressor gene locus', 'Sick sinus syndrome 3', 'Maxillonasal dysplasia, Binder type', 'Mental retardation, X-linked 9', 'Hypertrichosis, congenital generalized', 'SCHIZENCEPHALY', 'Autism, susceptibility to, X-linked 4', 'Ciliary dyskinesia, primary, 36, X-linked', 'Cystic fibrosis, modifier of, 1', 'Retinitis pigmentosa, X-linked, and sinorespiratory infections, withor without deafness', 'Hypothyroidism, congenital, nongoitrous, 9', 'Exudative vitreoretinopathy 2, X-linked', 'Reifenstein syndrome', 'Macrodactyly, somatic', 'Metacarpal 4-5 fusion', 'Nance-Horan syndrome', 'Parkinsonism with spasticity, X-linked', 'Mental retardation, X-linked, with or without seizures, arx-related', 'Retinitis pigmentosa 23', 'Atypical mycobacteriosis, familial, X-linked 2', 'Spinocerebellar ataxia, X-linked 5', 'Bazex syndrome', 'Charcot-Marie-Tooth disease, X-linked dominant, 6', 'Spastic paraplegia 34, X-linked', 'Facioscapulohumeral muscular dystrophy 2', 'Immunodeficiency 74, COVID19-related, X-linked', 'Esophageal cancer, somatic', 'Colorectal cancer, susceptibility to, 3', 'Dystonia 3, torsion, X-linked', 'Mental retardation, X-linked 89', 'Mental retardation, X-linked 100', 'Cerebellar degeneration-related autoantigen 3', 'Coats disease', 'Brachydactylous dwarfism, Mseleni type', 'Mental retardation, X-linked 105', 'Myelopathy, htlv-1-associated', 'Chondrosarcoma', 'Chondrosarcoma, extraskeletal myxoid', 'Mental retardation, X-linked 96', 'Intellectual developmental disorder, X-linked 77', 'Norrie disease', 'Osteosarcoma', 'Precocious puberty, central, 2', 'Amelogenesis imperfecta, type IE', 'Prostate cancer/brain cancer susceptibility', 'Arthrogryposis - hyperkeratosis, lethal form', 'Spatial visualization, aptitude for', 'Coxsackievirus B3 susceptibility', 'Palmoplantar keratoderma, mutilating, with periorificial keratotic plaques, X-linked', 'Premature ovarian failure 2A', 'Tooth agenesis, selective, X-linked, 1', 'Mental retardation, X-linked 81', 'Mental retardation, X-linked 53', 'Mental retardation, X-linked 23', 'Mental retardation, X-linked 46', 'Bornholm eye disease', 'Mental retardation, X-linked 58', 'Deafness, X-linked 7', 'Paget disease, extramammary', 'Autoimmune thyroid disease, susceptibility to, 3', 'Nystagmus, myoclonic', 'Major affective disorder 2', 'Complement component 9 deficiency', 'Melanocytic nevus syndrome, congenital', 'Cognitive function 1, social', 'Motion sickness', 'Premature ovarian failure 6', '46XY sex reversal 3', 'Premature ovarian failure 7', 'Faciomandibular myoclonus, nocturnal', 'Ichthyosis, X-linked', 'X-LINKED intellectual disability, Abidi type', 'Intellectual disability, Wolff type', 'X-LINKED intellectual disability, Shrimpton type', 'Syndromic X-linked intellectual disability 7', 'Facioscapulohumeral muscular dystrophy 4, digenic', 'Radius, aplasia of, with cleft lip/palate', 'Blue cone monochromacy', 'Cone-Rod dystrophy, X-linked, 3', 'Glaucoma - sleep apnea', 'Major depressive disorder', 'Diaphragmatic hernia 3', 'Hernia, anterior diaphragmatic', 'Corneal dystrophy, lisch epithelial', 'Deafness, X-linked 1', '46,xx sex reversal 3', 'Deafness, X-linked 3', 'Goiter, multinodular 2', 'Colorblindness, partial, protan series', 'Ptosis, hereditary congenital 2', 'Macular degeneration, X-linked atrophic', 'Colorblindness, deutan', 'Hypospadias 2, X-linked', 'Hypospadias 1, X-linked', 'Corneal dystrophy, endothelial, X-linked', 'Deafness, X-linked 4', 'Nystagmus 6, congenital, X-linked', 'Deafness, X-linked 6', 'Night blindness, congenital stationary, type 1A', 'Nystagmus 5, congenital, X-linked', 'Azoospermia, obstructive, with nephrolithiasis', 'Deafness, cataract, retinitis pigmentosa, and sperm abnormalities', 'Spermatogenic failure, X-linked 2', 'Myxoid liposarcoma', 'Angioma serpiginosum, X-linked', 'Deafness, X-linked 2', 'Rhabdomyosarcoma 2, alveolar', 'Spermatogenic failure, X-linked, 3', 'MEGALOCORNEA', 'Rhabdomyosarcoma, embryonal, 2', 'Cervical cancer', 'Mesothelioma, malignant', 'Alopecia, androgenetic, 1', 'Ewing sarcoma', 'Histiocytoma, angiomatoid fibrous, somatic', 'Alveolar soft part sarcoma', 'Sarcoma, synovial', 'Nevus comedonicus, somatic', 'Pilomatrixoma, somatic', 'Keratosis, seborrheic, somatic', 'Epidermal nevus, somatic', 'Renal cell carcinoma, xp11-associated', 'Precocious puberty, male', 'Leiomyoma, uterine', 'Vitiligo-Associated multiple autoimmune disease susceptibility 1', 'Preterm premature rupture of the membranes', 'Orofacial cleft 11', 'Macular degeneration, age-related, 11', 'Macular degeneration, age-related, 7', 'Nasopharyngeal carcinoma', 'Focal segmental glomerulosclerosis 4, susceptibility to', 'Preeclampsia/eclampsia 4', 'HAIRY EARS, Y-LINKED', 'Nasopharyngeal carcinoma', 'Hairy nose tip', 'Myopia 9', 'Myopia 8', 'Myopia 10', 'Strabismus, susceptibility to', 'Glaucoma 1, open angle, O', 'Glaucoma 1, open angle, G', 'Emphysema, hereditary pulmonary', 'Pulmonary disease, chronic obstructive', 'Hypertrichosis, anterior cervical', 'RETINITIS PIGMENTOSA, Y-LINKED', 'Basal cell carcinoma, susceptibility to, 1', 'Danubian endemic familial nephropathy', 'Caudal duplication anomaly', 'Testicular microlithiasis', 'Macular degeneration, age-related, 6', 'Familial breast-ovarian cancer-1', 'Natal teeth - intestinal pseudoobstruction - patent ductus', 'Spermatogenic failure 68', 'Microcephaly - albinism - digital anomalies']\n", "\n", "Object names with similarities > threshold or top 10 highest values:\n", "['Lysosomal acid lipase deficiency', 'Interstitial lung and liver disease', 'Hydrops, lactic acidosis, and sideroblastic anemia', 'Bile acid synthesis defect, congenital, 3', 'Triokinase and FMN cyclase deficiency syndrome', 'Mitochondrial DNA depletion syndrome 16 (hepatic type)', 'Galactosemia', 'Immunodeficiency 69, mycobacteriosis', 'Cholestasis, progressive familial intrahepatic, 10', 'Bile acid conjugation defect 1', 'Bile acid synthesis defect, congenital, 1', 'Anemia, congenital dyserythropoietic, type Ia', 'Sea-Blue histiocyte disease', 'Cholestasis, progressive familial intrahepatic, 5', 'Anemia, sideroblastic, 3, pyridoxine-refractory', 'Bile acid synthesis defect, congenital, 2', 'Combined oxidative phosphorylation deficiency 9', 'Bile acid synthesis defect, congenital, 4', 'Combined oxidative phosphorylation deficiency 30', 'Infantile liver failure syndrome 1', 'Tyrosinemia, type I', 'Liver failure, infantile, transient', 'Anemia, dyserythropoietic congenital, type IV', 'Pearson marrow-pancreas syndrome', 'Niemann-Pick disease, type A', 'Citrullinemia, type II, neonatal-onset', 'Mitochondrial DNA depletion syndrome 3 (hepatocerebral type)', 'Mitochondrial complex IV deficiency, nuclear type 4']\n", @@ -555,7 +524,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, "outputs": [ { @@ -600,7 +569,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, "outputs": [ { @@ -650,7 +619,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -660,7 +629,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, "outputs": [], "source": [ @@ -669,32 +638,162 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Save the HPO sets as tsv file.\n" + "Save the HPO sets as tsv file.\n", + "Saving differential diagnosis sets similarity result into tsv file.\n", + "There are total of 21 recommended genes and 28 recommended diagnoses.\n", + "Saving gene and disease recommendation similarity result into tsv file.\n" ] }, { - "ename": "OSError", - "evalue": "Cannot save file into a non-existent directory: 'output\\output'", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mOSError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[1;32mIn[17], line 2\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mSave the HPO sets as tsv file.\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m----> 2\u001b[0m \u001b[43mlist2tsv\u001b[49m\u001b[43m(\u001b[49m\u001b[43mhpo_sets\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mhpo_name\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfilename\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43moutput/transformed_hpo_set\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[0;32m 4\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mSaving differential diagnosis sets similarity result into tsv file.\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m 5\u001b[0m list2tsv(sr_dis_id, sr_dis_name, s_sim, filename\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moutput/differential_diagnosis_similarity\u001b[39m\u001b[38;5;124m'\u001b[39m)\n", - "File \u001b[1;32md:\\Bioinformatics\\iderare-pheno\\iderare_pheno\\utils.py:22\u001b[0m, in \u001b[0;36mlist2tsv\u001b[1;34m(term_id, name, sim_score, filename)\u001b[0m\n\u001b[0;32m 20\u001b[0m data \u001b[38;5;241m=\u001b[39m {\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrank\u001b[39m\u001b[38;5;124m\"\u001b[39m: rank, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mid\u001b[39m\u001b[38;5;124m\"\u001b[39m: term_id, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mname\u001b[39m\u001b[38;5;124m\"\u001b[39m: name, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mscore\u001b[39m\u001b[38;5;124m\"\u001b[39m: sim_score}\n\u001b[0;32m 21\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mDataFrame(data)\n\u001b[1;32m---> 22\u001b[0m \u001b[43mdf\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto_csv\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43moutput/\u001b[39;49m\u001b[38;5;132;43;01m{}\u001b[39;49;00m\u001b[38;5;124;43m.tsv\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mformat\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfilename\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindex\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msep\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;130;43;01m\\t\u001b[39;49;00m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[0;32m 23\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m df\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\core\\generic.py:3772\u001b[0m, in \u001b[0;36mNDFrame.to_csv\u001b[1;34m(self, path_or_buf, sep, na_rep, float_format, columns, header, index, index_label, mode, encoding, compression, quoting, quotechar, lineterminator, chunksize, date_format, doublequote, escapechar, decimal, errors, storage_options)\u001b[0m\n\u001b[0;32m 3761\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(\u001b[38;5;28mself\u001b[39m, ABCDataFrame) \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mto_frame()\n\u001b[0;32m 3763\u001b[0m formatter \u001b[38;5;241m=\u001b[39m DataFrameFormatter(\n\u001b[0;32m 3764\u001b[0m frame\u001b[38;5;241m=\u001b[39mdf,\n\u001b[0;32m 3765\u001b[0m header\u001b[38;5;241m=\u001b[39mheader,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 3769\u001b[0m decimal\u001b[38;5;241m=\u001b[39mdecimal,\n\u001b[0;32m 3770\u001b[0m )\n\u001b[1;32m-> 3772\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mDataFrameRenderer\u001b[49m\u001b[43m(\u001b[49m\u001b[43mformatter\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto_csv\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 3773\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath_or_buf\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3774\u001b[0m \u001b[43m \u001b[49m\u001b[43mlineterminator\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlineterminator\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3775\u001b[0m \u001b[43m \u001b[49m\u001b[43msep\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msep\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3776\u001b[0m \u001b[43m \u001b[49m\u001b[43mencoding\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mencoding\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3777\u001b[0m \u001b[43m \u001b[49m\u001b[43merrors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43merrors\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3778\u001b[0m \u001b[43m \u001b[49m\u001b[43mcompression\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcompression\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3779\u001b[0m \u001b[43m \u001b[49m\u001b[43mquoting\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mquoting\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3780\u001b[0m \u001b[43m \u001b[49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcolumns\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3781\u001b[0m \u001b[43m \u001b[49m\u001b[43mindex_label\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mindex_label\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3782\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3783\u001b[0m \u001b[43m \u001b[49m\u001b[43mchunksize\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mchunksize\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3784\u001b[0m \u001b[43m \u001b[49m\u001b[43mquotechar\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mquotechar\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3785\u001b[0m \u001b[43m \u001b[49m\u001b[43mdate_format\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdate_format\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3786\u001b[0m \u001b[43m \u001b[49m\u001b[43mdoublequote\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdoublequote\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3787\u001b[0m \u001b[43m \u001b[49m\u001b[43mescapechar\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mescapechar\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3788\u001b[0m \u001b[43m \u001b[49m\u001b[43mstorage_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mstorage_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3789\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\io\\formats\\format.py:1186\u001b[0m, in \u001b[0;36mDataFrameRenderer.to_csv\u001b[1;34m(self, path_or_buf, encoding, sep, columns, index_label, mode, compression, quoting, quotechar, lineterminator, chunksize, date_format, doublequote, escapechar, errors, storage_options)\u001b[0m\n\u001b[0;32m 1165\u001b[0m created_buffer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mFalse\u001b[39;00m\n\u001b[0;32m 1167\u001b[0m csv_formatter \u001b[38;5;241m=\u001b[39m CSVFormatter(\n\u001b[0;32m 1168\u001b[0m path_or_buf\u001b[38;5;241m=\u001b[39mpath_or_buf,\n\u001b[0;32m 1169\u001b[0m lineterminator\u001b[38;5;241m=\u001b[39mlineterminator,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 1184\u001b[0m formatter\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfmt,\n\u001b[0;32m 1185\u001b[0m )\n\u001b[1;32m-> 1186\u001b[0m \u001b[43mcsv_formatter\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msave\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 1188\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m created_buffer:\n\u001b[0;32m 1189\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(path_or_buf, StringIO)\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\io\\formats\\csvs.py:240\u001b[0m, in \u001b[0;36mCSVFormatter.save\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 236\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[0;32m 237\u001b[0m \u001b[38;5;124;03mCreate the writer & save.\u001b[39;00m\n\u001b[0;32m 238\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[0;32m 239\u001b[0m \u001b[38;5;66;03m# apply compression and byte/text conversion\u001b[39;00m\n\u001b[1;32m--> 240\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[43mget_handle\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 241\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfilepath_or_buffer\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 242\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 243\u001b[0m \u001b[43m \u001b[49m\u001b[43mencoding\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mencoding\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 244\u001b[0m \u001b[43m \u001b[49m\u001b[43merrors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43merrors\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 245\u001b[0m \u001b[43m \u001b[49m\u001b[43mcompression\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcompression\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 246\u001b[0m \u001b[43m \u001b[49m\u001b[43mstorage_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mstorage_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 247\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mas\u001b[39;00m handles:\n\u001b[0;32m 248\u001b[0m \u001b[38;5;66;03m# Note: self.encoding is irrelevant here\u001b[39;00m\n\u001b[0;32m 249\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mwriter \u001b[38;5;241m=\u001b[39m csvlib\u001b[38;5;241m.\u001b[39mwriter(\n\u001b[0;32m 250\u001b[0m handles\u001b[38;5;241m.\u001b[39mhandle,\n\u001b[0;32m 251\u001b[0m lineterminator\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlineterminator,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 256\u001b[0m quotechar\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mquotechar,\n\u001b[0;32m 257\u001b[0m )\n\u001b[0;32m 259\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_save()\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\io\\common.py:737\u001b[0m, in \u001b[0;36mget_handle\u001b[1;34m(path_or_buf, mode, encoding, compression, memory_map, is_text, errors, storage_options)\u001b[0m\n\u001b[0;32m 735\u001b[0m \u001b[38;5;66;03m# Only for write methods\u001b[39;00m\n\u001b[0;32m 736\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mr\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;129;01min\u001b[39;00m mode \u001b[38;5;129;01mand\u001b[39;00m is_path:\n\u001b[1;32m--> 737\u001b[0m \u001b[43mcheck_parent_directory\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mstr\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mhandle\u001b[49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 739\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m compression:\n\u001b[0;32m 740\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m compression \u001b[38;5;241m!=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mzstd\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[0;32m 741\u001b[0m \u001b[38;5;66;03m# compression libraries do not like an explicit text-mode\u001b[39;00m\n", - "File \u001b[1;32mc:\\Users\\Ivan-RTX2080\\.conda\\envs\\iderare-pheno\\lib\\site-packages\\pandas\\io\\common.py:600\u001b[0m, in \u001b[0;36mcheck_parent_directory\u001b[1;34m(path)\u001b[0m\n\u001b[0;32m 598\u001b[0m parent \u001b[38;5;241m=\u001b[39m Path(path)\u001b[38;5;241m.\u001b[39mparent\n\u001b[0;32m 599\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m parent\u001b[38;5;241m.\u001b[39mis_dir():\n\u001b[1;32m--> 600\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m(\u001b[38;5;124mrf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mCannot save file into a non-existent directory: \u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mparent\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", - "\u001b[1;31mOSError\u001b[0m: Cannot save file into a non-existent directory: 'output\\output'" - ] + "data": { + "text/html": [ + "
\n", + " | rank | \n", + "id | \n", + "name | \n", + "score | \n", + "
---|---|---|---|---|
0 | \n", + "1 | \n", + "278000 | \n", + "Lysosomal acid lipase deficiency | \n", + "0.559923 | \n", + "
1 | \n", + "2 | \n", + "615486 | \n", + "Interstitial lung and liver disease | \n", + "0.489047 | \n", + "
2 | \n", + "3 | \n", + "617021 | \n", + "Hydrops, lactic acidosis, and sideroblastic an... | \n", + "0.486714 | \n", + "
3 | \n", + "4 | \n", + "613812 | \n", + "Bile acid synthesis defect, congenital, 3 | \n", + "0.470447 | \n", + "
4 | \n", + "5 | \n", + "618805 | \n", + "Triokinase and FMN cyclase deficiency syndrome | \n", + "0.466811 | \n", + "
... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
8199 | \n", + "8200 | \n", + "613757 | \n", + "Macular degeneration, age-related, 6 | \n", + "0.000030 | \n", + "
8200 | \n", + "8201 | \n", + "613399 | \n", + "Familial breast-ovarian cancer-1 | \n", + "0.000028 | \n", + "
8201 | \n", + "8202 | \n", + "243185 | \n", + "Natal teeth - intestinal pseudoobstruction - p... | \n", + "0.000028 | \n", + "
8202 | \n", + "8203 | \n", + "619805 | \n", + "Spermatogenic failure 68 | \n", + "0.000027 | \n", + "
8203 | \n", + "8204 | \n", + "203340 | \n", + "Microcephaly - albinism - digital anomalies | \n", + "0.000019 | \n", + "
8204 rows × 4 columns
\n", + "